ETH Price: $2,292.08 (-2.79%)
Gas: 2.8 Gwei

Token

WAGMI Estates (WAG)
 

Overview

Max Total Supply

118 WAG

Holders

57

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cryptoninja.eth
0x1dE2418F4aC0124BD1cFb7d84043BD8279a5fe90
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:
WagmiBlueprint

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 14 of 14: WagmiBlueprint.sol
// SPDX-License-Identifier: MIT
/*
Visit https://www.wagmiestates.com/ for project details.
Contract Developed by https://hcode.tech/
*/

pragma solidity ^0.8.2;
import "./ERC1155.sol";
import "./Ownable.sol";
import "./ERC1155Burnable.sol";
import "./SafeMath.sol";
import "./Strings.sol";
import "./MerkleProof.sol";

contract WagmiBlueprint is ERC1155, Ownable, ERC1155Burnable {
    using SafeMath for uint256;
    string public name;
    string public symbol;
    string public _tokenUri = "https://gateway.pinata.cloud/ipfs/QmNyWcDafngvXukB8fYYZ8LuLLCoKnMXLHFLPASaFvub9s";
    uint256 private maxSupply = 6000;
    uint256 public mintedCount = 0;
    uint256 private constant TOKEN_ID = 0;
    uint256 public publicSalePrice = 250000000000000000;
    uint256 public privateSalePrice = 200000000000000000;
    bool public privateSale = false;
    bool public publicSale = false;
    bytes32 private merkleRootHash =0xc38224bae8a2646e4f854bf642f5818b6fe01f00549932e3445bd536ff877c1e;
    address private wagmiExchangeContract;
    uint256 private privateMaxSupply = 1000; // setter only owner

    constructor() ERC1155(_tokenUri) {
        name = "WAGMI Estates";
        symbol = "WAG";
    }

    function pauseSale() public onlyOwner {
        privateSale = false;
        publicSale = false;
    }

    // toggle functions to change bool varibales
    function togglePrivateSale() public onlyOwner {
        privateSale = !privateSale;
        if (privateSale) {
            publicSale = false;
        }
    }

    function togglePublicSale() public onlyOwner {
        publicSale = !publicSale;
        if (publicSale) {
            privateSale = false;
        }
    }

    // setters for different limits

    function setMaxSupply(uint256 maxSupply_) public onlyOwner {
        maxSupply = maxSupply_;
    }

    function setPrivateMaxSupply(uint256 maxSupply_) public onlyOwner {
        privateMaxSupply = maxSupply_;
    }

    function setMerkleRoot(bytes32 rootHash) public onlyOwner {
        merkleRootHash = rootHash;
    }

    function setWagmi721Address(address wagmiContractAddress) public onlyOwner {
        wagmiExchangeContract = wagmiContractAddress;
    }

    function setPrivateSalePrice(uint256 price) public onlyOwner {
        require(price > 0, "price must be greater than 0");
        privateSalePrice = price;
    }

    function setPublicSalePrice(uint256 price) public onlyOwner {
        require(price > 0, "price must be greater than 0");
        publicSalePrice = price;
    }

    function mintBlueprintToken(uint256 amount, bytes32[] calldata _merkleProof)
        public
        payable
    {
        require(publicSale || privateSale, "Sale is not started");
        uint256 tokenPrice = publicSalePrice;
        require(
            amount <= 5 && amount >= 1,
            "Max mint per tras. exceeded"
        );
        require(amount.add(mintedCount) <= privateMaxSupply, "Sale Max Limit reached");
        require(amount.add(mintedCount) <= maxSupply, "Max Supply Limit reached");

        // handle private sale mint process
        if (privateSale) {
            tokenPrice = privateSalePrice;
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            require(
                MerkleProof.verify(_merkleProof, merkleRootHash, leaf),
                "You are not whitelisted"
            );
            
        }
        //handle public sale process
        else {
            require(publicSale, "Public Sale is not live!");
        }

        

        require(msg.value >= tokenPrice.mul(amount), "Not enough ETH sent");

        _mint(msg.sender, TOKEN_ID, amount, "");
        mintedCount = mintedCount.add(amount);
    }

    function withdrawFunds() public onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }


    function burnForRedeem(address account, uint256 amount) external {
        require(
            wagmiExchangeContract == msg.sender,
            "You are not allowed to redeem"
        );
        _burn(account, TOKEN_ID, amount);
    }

    function airdropGiveaway(address to, uint256 amountToMint)
        public
        onlyOwner
        returns (uint256 tokId)
    {
        require(amountToMint.add(mintedCount) <= maxSupply, "Limit reached");
        mintedCount = mintedCount.add(amountToMint);
        _mint(to, TOKEN_ID, amountToMint, "");
        return TOKEN_ID;
    }
}


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 14: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

        return array;
    }
}

File 4 of 14: ERC1155Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Burnable.sol)

pragma solidity ^0.8.0;

import "./ERC1155.sol";

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

        _burn(account, id, value);
    }

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

        _burnBatch(account, ids, values);
    }
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC1155.sol";

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

File 8 of 14: IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

File 9 of 14: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 10 of 14: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 12 of 14: SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"_tokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amountToMint","type":"uint256"}],"name":"airdropGiveaway","outputs":[{"internalType":"uint256","name":"tokId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnForRedeem","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":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintBlueprintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"privateSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"rootHash","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setPrivateMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrivateSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wagmiContractAddress","type":"address"}],"name":"setWagmi721Address","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":"togglePrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","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":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052605060808181529062002bab60a03980516200002a9160069160209091019062000216565b5061177060075560006008556703782dace9d900006009556702c68af0bb140000600a55600b805461ffff191690557fc38224bae8a2646e4f854bf642f5818b6fe01f00549932e3445bd536ff877c1e600c556103e8600e553480156200009057600080fd5b5060068054620000a090620002bc565b80601f0160208091040260200160405190810160405280929190818152602001828054620000ce90620002bc565b80156200011f5780601f10620000f3576101008083540402835291602001916200011f565b820191906000526020600020905b8154815290600101906020018083116200010157829003601f168201915b50505050506200013581620001ab60201b60201c565b506200014133620001c4565b60408051808201909152600d8082526c5741474d49204573746174657360981b6020909201918252620001779160049162000216565b506040805180820190915260038082526257414760e81b6020909201918252620001a49160059162000216565b50620002f9565b8051620001c090600290602084019062000216565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200022490620002bc565b90600052602060002090601f01602090048101928262000248576000855562000293565b82601f106200026357805160ff191683800117855562000293565b8280016001018555821562000293579182015b828111156200029357825182559160200191906001019062000276565b50620002a1929150620002a5565b5090565b5b80821115620002a15760008155600101620002a6565b600181811c90821680620002d157607f821691505b60208210811415620002f357634e487b7160e01b600052602260045260246000fd5b50919050565b6128a280620003096000396000f3fe6080604052600436106101f85760003560e01c80638da5cb5b1161010d578063d590e0a6116100a0578063e985e9c51161006f578063e985e9c514610564578063f242432a146105ad578063f2fde38b146105cd578063f5298aca146105ed578063f560d4151461060d57600080fd5b8063d590e0a614610512578063df6552b914610525578063dfe5dd681461053a578063e222c7f91461054f57600080fd5b80639d9c41f6116100dc5780639d9c41f6146104a2578063a22cb465146104c2578063ba1f879f146104e2578063cf721b15146104fc57600080fd5b80638da5cb5b1461042f5780638f48628c1461045757806395d89b41146104775780639b6860c81461048c57600080fd5b806355367ba9116101905780636f8b44b01161015f5780636f8b44b01461039a578063715018a6146103ba578063791a2519146103cf5780637bc36e04146103ef5780637cb647591461040f57600080fd5b806355367ba9146103255780635d55aae71461033a5780636810b3cb1461035a5780636b20c4541461037a57600080fd5b806324600fc3116101cc57806324600fc3146102a25780632eb2c2d6146102b957806333bc1c5c146102d95780634e1273f4146102f857600080fd5b8062fdd58e146101fd57806301ffc9a71461023057806306fdde03146102605780630e89341c14610282575b600080fd5b34801561020957600080fd5b5061021d6102183660046120ed565b610623565b6040519081526020015b60405180910390f35b34801561023c57600080fd5b5061025061024b366004612234565b6106ba565b6040519015158152602001610227565b34801561026c57600080fd5b5061027561070c565b6040516102279190612459565b34801561028e57600080fd5b5061027561029d36600461221b565b61079a565b3480156102ae57600080fd5b506102b761082e565b005b3480156102c557600080fd5b506102b76102d4366004611f2e565b610887565b3480156102e557600080fd5b50600b5461025090610100900460ff1681565b34801561030457600080fd5b5061031861031336600461214a565b61091e565b6040516102279190612418565b34801561033157600080fd5b506102b7610a48565b34801561034657600080fd5b506102b76103553660046120ed565b610a7f565b34801561036657600080fd5b5061021d6103753660046120ed565b610ae9565b34801561038657600080fd5b506102b761039536600461203d565b610b9d565b3480156103a657600080fd5b506102b76103b536600461221b565b610be5565b3480156103c657600080fd5b506102b7610c14565b3480156103db57600080fd5b506102b76103ea36600461221b565b610c4a565b3480156103fb57600080fd5b506102b761040a36600461221b565b610cc9565b34801561041b57600080fd5b506102b761042a36600461221b565b610d48565b34801561043b57600080fd5b506003546040516001600160a01b039091168152602001610227565b34801561046357600080fd5b506102b7610472366004611ee0565b610d77565b34801561048357600080fd5b50610275610dc3565b34801561049857600080fd5b5061021d60095481565b3480156104ae57600080fd5b506102b76104bd36600461221b565b610dd0565b3480156104ce57600080fd5b506102b76104dd3660046120b1565b610dff565b3480156104ee57600080fd5b50600b546102509060ff1681565b34801561050857600080fd5b5061021d60085481565b6102b761052036600461226e565b610e0a565b34801561053157600080fd5b5061027561112f565b34801561054657600080fd5b506102b761113c565b34801561055b57600080fd5b506102b761118e565b34801561057057600080fd5b5061025061057f366004611efb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b3480156105b957600080fd5b506102b76105c8366004611fd8565b6111ec565b3480156105d957600080fd5b506102b76105e8366004611ee0565b611231565b3480156105f957600080fd5b506102b7610608366004612117565b6112c9565b34801561061957600080fd5b5061021d600a5481565b60006001600160a01b0383166106945760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806106eb57506001600160e01b031982166303a24d0760e21b145b8061070657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60048054610719906126eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610745906126eb565b80156107925780601f1061076757610100808354040283529160200191610792565b820191906000526020600020905b81548152906001019060200180831161077557829003601f168201915b505050505081565b6060600280546107a9906126eb565b80601f01602080910402602001604051908101604052809291908181526020018280546107d5906126eb565b80156108225780601f106107f757610100808354040283529160200191610822565b820191906000526020600020905b81548152906001019060200180831161080557829003601f168201915b50505050509050919050565b6003546001600160a01b031633146108585760405162461bcd60e51b815260040161068b90612613565b60405133904780156108fc02916000818181858888f19350505050158015610884573d6000803e3d6000fd5b50565b6001600160a01b0385163314806108a357506108a3853361057f565b61090a5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161068b565b610917858585858561130c565b5050505050565b606081518351146109835760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161068b565b6000835167ffffffffffffffff81111561099f5761099f61279a565b6040519080825280602002602001820160405280156109c8578160200160208202803683370190505b50905060005b8451811015610a4057610a138582815181106109ec576109ec612784565b6020026020010151858381518110610a0657610a06612784565b6020026020010151610623565b828281518110610a2557610a25612784565b6020908102919091010152610a3981612753565b90506109ce565b509392505050565b6003546001600160a01b03163314610a725760405162461bcd60e51b815260040161068b90612613565b600b805461ffff19169055565b600d546001600160a01b03163314610ad95760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f7420616c6c6f77656420746f2072656465656d000000604482015260640161068b565b610ae5826000836114a8565b5050565b6003546000906001600160a01b03163314610b165760405162461bcd60e51b815260040161068b90612613565b600754600854610b279084906115aa565b1115610b655760405162461bcd60e51b815260206004820152600d60248201526c131a5b5a5d081c995858da1959609a1b604482015260640161068b565b600854610b7290836115aa565b600881905550610b9483600084604051806020016040528060008152506115bd565b50600092915050565b6001600160a01b038316331480610bb95750610bb9833361057f565b610bd55760405162461bcd60e51b815260040161068b906124f8565b610be08383836116c7565b505050565b6003546001600160a01b03163314610c0f5760405162461bcd60e51b815260040161068b90612613565b600755565b6003546001600160a01b03163314610c3e5760405162461bcd60e51b815260040161068b90612613565b610c486000611843565b565b6003546001600160a01b03163314610c745760405162461bcd60e51b815260040161068b90612613565b60008111610cc45760405162461bcd60e51b815260206004820152601c60248201527f7072696365206d7573742062652067726561746572207468616e203000000000604482015260640161068b565b600955565b6003546001600160a01b03163314610cf35760405162461bcd60e51b815260040161068b90612613565b60008111610d435760405162461bcd60e51b815260206004820152601c60248201527f7072696365206d7573742062652067726561746572207468616e203000000000604482015260640161068b565b600a55565b6003546001600160a01b03163314610d725760405162461bcd60e51b815260040161068b90612613565b600c55565b6003546001600160a01b03163314610da15760405162461bcd60e51b815260040161068b90612613565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60058054610719906126eb565b6003546001600160a01b03163314610dfa5760405162461bcd60e51b815260040161068b90612613565b600e55565b610ae5338383611895565b600b54610100900460ff1680610e225750600b5460ff165b610e645760405162461bcd60e51b815260206004820152601360248201527214d85b19481a5cc81b9bdd081cdd185c9d1959606a1b604482015260640161068b565b60095460058411801590610e79575060018410155b610ec55760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e742070657220747261732e2065786365656465640000000000604482015260640161068b565b600e54600854610ed69086906115aa565b1115610f1d5760405162461bcd60e51b815260206004820152601660248201527514d85b194813585e08131a5b5a5d081c995858da195960521b604482015260640161068b565b600754600854610f2e9086906115aa565b1115610f7c5760405162461bcd60e51b815260206004820152601860248201527f4d617820537570706c79204c696d697420726561636865640000000000000000604482015260640161068b565b600b5460ff16156110575750600a546040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061100584848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611976565b6110515760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c6973746564000000000000000000604482015260640161068b565b506110ae565b600b54610100900460ff166110ae5760405162461bcd60e51b815260206004820152601860248201527f5075626c69632053616c65206973206e6f74206c697665210000000000000000604482015260640161068b565b6110b8818561198c565b3410156110fd5760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b604482015260640161068b565b61111933600086604051806020016040528060008152506115bd565b60085461112690856115aa565b60085550505050565b60068054610719906126eb565b6003546001600160a01b031633146111665760405162461bcd60e51b815260040161068b90612613565b600b805460ff19811660ff918216159081179092551615610c4857600b805461ff0019169055565b6003546001600160a01b031633146111b85760405162461bcd60e51b815260040161068b90612613565b600b805460ff610100808304821615810261ff0019909316929092179283905591041615610c4857600b805460ff19169055565b6001600160a01b0385163314806112085750611208853361057f565b6112245760405162461bcd60e51b815260040161068b906124f8565b6109178585858585611998565b6003546001600160a01b0316331461125b5760405162461bcd60e51b815260040161068b90612613565b6001600160a01b0381166112c05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068b565b61088481611843565b6001600160a01b0383163314806112e557506112e5833361057f565b6113015760405162461bcd60e51b815260040161068b906124f8565b610be08383836114a8565b815183511461132d5760405162461bcd60e51b815260040161068b90612648565b6001600160a01b0384166113535760405162461bcd60e51b815260040161068b90612541565b3360005b845181101561143a57600085828151811061137457611374612784565b60200260200101519050600085838151811061139257611392612784565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156113e25760405162461bcd60e51b815260040161068b906125c9565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061141f9084906126b4565b925050819055505050508061143390612753565b9050611357565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161148a92919061242b565b60405180910390a46114a0818787878787611ab5565b505050505050565b6001600160a01b0383166114ce5760405162461bcd60e51b815260040161068b90612586565b336114fe818560006114df87611c20565b6114e887611c20565b5050604080516020810190915260009052505050565b6000838152602081815260408083206001600160a01b03881684529091529020548281101561153f5760405162461bcd60e51b815260040161068b906124b4565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b60006115b682846126b4565b9392505050565b6001600160a01b03841661161d5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161068b565b336116378160008761162e88611c20565b61091788611c20565b6000848152602081815260408083206001600160a01b0389168452909152812080548592906116679084906126b4565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461091781600087878787611c6b565b6001600160a01b0383166116ed5760405162461bcd60e51b815260040161068b90612586565b805182511461170e5760405162461bcd60e51b815260040161068b90612648565b604080516020810190915260009081905233905b83518110156117e457600084828151811061173f5761173f612784565b60200260200101519050600084838151811061175d5761175d612784565b602090810291909101810151600084815280835260408082206001600160a01b038c1683529093529190912054909150818110156117ad5760405162461bcd60e51b815260040161068b906124b4565b6000928352602083815260408085206001600160a01b038b16865290915290922091039055806117dc81612753565b915050611722565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161183592919061242b565b60405180910390a450505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156119095760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161068b565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000826119838584611d35565b14949350505050565b60006115b682846126cc565b6001600160a01b0384166119be5760405162461bcd60e51b815260040161068b90612541565b336119ce81878761162e88611c20565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611a0f5760405162461bcd60e51b815260040161068b906125c9565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611a4c9084906126b4565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611aac828888888888611c6b565b50505050505050565b6001600160a01b0384163b156114a05760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611af99089908990889088908890600401612375565b602060405180830381600087803b158015611b1357600080fd5b505af1925050508015611b43575060408051601f3d908101601f19168201909252611b4091810190612251565b60015b611bf057611b4f6127b0565b806308c379a01415611b895750611b646127cc565b80611b6f5750611b8b565b8060405162461bcd60e51b815260040161068b9190612459565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161068b565b6001600160e01b0319811663bc197c8160e01b14611aac5760405162461bcd60e51b815260040161068b9061246c565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611c5a57611c5a612784565b602090810291909101015292915050565b6001600160a01b0384163b156114a05760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611caf90899089908890889088906004016123d3565b602060405180830381600087803b158015611cc957600080fd5b505af1925050508015611cf9575060408051601f3d908101601f19168201909252611cf691810190612251565b60015b611d0557611b4f6127b0565b6001600160e01b0319811663f23a6e6160e01b14611aac5760405162461bcd60e51b815260040161068b9061246c565b600081815b8451811015610a40576000858281518110611d5757611d57612784565b60200260200101519050808311611d99576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611dc6565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611dd181612753565b915050611d3a565b80356001600160a01b0381168114611df057600080fd5b919050565b600082601f830112611e0657600080fd5b81356020611e1382612690565b604051611e208282612726565b8381528281019150858301600585901b87018401881015611e4057600080fd5b60005b85811015611e5f57813584529284019290840190600101611e43565b5090979650505050505050565b600082601f830112611e7d57600080fd5b813567ffffffffffffffff811115611e9757611e9761279a565b604051611eae601f8301601f191660200182612726565b818152846020838601011115611ec357600080fd5b816020850160208301376000918101602001919091529392505050565b600060208284031215611ef257600080fd5b6115b682611dd9565b60008060408385031215611f0e57600080fd5b611f1783611dd9565b9150611f2560208401611dd9565b90509250929050565b600080600080600060a08688031215611f4657600080fd5b611f4f86611dd9565b9450611f5d60208701611dd9565b9350604086013567ffffffffffffffff80821115611f7a57600080fd5b611f8689838a01611df5565b94506060880135915080821115611f9c57600080fd5b611fa889838a01611df5565b93506080880135915080821115611fbe57600080fd5b50611fcb88828901611e6c565b9150509295509295909350565b600080600080600060a08688031215611ff057600080fd5b611ff986611dd9565b945061200760208701611dd9565b93506040860135925060608601359150608086013567ffffffffffffffff81111561203157600080fd5b611fcb88828901611e6c565b60008060006060848603121561205257600080fd5b61205b84611dd9565b9250602084013567ffffffffffffffff8082111561207857600080fd5b61208487838801611df5565b9350604086013591508082111561209a57600080fd5b506120a786828701611df5565b9150509250925092565b600080604083850312156120c457600080fd5b6120cd83611dd9565b9150602083013580151581146120e257600080fd5b809150509250929050565b6000806040838503121561210057600080fd5b61210983611dd9565b946020939093013593505050565b60008060006060848603121561212c57600080fd5b61213584611dd9565b95602085013595506040909401359392505050565b6000806040838503121561215d57600080fd5b823567ffffffffffffffff8082111561217557600080fd5b818501915085601f83011261218957600080fd5b8135602061219682612690565b6040516121a38282612726565b8381528281019150858301600585901b870184018b10156121c357600080fd5b600096505b848710156121ed576121d981611dd9565b8352600196909601959183019183016121c8565b509650508601359250508082111561220457600080fd5b5061221185828601611df5565b9150509250929050565b60006020828403121561222d57600080fd5b5035919050565b60006020828403121561224657600080fd5b81356115b681612856565b60006020828403121561226357600080fd5b81516115b681612856565b60008060006040848603121561228357600080fd5b83359250602084013567ffffffffffffffff808211156122a257600080fd5b818601915086601f8301126122b657600080fd5b8135818111156122c557600080fd5b8760208260051b85010111156122da57600080fd5b6020830194508093505050509250925092565b600081518084526020808501945080840160005b8381101561231d57815187529582019590820190600101612301565b509495945050505050565b6000815180845260005b8181101561234e57602081850181015186830182015201612332565b81811115612360576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a0604082018190526000906123a1908301866122ed565b82810360608401526123b381866122ed565b905082810360808401526123c78185612328565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061240d90830184612328565b979650505050505050565b6020815260006115b660208301846122ed565b60408152600061243e60408301856122ed565b828103602084015261245081856122ed565b95945050505050565b6020815260006115b66020830184612328565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b600067ffffffffffffffff8211156126aa576126aa61279a565b5060051b60200190565b600082198211156126c7576126c761276e565b500190565b60008160001904831182151516156126e6576126e661276e565b500290565b600181811c908216806126ff57607f821691505b6020821081141561272057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff8111828210171561274c5761274c61279a565b6040525050565b60006000198214156127675761276761276e565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156127c95760046000803e5060005160e01c5b90565b600060443d10156127da5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561280a57505050505090565b82850191508151818111156128225750505050505090565b843d870101602082850101111561283c5750505050505090565b61284b60208286010187612726565b509095945050505050565b6001600160e01b03198116811461088457600080fdfea26469706673582212202cf295ff23a1d9cb6958d47030c3e8280004116704568d77432248b12c8b3bfb64736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d4e7957634461666e677658756b42386659595a384c754c4c436f4b6e4d584c48464c50415361467675623973

Deployed Bytecode

0x6080604052600436106101f85760003560e01c80638da5cb5b1161010d578063d590e0a6116100a0578063e985e9c51161006f578063e985e9c514610564578063f242432a146105ad578063f2fde38b146105cd578063f5298aca146105ed578063f560d4151461060d57600080fd5b8063d590e0a614610512578063df6552b914610525578063dfe5dd681461053a578063e222c7f91461054f57600080fd5b80639d9c41f6116100dc5780639d9c41f6146104a2578063a22cb465146104c2578063ba1f879f146104e2578063cf721b15146104fc57600080fd5b80638da5cb5b1461042f5780638f48628c1461045757806395d89b41146104775780639b6860c81461048c57600080fd5b806355367ba9116101905780636f8b44b01161015f5780636f8b44b01461039a578063715018a6146103ba578063791a2519146103cf5780637bc36e04146103ef5780637cb647591461040f57600080fd5b806355367ba9146103255780635d55aae71461033a5780636810b3cb1461035a5780636b20c4541461037a57600080fd5b806324600fc3116101cc57806324600fc3146102a25780632eb2c2d6146102b957806333bc1c5c146102d95780634e1273f4146102f857600080fd5b8062fdd58e146101fd57806301ffc9a71461023057806306fdde03146102605780630e89341c14610282575b600080fd5b34801561020957600080fd5b5061021d6102183660046120ed565b610623565b6040519081526020015b60405180910390f35b34801561023c57600080fd5b5061025061024b366004612234565b6106ba565b6040519015158152602001610227565b34801561026c57600080fd5b5061027561070c565b6040516102279190612459565b34801561028e57600080fd5b5061027561029d36600461221b565b61079a565b3480156102ae57600080fd5b506102b761082e565b005b3480156102c557600080fd5b506102b76102d4366004611f2e565b610887565b3480156102e557600080fd5b50600b5461025090610100900460ff1681565b34801561030457600080fd5b5061031861031336600461214a565b61091e565b6040516102279190612418565b34801561033157600080fd5b506102b7610a48565b34801561034657600080fd5b506102b76103553660046120ed565b610a7f565b34801561036657600080fd5b5061021d6103753660046120ed565b610ae9565b34801561038657600080fd5b506102b761039536600461203d565b610b9d565b3480156103a657600080fd5b506102b76103b536600461221b565b610be5565b3480156103c657600080fd5b506102b7610c14565b3480156103db57600080fd5b506102b76103ea36600461221b565b610c4a565b3480156103fb57600080fd5b506102b761040a36600461221b565b610cc9565b34801561041b57600080fd5b506102b761042a36600461221b565b610d48565b34801561043b57600080fd5b506003546040516001600160a01b039091168152602001610227565b34801561046357600080fd5b506102b7610472366004611ee0565b610d77565b34801561048357600080fd5b50610275610dc3565b34801561049857600080fd5b5061021d60095481565b3480156104ae57600080fd5b506102b76104bd36600461221b565b610dd0565b3480156104ce57600080fd5b506102b76104dd3660046120b1565b610dff565b3480156104ee57600080fd5b50600b546102509060ff1681565b34801561050857600080fd5b5061021d60085481565b6102b761052036600461226e565b610e0a565b34801561053157600080fd5b5061027561112f565b34801561054657600080fd5b506102b761113c565b34801561055b57600080fd5b506102b761118e565b34801561057057600080fd5b5061025061057f366004611efb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b3480156105b957600080fd5b506102b76105c8366004611fd8565b6111ec565b3480156105d957600080fd5b506102b76105e8366004611ee0565b611231565b3480156105f957600080fd5b506102b7610608366004612117565b6112c9565b34801561061957600080fd5b5061021d600a5481565b60006001600160a01b0383166106945760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806106eb57506001600160e01b031982166303a24d0760e21b145b8061070657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60048054610719906126eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610745906126eb565b80156107925780601f1061076757610100808354040283529160200191610792565b820191906000526020600020905b81548152906001019060200180831161077557829003601f168201915b505050505081565b6060600280546107a9906126eb565b80601f01602080910402602001604051908101604052809291908181526020018280546107d5906126eb565b80156108225780601f106107f757610100808354040283529160200191610822565b820191906000526020600020905b81548152906001019060200180831161080557829003601f168201915b50505050509050919050565b6003546001600160a01b031633146108585760405162461bcd60e51b815260040161068b90612613565b60405133904780156108fc02916000818181858888f19350505050158015610884573d6000803e3d6000fd5b50565b6001600160a01b0385163314806108a357506108a3853361057f565b61090a5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161068b565b610917858585858561130c565b5050505050565b606081518351146109835760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161068b565b6000835167ffffffffffffffff81111561099f5761099f61279a565b6040519080825280602002602001820160405280156109c8578160200160208202803683370190505b50905060005b8451811015610a4057610a138582815181106109ec576109ec612784565b6020026020010151858381518110610a0657610a06612784565b6020026020010151610623565b828281518110610a2557610a25612784565b6020908102919091010152610a3981612753565b90506109ce565b509392505050565b6003546001600160a01b03163314610a725760405162461bcd60e51b815260040161068b90612613565b600b805461ffff19169055565b600d546001600160a01b03163314610ad95760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f7420616c6c6f77656420746f2072656465656d000000604482015260640161068b565b610ae5826000836114a8565b5050565b6003546000906001600160a01b03163314610b165760405162461bcd60e51b815260040161068b90612613565b600754600854610b279084906115aa565b1115610b655760405162461bcd60e51b815260206004820152600d60248201526c131a5b5a5d081c995858da1959609a1b604482015260640161068b565b600854610b7290836115aa565b600881905550610b9483600084604051806020016040528060008152506115bd565b50600092915050565b6001600160a01b038316331480610bb95750610bb9833361057f565b610bd55760405162461bcd60e51b815260040161068b906124f8565b610be08383836116c7565b505050565b6003546001600160a01b03163314610c0f5760405162461bcd60e51b815260040161068b90612613565b600755565b6003546001600160a01b03163314610c3e5760405162461bcd60e51b815260040161068b90612613565b610c486000611843565b565b6003546001600160a01b03163314610c745760405162461bcd60e51b815260040161068b90612613565b60008111610cc45760405162461bcd60e51b815260206004820152601c60248201527f7072696365206d7573742062652067726561746572207468616e203000000000604482015260640161068b565b600955565b6003546001600160a01b03163314610cf35760405162461bcd60e51b815260040161068b90612613565b60008111610d435760405162461bcd60e51b815260206004820152601c60248201527f7072696365206d7573742062652067726561746572207468616e203000000000604482015260640161068b565b600a55565b6003546001600160a01b03163314610d725760405162461bcd60e51b815260040161068b90612613565b600c55565b6003546001600160a01b03163314610da15760405162461bcd60e51b815260040161068b90612613565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60058054610719906126eb565b6003546001600160a01b03163314610dfa5760405162461bcd60e51b815260040161068b90612613565b600e55565b610ae5338383611895565b600b54610100900460ff1680610e225750600b5460ff165b610e645760405162461bcd60e51b815260206004820152601360248201527214d85b19481a5cc81b9bdd081cdd185c9d1959606a1b604482015260640161068b565b60095460058411801590610e79575060018410155b610ec55760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e742070657220747261732e2065786365656465640000000000604482015260640161068b565b600e54600854610ed69086906115aa565b1115610f1d5760405162461bcd60e51b815260206004820152601660248201527514d85b194813585e08131a5b5a5d081c995858da195960521b604482015260640161068b565b600754600854610f2e9086906115aa565b1115610f7c5760405162461bcd60e51b815260206004820152601860248201527f4d617820537570706c79204c696d697420726561636865640000000000000000604482015260640161068b565b600b5460ff16156110575750600a546040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061100584848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611976565b6110515760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c6973746564000000000000000000604482015260640161068b565b506110ae565b600b54610100900460ff166110ae5760405162461bcd60e51b815260206004820152601860248201527f5075626c69632053616c65206973206e6f74206c697665210000000000000000604482015260640161068b565b6110b8818561198c565b3410156110fd5760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b604482015260640161068b565b61111933600086604051806020016040528060008152506115bd565b60085461112690856115aa565b60085550505050565b60068054610719906126eb565b6003546001600160a01b031633146111665760405162461bcd60e51b815260040161068b90612613565b600b805460ff19811660ff918216159081179092551615610c4857600b805461ff0019169055565b6003546001600160a01b031633146111b85760405162461bcd60e51b815260040161068b90612613565b600b805460ff610100808304821615810261ff0019909316929092179283905591041615610c4857600b805460ff19169055565b6001600160a01b0385163314806112085750611208853361057f565b6112245760405162461bcd60e51b815260040161068b906124f8565b6109178585858585611998565b6003546001600160a01b0316331461125b5760405162461bcd60e51b815260040161068b90612613565b6001600160a01b0381166112c05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068b565b61088481611843565b6001600160a01b0383163314806112e557506112e5833361057f565b6113015760405162461bcd60e51b815260040161068b906124f8565b610be08383836114a8565b815183511461132d5760405162461bcd60e51b815260040161068b90612648565b6001600160a01b0384166113535760405162461bcd60e51b815260040161068b90612541565b3360005b845181101561143a57600085828151811061137457611374612784565b60200260200101519050600085838151811061139257611392612784565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156113e25760405162461bcd60e51b815260040161068b906125c9565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061141f9084906126b4565b925050819055505050508061143390612753565b9050611357565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161148a92919061242b565b60405180910390a46114a0818787878787611ab5565b505050505050565b6001600160a01b0383166114ce5760405162461bcd60e51b815260040161068b90612586565b336114fe818560006114df87611c20565b6114e887611c20565b5050604080516020810190915260009052505050565b6000838152602081815260408083206001600160a01b03881684529091529020548281101561153f5760405162461bcd60e51b815260040161068b906124b4565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b60006115b682846126b4565b9392505050565b6001600160a01b03841661161d5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161068b565b336116378160008761162e88611c20565b61091788611c20565b6000848152602081815260408083206001600160a01b0389168452909152812080548592906116679084906126b4565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461091781600087878787611c6b565b6001600160a01b0383166116ed5760405162461bcd60e51b815260040161068b90612586565b805182511461170e5760405162461bcd60e51b815260040161068b90612648565b604080516020810190915260009081905233905b83518110156117e457600084828151811061173f5761173f612784565b60200260200101519050600084838151811061175d5761175d612784565b602090810291909101810151600084815280835260408082206001600160a01b038c1683529093529190912054909150818110156117ad5760405162461bcd60e51b815260040161068b906124b4565b6000928352602083815260408085206001600160a01b038b16865290915290922091039055806117dc81612753565b915050611722565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161183592919061242b565b60405180910390a450505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156119095760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161068b565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000826119838584611d35565b14949350505050565b60006115b682846126cc565b6001600160a01b0384166119be5760405162461bcd60e51b815260040161068b90612541565b336119ce81878761162e88611c20565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611a0f5760405162461bcd60e51b815260040161068b906125c9565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611a4c9084906126b4565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611aac828888888888611c6b565b50505050505050565b6001600160a01b0384163b156114a05760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611af99089908990889088908890600401612375565b602060405180830381600087803b158015611b1357600080fd5b505af1925050508015611b43575060408051601f3d908101601f19168201909252611b4091810190612251565b60015b611bf057611b4f6127b0565b806308c379a01415611b895750611b646127cc565b80611b6f5750611b8b565b8060405162461bcd60e51b815260040161068b9190612459565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161068b565b6001600160e01b0319811663bc197c8160e01b14611aac5760405162461bcd60e51b815260040161068b9061246c565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611c5a57611c5a612784565b602090810291909101015292915050565b6001600160a01b0384163b156114a05760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611caf90899089908890889088906004016123d3565b602060405180830381600087803b158015611cc957600080fd5b505af1925050508015611cf9575060408051601f3d908101601f19168201909252611cf691810190612251565b60015b611d0557611b4f6127b0565b6001600160e01b0319811663f23a6e6160e01b14611aac5760405162461bcd60e51b815260040161068b9061246c565b600081815b8451811015610a40576000858281518110611d5757611d57612784565b60200260200101519050808311611d99576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611dc6565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611dd181612753565b915050611d3a565b80356001600160a01b0381168114611df057600080fd5b919050565b600082601f830112611e0657600080fd5b81356020611e1382612690565b604051611e208282612726565b8381528281019150858301600585901b87018401881015611e4057600080fd5b60005b85811015611e5f57813584529284019290840190600101611e43565b5090979650505050505050565b600082601f830112611e7d57600080fd5b813567ffffffffffffffff811115611e9757611e9761279a565b604051611eae601f8301601f191660200182612726565b818152846020838601011115611ec357600080fd5b816020850160208301376000918101602001919091529392505050565b600060208284031215611ef257600080fd5b6115b682611dd9565b60008060408385031215611f0e57600080fd5b611f1783611dd9565b9150611f2560208401611dd9565b90509250929050565b600080600080600060a08688031215611f4657600080fd5b611f4f86611dd9565b9450611f5d60208701611dd9565b9350604086013567ffffffffffffffff80821115611f7a57600080fd5b611f8689838a01611df5565b94506060880135915080821115611f9c57600080fd5b611fa889838a01611df5565b93506080880135915080821115611fbe57600080fd5b50611fcb88828901611e6c565b9150509295509295909350565b600080600080600060a08688031215611ff057600080fd5b611ff986611dd9565b945061200760208701611dd9565b93506040860135925060608601359150608086013567ffffffffffffffff81111561203157600080fd5b611fcb88828901611e6c565b60008060006060848603121561205257600080fd5b61205b84611dd9565b9250602084013567ffffffffffffffff8082111561207857600080fd5b61208487838801611df5565b9350604086013591508082111561209a57600080fd5b506120a786828701611df5565b9150509250925092565b600080604083850312156120c457600080fd5b6120cd83611dd9565b9150602083013580151581146120e257600080fd5b809150509250929050565b6000806040838503121561210057600080fd5b61210983611dd9565b946020939093013593505050565b60008060006060848603121561212c57600080fd5b61213584611dd9565b95602085013595506040909401359392505050565b6000806040838503121561215d57600080fd5b823567ffffffffffffffff8082111561217557600080fd5b818501915085601f83011261218957600080fd5b8135602061219682612690565b6040516121a38282612726565b8381528281019150858301600585901b870184018b10156121c357600080fd5b600096505b848710156121ed576121d981611dd9565b8352600196909601959183019183016121c8565b509650508601359250508082111561220457600080fd5b5061221185828601611df5565b9150509250929050565b60006020828403121561222d57600080fd5b5035919050565b60006020828403121561224657600080fd5b81356115b681612856565b60006020828403121561226357600080fd5b81516115b681612856565b60008060006040848603121561228357600080fd5b83359250602084013567ffffffffffffffff808211156122a257600080fd5b818601915086601f8301126122b657600080fd5b8135818111156122c557600080fd5b8760208260051b85010111156122da57600080fd5b6020830194508093505050509250925092565b600081518084526020808501945080840160005b8381101561231d57815187529582019590820190600101612301565b509495945050505050565b6000815180845260005b8181101561234e57602081850181015186830182015201612332565b81811115612360576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a0604082018190526000906123a1908301866122ed565b82810360608401526123b381866122ed565b905082810360808401526123c78185612328565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061240d90830184612328565b979650505050505050565b6020815260006115b660208301846122ed565b60408152600061243e60408301856122ed565b828103602084015261245081856122ed565b95945050505050565b6020815260006115b66020830184612328565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b600067ffffffffffffffff8211156126aa576126aa61279a565b5060051b60200190565b600082198211156126c7576126c761276e565b500190565b60008160001904831182151516156126e6576126e661276e565b500290565b600181811c908216806126ff57607f821691505b6020821081141561272057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff8111828210171561274c5761274c61279a565b6040525050565b60006000198214156127675761276761276e565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156127c95760046000803e5060005160e01c5b90565b600060443d10156127da5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561280a57505050505090565b82850191508151818111156128225750505050505090565b843d870101602082850101111561283c5750505050505090565b61284b60208286010187612726565b509095945050505050565b6001600160e01b03198116811461088457600080fdfea26469706673582212202cf295ff23a1d9cb6958d47030c3e8280004116704568d77432248b12c8b3bfb64736f6c63430008070033

Deployed Bytecode Sourcemap

320:4088:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2115:228:2;;;;;;;;;;-1:-1:-1;2115:228:2;;;;;:::i;:::-;;:::i;:::-;;;21823:25:14;;;21811:2;21796:18;2115:228:2;;;;;;;;1166:305;;;;;;;;;;-1:-1:-1;1166:305:2;;;;;:::i;:::-;;:::i;:::-;;;11812:14:14;;11805:22;11787:41;;11775:2;11760:18;1166:305:2;11647:187:14;419:18:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;1870:103:2:-;;;;;;;;;;-1:-1:-1;1870:103:2;;;;;:::i;:::-;;:::i;3710:110:13:-;;;;;;;;;;;;;:::i;:::-;;3990:430:2;;;;;;;;;;-1:-1:-1;3990:430:2;;;;;:::i;:::-;;:::i;852:30:13:-;;;;;;;;;;-1:-1:-1;852:30:13;;;;;;;;;;;2500:508:2;;;;;;;;;;-1:-1:-1;2500:508:2;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1204:102:13:-;;;;;;;;;;;;;:::i;3827:235::-;;;;;;;;;;-1:-1:-1;3827:235:13;;;;;:::i;:::-;;:::i;4068:338::-;;;;;;;;;;-1:-1:-1;4068:338:13;;;;;:::i;:::-;;:::i;708:342:3:-;;;;;;;;;;-1:-1:-1;708:342:3;;;;;:::i;:::-;;:::i;1723:98:13:-;;;;;;;;;;-1:-1:-1;1723:98:13;;;;;:::i;:::-;;:::i;1661:101:10:-;;;;;;;;;;;;;:::i;2361:160:13:-;;;;;;;;;;-1:-1:-1;2361:160:13;;;;;:::i;:::-;;:::i;2193:162::-;;;;;;;;;;-1:-1:-1;2193:162:13;;;;;:::i;:::-;;:::i;1945:100::-;;;;;;;;;;-1:-1:-1;1945:100:13;;;;;:::i;:::-;;:::i;1029:85:10:-;;;;;;;;;;-1:-1:-1;1101:6:10;;1029:85;;-1:-1:-1;;;;;1101:6:10;;;9453:51:14;;9441:2;9426:18;1029:85:10;9307:203:14;2051:136:13;;;;;;;;;;-1:-1:-1;2051:136:13;;;;;:::i;:::-;;:::i;443:20::-;;;;;;;;;;;;;:::i;700:51::-;;;;;;;;;;;;;;;;1827:112;;;;;;;;;;-1:-1:-1;1827:112:13;;;;;:::i;:::-;;:::i;3076:153:2:-;;;;;;;;;;-1:-1:-1;3076:153:2;;;;;:::i;:::-;;:::i;815:31:13:-;;;;;;;;;;-1:-1:-1;815:31:13;;;;;;;;621:30;;;;;;;;;;;;;;;;2527:1177;;;;;;:::i;:::-;;:::i;469:108::-;;;;;;;;;;;;;:::i;1361:158::-;;;;;;;;;;;;;:::i;1525:155::-;;;;;;;;;;;;;:::i;3296:166:2:-;;;;;;;;;;-1:-1:-1;3296:166:2;;;;;:::i;:::-;-1:-1:-1;;;;;3418:27:2;;;3395:4;3418:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;3296:166;3529:389;;;;;;;;;;-1:-1:-1;3529:389:2;;;;;:::i;:::-;;:::i;1911:198:10:-;;;;;;;;;;-1:-1:-1;1911:198:10;;;;;:::i;:::-;;:::i;392:310:3:-;;;;;;;;;;-1:-1:-1;392:310:3;;;;;:::i;:::-;;:::i;757:52:13:-;;;;;;;;;;;;;;;;2115:228:2;2201:7;-1:-1:-1;;;;;2228:21:2;;2220:77;;;;-1:-1:-1;;;2220:77:2;;13095:2:14;2220:77:2;;;13077:21:14;13134:2;13114:18;;;13107:30;13173:34;13153:18;;;13146:62;-1:-1:-1;;;13224:18:14;;;13217:41;13275:19;;2220:77:2;;;;;;;;;-1:-1:-1;2314:9:2;:13;;;;;;;;;;;-1:-1:-1;;;;;2314:22:2;;;;;;;;;;;;2115:228::o;1166:305::-;1268:4;-1:-1:-1;;;;;;1303:41:2;;-1:-1:-1;;;1303:41:2;;:109;;-1:-1:-1;;;;;;;1360:52:2;;-1:-1:-1;;;1360:52:2;1303:109;:161;;;-1:-1:-1;;;;;;;;;;937:40:4;;;1428:36:2;1284:180;1166:305;-1:-1:-1;;1166:305:2:o;419:18:13:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1870:103:2:-;1930:13;1962:4;1955:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1870:103;;;:::o;3710:110:13:-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;3762:51:13::1;::::0;3770:10:::1;::::0;3791:21:::1;3762:51:::0;::::1;;;::::0;::::1;::::0;;;3791:21;3770:10;3762:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;3710:110::o:0;3990:430:2:-;-1:-1:-1;;;;;4215:20:2;;719:10:1;4215:20:2;;:60;;-1:-1:-1;4239:36:2;4256:4;719:10:1;3296:166:2;:::i;4239:36::-;4194:157;;;;-1:-1:-1;;;4194:157:2;;17242:2:14;4194:157:2;;;17224:21:14;17281:2;17261:18;;;17254:30;17320:34;17300:18;;;17293:62;-1:-1:-1;;;17371:18:14;;;17364:48;17429:19;;4194:157:2;17040:414:14;4194:157:2;4361:52;4384:4;4390:2;4394:3;4399:7;4408:4;4361:22;:52::i;:::-;3990:430;;;;;:::o;2500:508::-;2651:16;2710:3;:10;2691:8;:15;:29;2683:83;;;;-1:-1:-1;;;2683:83:2;;20658:2:14;2683:83:2;;;20640:21:14;20697:2;20677:18;;;20670:30;20736:34;20716:18;;;20709:62;-1:-1:-1;;;20787:18:14;;;20780:39;20836:19;;2683:83:2;20456:405:14;2683:83:2;2777:30;2824:8;:15;2810:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2810:30:2;;2777:63;;2856:9;2851:120;2875:8;:15;2871:1;:19;2851:120;;;2930:30;2940:8;2949:1;2940:11;;;;;;;;:::i;:::-;;;;;;;2953:3;2957:1;2953:6;;;;;;;;:::i;:::-;;;;;;;2930:9;:30::i;:::-;2911:13;2925:1;2911:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;2892:3;;;:::i;:::-;;;2851:120;;;-1:-1:-1;2988:13:2;2500:508;-1:-1:-1;;;2500:508:2:o;1204:102:13:-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;1252:11:13::1;:19:::0;;-1:-1:-1;;1281:18:13;;;1204:102::o;3827:235::-;3923:21;;-1:-1:-1;;;;;3923:21:13;3948:10;3923:35;3902:111;;;;-1:-1:-1;;;3902:111:13;;19189:2:14;3902:111:13;;;19171:21:14;19228:2;19208:18;;;19201:30;19267:31;19247:18;;;19240:59;19316:18;;3902:111:13;18987:353:14;3902:111:13;4023:32;4029:7;693:1;4048:6;4023:5;:32::i;:::-;3827:235;;:::o;4068:338::-;1101:6:10;;4177:13:13;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;4247:9:13::1;::::0;4231:11:::1;::::0;4214:29:::1;::::0;:12;;:16:::1;:29::i;:::-;:42;;4206:68;;;::::0;-1:-1:-1;;;4206:68:13;;15795:2:14;4206:68:13::1;::::0;::::1;15777:21:14::0;15834:2;15814:18;;;15807:30;-1:-1:-1;;;15853:18:14;;;15846:43;15906:18;;4206:68:13::1;15593:337:14::0;4206:68:13::1;4298:11;::::0;:29:::1;::::0;4314:12;4298:15:::1;:29::i;:::-;4284:11;:43;;;;4337:37;4343:2;693:1;4357:12;4337:37;;;;;;;;;;;::::0;:5:::1;:37::i;:::-;-1:-1:-1::0;693:1:13::1;4068:338:::0;;;;:::o;708:342:3:-;-1:-1:-1;;;;;867:23:3;;719:10:1;867:23:3;;:66;;-1:-1:-1;894:39:3;911:7;719:10:1;3296:166:2;:::i;894:39:3:-;846:154;;;;-1:-1:-1;;;846:154:3;;;;;;;:::i;:::-;1011:32;1022:7;1031:3;1036:6;1011:10;:32::i;:::-;708:342;;;:::o;1723:98:13:-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;1792:9:13::1;:22:::0;1723:98::o;1661:101:10:-;1101:6;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;2361:160:13:-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;2447:1:13::1;2439:5;:9;2431:50;;;::::0;-1:-1:-1;;;2431:50:13;;14267:2:14;2431:50:13::1;::::0;::::1;14249:21:14::0;14306:2;14286:18;;;14279:30;14345;14325:18;;;14318:58;14393:18;;2431:50:13::1;14065:352:14::0;2431:50:13::1;2491:15;:23:::0;2361:160::o;2193:162::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;2280:1:13::1;2272:5;:9;2264:50;;;::::0;-1:-1:-1;;;2264:50:13;;14267:2:14;2264:50:13::1;::::0;::::1;14249:21:14::0;14306:2;14286:18;;;14279:30;14345;14325:18;;;14318:58;14393:18;;2264:50:13::1;14065:352:14::0;2264:50:13::1;2324:16;:24:::0;2193:162::o;1945:100::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;2013:14:13::1;:25:::0;1945:100::o;2051:136::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;2136:21:13::1;:44:::0;;-1:-1:-1;;;;;;2136:44:13::1;-1:-1:-1::0;;;;;2136:44:13;;;::::1;::::0;;;::::1;::::0;;2051:136::o;443:20::-;;;;;;;:::i;1827:112::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;1903:16:13::1;:29:::0;1827:112::o;3076:153:2:-;3170:52;719:10:1;3203:8:2;3213;3170:18;:52::i;2527:1177:13:-;2657:10;;;;;;;;:25;;-1:-1:-1;2671:11:13;;;;2657:25;2649:57;;;;-1:-1:-1;;;2649:57:13;;16137:2:14;2649:57:13;;;16119:21:14;16176:2;16156:18;;;16149:30;-1:-1:-1;;;16195:18:14;;;16188:49;16254:18;;2649:57:13;15935:343:14;2649:57:13;2737:15;;2793:1;2783:11;;;;;:26;;;2808:1;2798:6;:11;;2783:26;2762:100;;;;-1:-1:-1;;;2762:100:13;;15439:2:14;2762:100:13;;;15421:21:14;15478:2;15458:18;;;15451:30;15517:29;15497:18;;;15490:57;15564:18;;2762:100:13;15237:351:14;2762:100:13;2907:16;;2891:11;;2880:23;;:6;;:10;:23::i;:::-;:43;;2872:78;;;;-1:-1:-1;;;2872:78:13;;16485:2:14;2872:78:13;;;16467:21:14;16524:2;16504:18;;;16497:30;-1:-1:-1;;;16543:18:14;;;16536:52;16605:18;;2872:78:13;16283:346:14;2872:78:13;2995:9;;2979:11;;2968:23;;:6;;:10;:23::i;:::-;:36;;2960:73;;;;-1:-1:-1;;;2960:73:13;;19547:2:14;2960:73:13;;;19529:21:14;19586:2;19566:18;;;19559:30;19625:26;19605:18;;;19598:54;19669:18;;2960:73:13;19345:348:14;2960:73:13;3092:11;;;;3088:425;;;-1:-1:-1;3132:16:13;;3187:28;;-1:-1:-1;;3204:10:13;8970:2:14;8966:15;8962:53;3187:28:13;;;8950:66:14;3162:12:13;;9032::14;;3187:28:13;;;;;;;;;;;;3177:39;;;;;;3162:54;;3255;3274:12;;3255:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3288:14:13;;;-1:-1:-1;3304:4:13;;-1:-1:-1;3255:18:13;:54::i;:::-;3230:136;;;;-1:-1:-1;;;3230:136:13;;18476:2:14;3230:136:13;;;18458:21:14;18515:2;18495:18;;;18488:30;18554:25;18534:18;;;18527:53;18597:18;;3230:136:13;18274:347:14;3230:136:13;3105:285;3088:425;;;3463:10;;;;;;;3455:47;;;;-1:-1:-1;;;3455:47:13;;13914:2:14;3455:47:13;;;13896:21:14;13953:2;13933:18;;;13926:30;13992:26;13972:18;;;13965:54;14036:18;;3455:47:13;13712:348:14;3455:47:13;3554:22;:10;3569:6;3554:14;:22::i;:::-;3541:9;:35;;3533:67;;;;-1:-1:-1;;;3533:67:13;;19900:2:14;3533:67:13;;;19882:21:14;19939:2;19919:18;;;19912:30;-1:-1:-1;;;19958:18:14;;;19951:49;20017:18;;3533:67:13;19698:343:14;3533:67:13;3611:39;3617:10;693:1;3639:6;3611:39;;;;;;;;;;;;:5;:39::i;:::-;3674:11;;:23;;3690:6;3674:15;:23::i;:::-;3660:11;:37;-1:-1:-1;;;;2527:1177:13:o;469:108::-;;;;;;;:::i;1361:158::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;1432:11:13::1;::::0;;-1:-1:-1;;1417:26:13;::::1;1432:11;::::0;;::::1;1431:12;1417:26:::0;;::::1;::::0;;;1457:11;1453:60:::1;;;1484:10;:18:::0;;-1:-1:-1;;1484:18:13::1;::::0;;1361:158::o;1525:155::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;1594:10:13::1;::::0;;::::1;;::::0;;::::1;::::0;::::1;1593:11;1580:24:::0;::::1;-1:-1:-1::0;;1580:24:13;;::::1;::::0;;;::::1;::::0;;;;1618:10;::::1;;1614:60;;;1644:11;:19:::0;;-1:-1:-1;;1644:19:13::1;::::0;;1525:155::o;3529:389:2:-;-1:-1:-1;;;;;3729:20:2;;719:10:1;3729:20:2;;:60;;-1:-1:-1;3753:36:2;3770:4;719:10:1;3296:166:2;:::i;3753:36::-;3708:148;;;;-1:-1:-1;;;3708:148:2;;;;;;;:::i;:::-;3866:45;3884:4;3890:2;3894;3898:6;3906:4;3866:17;:45::i;1911:198:10:-;1101:6;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:10;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:10;;13507:2:14;1991:73:10::1;::::0;::::1;13489:21:14::0;13546:2;13526:18;;;13519:30;13585:34;13565:18;;;13558:62;-1:-1:-1;;;13636:18:14;;;13629:36;13682:19;;1991:73:10::1;13305:402:14::0;1991:73:10::1;2074:28;2093:8;2074:18;:28::i;392:310:3:-:0;-1:-1:-1;;;;;526:23:3;;719:10:1;526:23:3;;:66;;-1:-1:-1;553:39:3;570:7;719:10:1;3296:166:2;:::i;553:39:3:-;505:154;;;;-1:-1:-1;;;505:154:3;;;;;;;:::i;:::-;670:25;676:7;685:2;689:5;670;:25::i;6013:1045:2:-;6233:7;:14;6219:3;:10;:28;6211:81;;;;-1:-1:-1;;;6211:81:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;6310:16:2;;6302:66;;;;-1:-1:-1;;;6302:66:2;;;;;;;:::i;:::-;719:10:1;6379:16:2;6492:411;6516:3;:10;6512:1;:14;6492:411;;;6547:10;6560:3;6564:1;6560:6;;;;;;;;:::i;:::-;;;;;;;6547:19;;6580:14;6597:7;6605:1;6597:10;;;;;;;;:::i;:::-;;;;;;;;;;;;6622:19;6644:13;;;;;;;;;;-1:-1:-1;;;;;6644:19:2;;;;;;;;;;;;6597:10;;-1:-1:-1;6685:21:2;;;;6677:76;;;;-1:-1:-1;;;6677:76:2;;;;;;;:::i;:::-;6795:9;:13;;;;;;;;;;;-1:-1:-1;;;;;6795:19:2;;;;;;;;;;6817:20;;;6795:42;;6865:17;;;;;;;:27;;6817:20;;6795:9;6865:27;;6817:20;;6865:27;:::i;:::-;;;;;;;;6533:370;;;6528:3;;;;:::i;:::-;;;6492:411;;;;6948:2;-1:-1:-1;;;;;6918:47:2;6942:4;-1:-1:-1;;;;;6918:47:2;6932:8;-1:-1:-1;;;;;6918:47:2;;6952:3;6957:7;6918:47;;;;;;;:::i;:::-;;;;;;;;6976:75;7012:8;7022:4;7028:2;7032:3;7037:7;7046:4;6976:35;:75::i;:::-;6201:857;6013:1045;;;;;:::o;10193:630::-;-1:-1:-1;;;;;10315:18:2;;10307:66;;;;-1:-1:-1;;;10307:66:2;;;;;;;:::i;:::-;719:10:1;10426:102:2;719:10:1;10457:4:2;10384:16;10475:21;10493:2;10475:17;:21::i;:::-;10498:25;10516:6;10498:17;:25::i;:::-;-1:-1:-1;;10426:102:2;;;;;;;;;-1:-1:-1;10426:102:2;;-1:-1:-1;;;6013:1045:2;10426:102;10539:19;10561:13;;;;;;;;;;;-1:-1:-1;;;;;10561:19:2;;;;;;;;;;10598:21;;;;10590:70;;;;-1:-1:-1;;;10590:70:2;;;;;;;:::i;:::-;10694:9;:13;;;;;;;;;;;-1:-1:-1;;;;;10694:19:2;;;;;;;;;;;;10716:20;;;10694:42;;10762:54;;22033:25:14;;;22074:18;;;22067:34;;;10694:19:2;;10762:54;;;;;;22006:18:14;10762:54:2;;;;;;;10297:526;;10193:630;;;:::o;2741:96:11:-;2799:7;2825:5;2829:1;2825;:5;:::i;:::-;2818:12;2741:96;-1:-1:-1;;;2741:96:11:o;8340:553:2:-;-1:-1:-1;;;;;8487:16:2;;8479:62;;;;-1:-1:-1;;;8479:62:2;;21477:2:14;8479:62:2;;;21459:21:14;21516:2;21496:18;;;21489:30;21555:34;21535:18;;;21528:62;-1:-1:-1;;;21606:18:14;;;21599:31;21647:19;;8479:62:2;21275:397:14;8479:62:2;719:10:1;8594:102:2;719:10:1;8552:16:2;8637:2;8641:21;8659:2;8641:17;:21::i;:::-;8664:25;8682:6;8664:17;:25::i;8594:102::-;8707:9;:13;;;;;;;;;;;-1:-1:-1;;;;;8707:17:2;;;;;;;;;:27;;8728:6;;8707:9;:27;;8728:6;;8707:27;:::i;:::-;;;;-1:-1:-1;;8749:52:2;;;22033:25:14;;;22089:2;22074:18;;22067:34;;;-1:-1:-1;;;;;8749:52:2;;;;8782:1;;8749:52;;;;;;22006:18:14;8749:52:2;;;;;;;8812:74;8843:8;8861:1;8865:2;8869;8873:6;8881:4;8812:30;:74::i;11017:867::-;-1:-1:-1;;;;;11164:18:2;;11156:66;;;;-1:-1:-1;;;11156:66:2;;;;;;;:::i;:::-;11254:7;:14;11240:3;:10;:28;11232:81;;;;-1:-1:-1;;;11232:81:2;;;;;;;:::i;:::-;11366:66;;;;;;;;;11324:16;11366:66;;;;719:10:1;;11443:364:2;11467:3;:10;11463:1;:14;11443:364;;;11498:10;11511:3;11515:1;11511:6;;;;;;;;:::i;:::-;;;;;;;11498:19;;11531:14;11548:7;11556:1;11548:10;;;;;;;;:::i;:::-;;;;;;;;;;;;11573:19;11595:13;;;;;;;;;;-1:-1:-1;;;;;11595:19:2;;;;;;;;;;;;11548:10;;-1:-1:-1;11636:21:2;;;;11628:70;;;;-1:-1:-1;;;11628:70:2;;;;;;;:::i;:::-;11740:9;:13;;;;;;;;;;;-1:-1:-1;;;;;11740:19:2;;;;;;;;;;11762:20;;11740:42;;11479:3;;;;:::i;:::-;;;;11443:364;;;;11860:1;-1:-1:-1;;;;;11822:55:2;11846:4;-1:-1:-1;;;;;11822:55:2;11836:8;-1:-1:-1;;;;;11822:55:2;;11864:3;11869:7;11822:55;;;;;;;:::i;:::-;;;;;;;;11146:738;11017:867;;;:::o;2263:187:10:-;2355:6;;;-1:-1:-1;;;;;2371:17:10;;;-1:-1:-1;;;;;;2371:17:10;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;12019:323:2:-;12169:8;-1:-1:-1;;;;;12160:17:2;:5;-1:-1:-1;;;;;12160:17:2;;;12152:71;;;;-1:-1:-1;;;12152:71:2;;20248:2:14;12152:71:2;;;20230:21:14;20287:2;20267:18;;;20260:30;20326:34;20306:18;;;20299:62;-1:-1:-1;;;20377:18:14;;;20370:39;20426:19;;12152:71:2;20046:405:14;12152:71:2;-1:-1:-1;;;;;12233:25:2;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;12233:46:2;;;;;;;;;;12294:41;;11787::14;;;12294::2;;11760:18:14;12294:41:2;;;;;;;12019:323;;;:::o;847:184:9:-;968:4;1020;991:25;1004:5;1011:4;991:12;:25::i;:::-;:33;;847:184;-1:-1:-1;;;;847:184:9:o;3451:96:11:-;3509:7;3535:5;3539:1;3535;:5;:::i;4870:797:2:-;-1:-1:-1;;;;;5051:16:2;;5043:66;;;;-1:-1:-1;;;5043:66:2;;;;;;;:::i;:::-;719:10:1;5162:96:2;719:10:1;5193:4:2;5199:2;5203:21;5221:2;5203:17;:21::i;5162:96::-;5269:19;5291:13;;;;;;;;;;;-1:-1:-1;;;;;5291:19:2;;;;;;;;;;5328:21;;;;5320:76;;;;-1:-1:-1;;;5320:76:2;;;;;;;:::i;:::-;5430:9;:13;;;;;;;;;;;-1:-1:-1;;;;;5430:19:2;;;;;;;;;;5452:20;;;5430:42;;5492:17;;;;;;;:27;;5452:20;;5430:9;5492:27;;5452:20;;5492:27;:::i;:::-;;;;-1:-1:-1;;5535:46:2;;;22033:25:14;;;22089:2;22074:18;;22067:34;;;-1:-1:-1;;;;;5535:46:2;;;;;;;;;;;;;;22006:18:14;5535:46:2;;;;;;;5592:68;5623:8;5633:4;5639:2;5643;5647:6;5655:4;5592:30;:68::i;:::-;5033:634;;4870:797;;;;;:::o;14227:792::-;-1:-1:-1;;;;;14459:13:2;;1087:20:0;1133:8;14455:558:2;;14494:79;;-1:-1:-1;;;14494:79:2;;-1:-1:-1;;;;;14494:43:2;;;;;:79;;14538:8;;14548:4;;14554:3;;14559:7;;14568:4;;14494:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14494:79:2;;;;;;;;-1:-1:-1;;14494:79:2;;;;;;;;;;;;:::i;:::-;;;14490:513;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;14879:6;14872:14;;-1:-1:-1;;;14872:14:2;;;;;;;;:::i;14490:513::-;;;14926:62;;-1:-1:-1;;;14926:62:2;;12265:2:14;14926:62:2;;;12247:21:14;12304:2;12284:18;;;12277:30;12343:34;12323:18;;;12316:62;-1:-1:-1;;;12394:18:14;;;12387:50;12454:19;;14926:62:2;12063:416:14;14490:513:2;-1:-1:-1;;;;;;14652:60:2;;-1:-1:-1;;;14652:60:2;14648:157;;14736:50;;-1:-1:-1;;;14736:50:2;;;;;;;:::i;15025:193::-;15144:16;;;15158:1;15144:16;;;;;;;;;15091;;15119:22;;15144:16;;;;;;;;;;;;-1:-1:-1;15144:16:2;15119:41;;15181:7;15170:5;15176:1;15170:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;15206:5;15025:193;-1:-1:-1;;15025:193:2:o;13496:725::-;-1:-1:-1;;;;;13703:13:2;;1087:20:0;1133:8;13699:516:2;;13738:72;;-1:-1:-1;;;13738:72:2;;-1:-1:-1;;;;;13738:38:2;;;;;:72;;13777:8;;13787:4;;13793:2;;13797:6;;13805:4;;13738:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13738:72:2;;;;;;;;-1:-1:-1;;13738:72:2;;;;;;;;;;;;:::i;:::-;;;13734:471;;;;:::i;:::-;-1:-1:-1;;;;;;13859:55:2;;-1:-1:-1;;;13859:55:2;13855:152;;13938:50;;-1:-1:-1;;;13938:50:2;;;;;;;:::i;1383:688:9:-;1466:7;1508:4;1466:7;1522:514;1546:5;:12;1542:1;:16;1522:514;;;1579:20;1602:5;1608:1;1602:8;;;;;;;;:::i;:::-;;;;;;;1579:31;;1644:12;1628;:28;1624:402;;1779:44;;;;;;9212:19:14;;;9247:12;;;9240:28;;;9284:12;;1779:44:9;;;;;;;;;;;;1769:55;;;;;;1754:70;;1624:402;;;1966:44;;;;;;9212:19:14;;;9247:12;;;9240:28;;;9284:12;;1966:44:9;;;;;;;;;;;;1956:55;;;;;;1941:70;;1624:402;-1:-1:-1;1560:3:9;;;;:::i;:::-;;;;1522:514;;14:173:14;82:20;;-1:-1:-1;;;;;131:31:14;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:735::-;246:5;299:3;292:4;284:6;280:17;276:27;266:55;;317:1;314;307:12;266:55;353:6;340:20;379:4;402:43;442:2;402:43;:::i;:::-;474:2;468:9;486:31;514:2;506:6;486:31;:::i;:::-;552:18;;;586:15;;;;-1:-1:-1;621:15:14;;;671:1;667:10;;;655:23;;651:32;;648:41;-1:-1:-1;645:61:14;;;702:1;699;692:12;645:61;724:1;734:163;748:2;745:1;742:9;734:163;;;805:17;;793:30;;843:12;;;;875;;;;766:1;759:9;734:163;;;-1:-1:-1;915:6:14;;192:735;-1:-1:-1;;;;;;;192:735:14:o;932:555::-;974:5;1027:3;1020:4;1012:6;1008:17;1004:27;994:55;;1045:1;1042;1035:12;994:55;1081:6;1068:20;1107:18;1103:2;1100:26;1097:52;;;1129:18;;:::i;:::-;1178:2;1172:9;1190:67;1245:2;1226:13;;-1:-1:-1;;1222:27:14;1251:4;1218:38;1172:9;1190:67;:::i;:::-;1281:2;1273:6;1266:18;1327:3;1320:4;1315:2;1307:6;1303:15;1299:26;1296:35;1293:55;;;1344:1;1341;1334:12;1293:55;1408:2;1401:4;1393:6;1389:17;1382:4;1374:6;1370:17;1357:54;1455:1;1431:15;;;1448:4;1427:26;1420:37;;;;1435:6;932:555;-1:-1:-1;;;932:555:14:o;1492:186::-;1551:6;1604:2;1592:9;1583:7;1579:23;1575:32;1572:52;;;1620:1;1617;1610:12;1572:52;1643:29;1662:9;1643:29;:::i;1683:260::-;1751:6;1759;1812:2;1800:9;1791:7;1787:23;1783:32;1780:52;;;1828:1;1825;1818:12;1780:52;1851:29;1870:9;1851:29;:::i;:::-;1841:39;;1899:38;1933:2;1922:9;1918:18;1899:38;:::i;:::-;1889:48;;1683:260;;;;;:::o;1948:943::-;2102:6;2110;2118;2126;2134;2187:3;2175:9;2166:7;2162:23;2158:33;2155:53;;;2204:1;2201;2194:12;2155:53;2227:29;2246:9;2227:29;:::i;:::-;2217:39;;2275:38;2309:2;2298:9;2294:18;2275:38;:::i;:::-;2265:48;;2364:2;2353:9;2349:18;2336:32;2387:18;2428:2;2420:6;2417:14;2414:34;;;2444:1;2441;2434:12;2414:34;2467:61;2520:7;2511:6;2500:9;2496:22;2467:61;:::i;:::-;2457:71;;2581:2;2570:9;2566:18;2553:32;2537:48;;2610:2;2600:8;2597:16;2594:36;;;2626:1;2623;2616:12;2594:36;2649:63;2704:7;2693:8;2682:9;2678:24;2649:63;:::i;:::-;2639:73;;2765:3;2754:9;2750:19;2737:33;2721:49;;2795:2;2785:8;2782:16;2779:36;;;2811:1;2808;2801:12;2779:36;;2834:51;2877:7;2866:8;2855:9;2851:24;2834:51;:::i;:::-;2824:61;;;1948:943;;;;;;;;:::o;2896:606::-;3000:6;3008;3016;3024;3032;3085:3;3073:9;3064:7;3060:23;3056:33;3053:53;;;3102:1;3099;3092:12;3053:53;3125:29;3144:9;3125:29;:::i;:::-;3115:39;;3173:38;3207:2;3196:9;3192:18;3173:38;:::i;:::-;3163:48;;3258:2;3247:9;3243:18;3230:32;3220:42;;3309:2;3298:9;3294:18;3281:32;3271:42;;3364:3;3353:9;3349:19;3336:33;3392:18;3384:6;3381:30;3378:50;;;3424:1;3421;3414:12;3378:50;3447:49;3488:7;3479:6;3468:9;3464:22;3447:49;:::i;3507:669::-;3634:6;3642;3650;3703:2;3691:9;3682:7;3678:23;3674:32;3671:52;;;3719:1;3716;3709:12;3671:52;3742:29;3761:9;3742:29;:::i;:::-;3732:39;;3822:2;3811:9;3807:18;3794:32;3845:18;3886:2;3878:6;3875:14;3872:34;;;3902:1;3899;3892:12;3872:34;3925:61;3978:7;3969:6;3958:9;3954:22;3925:61;:::i;:::-;3915:71;;4039:2;4028:9;4024:18;4011:32;3995:48;;4068:2;4058:8;4055:16;4052:36;;;4084:1;4081;4074:12;4052:36;;4107:63;4162:7;4151:8;4140:9;4136:24;4107:63;:::i;:::-;4097:73;;;3507:669;;;;;:::o;4181:347::-;4246:6;4254;4307:2;4295:9;4286:7;4282:23;4278:32;4275:52;;;4323:1;4320;4313:12;4275:52;4346:29;4365:9;4346:29;:::i;:::-;4336:39;;4425:2;4414:9;4410:18;4397:32;4472:5;4465:13;4458:21;4451:5;4448:32;4438:60;;4494:1;4491;4484:12;4438:60;4517:5;4507:15;;;4181:347;;;;;:::o;4533:254::-;4601:6;4609;4662:2;4650:9;4641:7;4637:23;4633:32;4630:52;;;4678:1;4675;4668:12;4630:52;4701:29;4720:9;4701:29;:::i;:::-;4691:39;4777:2;4762:18;;;;4749:32;;-1:-1:-1;;;4533:254:14:o;4792:322::-;4869:6;4877;4885;4938:2;4926:9;4917:7;4913:23;4909:32;4906:52;;;4954:1;4951;4944:12;4906:52;4977:29;4996:9;4977:29;:::i;:::-;4967:39;5053:2;5038:18;;5025:32;;-1:-1:-1;5104:2:14;5089:18;;;5076:32;;4792:322;-1:-1:-1;;;4792:322:14:o;5119:1219::-;5237:6;5245;5298:2;5286:9;5277:7;5273:23;5269:32;5266:52;;;5314:1;5311;5304:12;5266:52;5354:9;5341:23;5383:18;5424:2;5416:6;5413:14;5410:34;;;5440:1;5437;5430:12;5410:34;5478:6;5467:9;5463:22;5453:32;;5523:7;5516:4;5512:2;5508:13;5504:27;5494:55;;5545:1;5542;5535:12;5494:55;5581:2;5568:16;5603:4;5626:43;5666:2;5626:43;:::i;:::-;5698:2;5692:9;5710:31;5738:2;5730:6;5710:31;:::i;:::-;5776:18;;;5810:15;;;;-1:-1:-1;5845:11:14;;;5887:1;5883:10;;;5875:19;;5871:28;;5868:41;-1:-1:-1;5865:61:14;;;5922:1;5919;5912:12;5865:61;5944:1;5935:10;;5954:169;5968:2;5965:1;5962:9;5954:169;;;6025:23;6044:3;6025:23;:::i;:::-;6013:36;;5986:1;5979:9;;;;;6069:12;;;;6101;;5954:169;;;-1:-1:-1;6142:6:14;-1:-1:-1;;6186:18:14;;6173:32;;-1:-1:-1;;6217:16:14;;;6214:36;;;6246:1;6243;6236:12;6214:36;;6269:63;6324:7;6313:8;6302:9;6298:24;6269:63;:::i;:::-;6259:73;;;5119:1219;;;;;:::o;6343:180::-;6402:6;6455:2;6443:9;6434:7;6430:23;6426:32;6423:52;;;6471:1;6468;6461:12;6423:52;-1:-1:-1;6494:23:14;;6343:180;-1:-1:-1;6343:180:14:o;6528:245::-;6586:6;6639:2;6627:9;6618:7;6614:23;6610:32;6607:52;;;6655:1;6652;6645:12;6607:52;6694:9;6681:23;6713:30;6737:5;6713:30;:::i;6778:249::-;6847:6;6900:2;6888:9;6879:7;6875:23;6871:32;6868:52;;;6916:1;6913;6906:12;6868:52;6948:9;6942:16;6967:30;6991:5;6967:30;:::i;7217:683::-;7312:6;7320;7328;7381:2;7369:9;7360:7;7356:23;7352:32;7349:52;;;7397:1;7394;7387:12;7349:52;7433:9;7420:23;7410:33;;7494:2;7483:9;7479:18;7466:32;7517:18;7558:2;7550:6;7547:14;7544:34;;;7574:1;7571;7564:12;7544:34;7612:6;7601:9;7597:22;7587:32;;7657:7;7650:4;7646:2;7642:13;7638:27;7628:55;;7679:1;7676;7669:12;7628:55;7719:2;7706:16;7745:2;7737:6;7734:14;7731:34;;;7761:1;7758;7751:12;7731:34;7814:7;7809:2;7799:6;7796:1;7792:14;7788:2;7784:23;7780:32;7777:45;7774:65;;;7835:1;7832;7825:12;7774:65;7866:2;7862;7858:11;7848:21;;7888:6;7878:16;;;;;7217:683;;;;;:::o;7905:435::-;7958:3;7996:5;7990:12;8023:6;8018:3;8011:19;8049:4;8078:2;8073:3;8069:12;8062:19;;8115:2;8108:5;8104:14;8136:1;8146:169;8160:6;8157:1;8154:13;8146:169;;;8221:13;;8209:26;;8255:12;;;;8290:15;;;;8182:1;8175:9;8146:169;;;-1:-1:-1;8331:3:14;;7905:435;-1:-1:-1;;;;;7905:435:14:o;8345:471::-;8386:3;8424:5;8418:12;8451:6;8446:3;8439:19;8476:1;8486:162;8500:6;8497:1;8494:13;8486:162;;;8562:4;8618:13;;;8614:22;;8608:29;8590:11;;;8586:20;;8579:59;8515:12;8486:162;;;8666:6;8663:1;8660:13;8657:87;;;8732:1;8725:4;8716:6;8711:3;8707:16;8703:27;8696:38;8657:87;-1:-1:-1;8798:2:14;8777:15;-1:-1:-1;;8773:29:14;8764:39;;;;8805:4;8760:50;;8345:471;-1:-1:-1;;8345:471:14:o;9515:826::-;-1:-1:-1;;;;;9912:15:14;;;9894:34;;9964:15;;9959:2;9944:18;;9937:43;9874:3;10011:2;9996:18;;9989:31;;;9837:4;;10043:57;;10080:19;;10072:6;10043:57;:::i;:::-;10148:9;10140:6;10136:22;10131:2;10120:9;10116:18;10109:50;10182:44;10219:6;10211;10182:44;:::i;:::-;10168:58;;10275:9;10267:6;10263:22;10257:3;10246:9;10242:19;10235:51;10303:32;10328:6;10320;10303:32;:::i;:::-;10295:40;9515:826;-1:-1:-1;;;;;;;;9515:826:14:o;10346:560::-;-1:-1:-1;;;;;10643:15:14;;;10625:34;;10695:15;;10690:2;10675:18;;10668:43;10742:2;10727:18;;10720:34;;;10785:2;10770:18;;10763:34;;;10605:3;10828;10813:19;;10806:32;;;10568:4;;10855:45;;10880:19;;10872:6;10855:45;:::i;:::-;10847:53;10346:560;-1:-1:-1;;;;;;;10346:560:14:o;10911:261::-;11090:2;11079:9;11072:21;11053:4;11110:56;11162:2;11151:9;11147:18;11139:6;11110:56;:::i;11177:465::-;11434:2;11423:9;11416:21;11397:4;11460:56;11512:2;11501:9;11497:18;11489:6;11460:56;:::i;:::-;11564:9;11556:6;11552:22;11547:2;11536:9;11532:18;11525:50;11592:44;11629:6;11621;11592:44;:::i;:::-;11584:52;11177:465;-1:-1:-1;;;;;11177:465:14:o;11839:219::-;11988:2;11977:9;11970:21;11951:4;12008:44;12048:2;12037:9;12033:18;12025:6;12008:44;:::i;12484:404::-;12686:2;12668:21;;;12725:2;12705:18;;;12698:30;12764:34;12759:2;12744:18;;12737:62;-1:-1:-1;;;12830:2:14;12815:18;;12808:38;12878:3;12863:19;;12484:404::o;14422:400::-;14624:2;14606:21;;;14663:2;14643:18;;;14636:30;14702:34;14697:2;14682:18;;14675:62;-1:-1:-1;;;14768:2:14;14753:18;;14746:34;14812:3;14797:19;;14422:400::o;14827:405::-;15029:2;15011:21;;;15068:2;15048:18;;;15041:30;15107:34;15102:2;15087:18;;15080:62;-1:-1:-1;;;15173:2:14;15158:18;;15151:39;15222:3;15207:19;;14827:405::o;16634:401::-;16836:2;16818:21;;;16875:2;16855:18;;;16848:30;16914:34;16909:2;16894:18;;16887:62;-1:-1:-1;;;16980:2:14;16965:18;;16958:35;17025:3;17010:19;;16634:401::o;17459:399::-;17661:2;17643:21;;;17700:2;17680:18;;;17673:30;17739:34;17734:2;17719:18;;17712:62;-1:-1:-1;;;17805:2:14;17790:18;;17783:33;17848:3;17833:19;;17459:399::o;17863:406::-;18065:2;18047:21;;;18104:2;18084:18;;;18077:30;18143:34;18138:2;18123:18;;18116:62;-1:-1:-1;;;18209:2:14;18194:18;;18187:40;18259:3;18244:19;;17863:406::o;18626:356::-;18828:2;18810:21;;;18847:18;;;18840:30;18906:34;18901:2;18886:18;;18879:62;18973:2;18958:18;;18626:356::o;20866:404::-;21068:2;21050:21;;;21107:2;21087:18;;;21080:30;21146:34;21141:2;21126:18;;21119:62;-1:-1:-1;;;21212:2:14;21197:18;;21190:38;21260:3;21245:19;;20866:404::o;22112:183::-;22172:4;22205:18;22197:6;22194:30;22191:56;;;22227:18;;:::i;:::-;-1:-1:-1;22272:1:14;22268:14;22284:4;22264:25;;22112:183::o;22300:128::-;22340:3;22371:1;22367:6;22364:1;22361:13;22358:39;;;22377:18;;:::i;:::-;-1:-1:-1;22413:9:14;;22300:128::o;22433:168::-;22473:7;22539:1;22535;22531:6;22527:14;22524:1;22521:21;22516:1;22509:9;22502:17;22498:45;22495:71;;;22546:18;;:::i;:::-;-1:-1:-1;22586:9:14;;22433:168::o;22606:380::-;22685:1;22681:12;;;;22728;;;22749:61;;22803:4;22795:6;22791:17;22781:27;;22749:61;22856:2;22848:6;22845:14;22825:18;22822:38;22819:161;;;22902:10;22897:3;22893:20;22890:1;22883:31;22937:4;22934:1;22927:15;22965:4;22962:1;22955:15;22819:161;;22606:380;;;:::o;22991:249::-;23101:2;23082:13;;-1:-1:-1;;23078:27:14;23066:40;;23136:18;23121:34;;23157:22;;;23118:62;23115:88;;;23183:18;;:::i;:::-;23219:2;23212:22;-1:-1:-1;;22991:249:14:o;23245:135::-;23284:3;-1:-1:-1;;23305:17:14;;23302:43;;;23325:18;;:::i;:::-;-1:-1:-1;23372:1:14;23361:13;;23245:135::o;23385:127::-;23446:10;23441:3;23437:20;23434:1;23427:31;23477:4;23474:1;23467:15;23501:4;23498:1;23491:15;23517:127;23578:10;23573:3;23569:20;23566:1;23559:31;23609:4;23606:1;23599:15;23633:4;23630:1;23623:15;23649:127;23710:10;23705:3;23701:20;23698:1;23691:31;23741:4;23738:1;23731:15;23765:4;23762:1;23755:15;23781:179;23816:3;23858:1;23840:16;23837:23;23834:120;;;23904:1;23901;23898;23883:23;-1:-1:-1;23941:1:14;23935:8;23930:3;23926:18;23834:120;23781:179;:::o;23965:671::-;24004:3;24046:4;24028:16;24025:26;24022:39;;;23965:671;:::o;24022:39::-;24088:2;24082:9;-1:-1:-1;;24153:16:14;24149:25;;24146:1;24082:9;24125:50;24204:4;24198:11;24228:16;24263:18;24334:2;24327:4;24319:6;24315:17;24312:25;24307:2;24299:6;24296:14;24293:45;24290:58;;;24341:5;;;;;23965:671;:::o;24290:58::-;24378:6;24372:4;24368:17;24357:28;;24414:3;24408:10;24441:2;24433:6;24430:14;24427:27;;;24447:5;;;;;;23965:671;:::o;24427:27::-;24531:2;24512:16;24506:4;24502:27;24498:36;24491:4;24482:6;24477:3;24473:16;24469:27;24466:69;24463:82;;;24538:5;;;;;;23965:671;:::o;24463:82::-;24554:57;24605:4;24596:6;24588;24584:19;24580:30;24574:4;24554:57;:::i;:::-;-1:-1:-1;24627:3:14;;23965:671;-1:-1:-1;;;;;23965:671:14:o;24641:131::-;-1:-1:-1;;;;;;24715:32:14;;24705:43;;24695:71;;24762:1;24759;24752:12

Swarm Source

ipfs://2cf295ff23a1d9cb6958d47030c3e8280004116704568d77432248b12c8b3bfb
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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