POL Price: $0.189597 (+0.42%)
Gas: 30 GWei
 

Overview

Max Total Supply

118,206

Holders

62,069

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0x0F658C1E8b21Fc052Ca1807238AF1D44F7Ab05F5
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
ArtOfGenerosity

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity Multiple files format)

File 2 of 19: ArtOfGenerosity.sol
// SPDX-License-Identifier: GPL-3.0
// ----------    Art of Generosity   -----------

pragma solidity 0.8.10;

import "./ERC1155.sol";
import "./IERC721.sol";
import "./IERC1155.sol";
import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./ERC721Enumerable.sol";
import "./ERC721.sol";

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

/**
 * https://github.com/maticnetwork/pos-portal/blob/master/contracts/common/Initializable.sol
 */
contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

/**
 * https://github.com/maticnetwork/pos-portal/blob/master/contracts/common/EIP712Base.sol
 */
contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contractsa that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

/**
 * https://github.com/maticnetwork/pos-portal/blob/master/contracts/common/NativeMetaTransaction.sol
 */
contract NativeMetaTransaction is EIP712Base {
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress] + 1;

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

contract ArtOfGenerosity is ERC1155, ContextMixin, NativeMetaTransaction, Ownable, ReentrancyGuard {
	using Strings for uint256;

    uint256 public constant GOLDEN_TICKET_ID = 13;

    uint256 public currentTokenID = 12;

	address public minter;
	address public airdropMinter;
	bool public isMintingEnabled = true;

	string private _baseTokenURI = "https://generositynft.com:1337/artofgenerosity/opensea/";
	string private _contractURI = "https://generositynft.com:1337/artofgenerosity/opensea/";

	event CustomAction(uint256 nftID, uint256 value, uint256 actionID, string payload);
	string public name;

	constructor() ERC1155(_baseTokenURI) {
		name = "Art of Generosity";
		_initializeEIP712(name);
		minter = msg.sender;
		airdropMinter = msg.sender;
	}

    address[] internal _burners;
    uint256[] internal _burntTokenIds;
    uint256[] internal _burntTokenAmounts;
    address[] internal _owners;
    mapping(address => bool) public addressIsAnOwner;
	mapping(uint256 => bool) public tokenIdBurnEnabled;
	mapping(uint256 => uint256) public tokenIdTotalSupply;

	function totalSupply() public view virtual returns (uint256) {
		uint256 total = 0;
        for(uint256 tokenId = 0; tokenId <= currentTokenID; tokenId++) {
            total += tokenIdTotalSupply[tokenId];
        }
		return total;
    }

	function totalSupplyForTokenId(uint256 tokenId) public view virtual returns (uint256) {
		return tokenIdTotalSupply[tokenId];
    }

    // returns current owners
    function getOwners() external view returns (address[] memory) {
        return _owners;
    }

    function getBurners() external view returns (address[] memory) {
        return _burners;
    }

    function getBurntTokenIds() external view returns (uint256[] memory) {
        return _burntTokenIds;
    }

    function getBurntTokenAmounts() external view returns (uint256[] memory) {
        return _burntTokenAmounts;
    }

    function setCurrentTokenId(uint256 newCurrentTokenID) public onlyOwner {
		currentTokenID = newCurrentTokenID;
	}

    function addressIsOwner(address addr) public view returns (bool) {
        return addressIsAnOwner[addr];
    }

	function tokenBalancesByAddress(address addr) public view returns(uint256[] memory) {
		uint256[] memory tokenBals = new uint256[](currentTokenID + 1);
		for(uint256 tokenId = 0; tokenId <= currentTokenID; tokenId++) {
			tokenBals[tokenId] = balanceOf(addr, tokenId);
		}
		return tokenBals;
	}

	function tokenOwnershipsByAddress(address addr) public view returns(bool[] memory) {
		bool[] memory tokenOwnerships = new bool[](currentTokenID + 1);
		for(uint256 tokenId = 0; tokenId <= currentTokenID; tokenId++) {
			tokenOwnerships[tokenId] = balanceOf(addr, tokenId) > 0;
		}
		return tokenOwnerships;
	}

	function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(msg.sender == minter, "only minter account can call this");
		for(uint256 i = 0; i < ids.length; i++) {
			require(ids[i] == GOLDEN_TICKET_ID, "only golden ticket nfts can be burnt");
			tokenIdTotalSupply[ids[i]] -= values[i];
		}
		_burnBatch(account, ids, values);
	}

    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(msg.sender == minter, "only minter account can call this");
        require(id == GOLDEN_TICKET_ID, "only golden ticket nfts can be burnt");
        _burn(account, id, value);
        tokenIdTotalSupply[id] -= value;
    }

	// airdrops NFTs to recipients
	function airdrop(
		address[] memory receivers,
		uint256[] memory quantities,
		uint256[] memory tokenIds,
		bytes[] memory datas // "0x"
	) external {
		require(receivers.length == quantities.length, "arrays should be equal");
		require(receivers.length == tokenIds.length, "arrays should be equal 2");
		require(msg.sender == minter || msg.sender == airdropMinter, "only minter account can call this");
		require(isMintingEnabled == true, "minting disabled");
		for (uint256 i = 0; i < receivers.length; i++) {
			_mint(receivers[i], tokenIds[i], quantities[i], datas[i]);
		}
	}

	function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual override {
		require(id <= currentTokenID, "token id does not exist");
		super._mint(to, id, amount, data);
		tokenIdTotalSupply[id] += amount;
        if(!addressIsAnOwner[to]) {
            _owners.push(to);
            addressIsAnOwner[to] = true;
        }
	}

    // transfers NFTs
	function transferMany(
		address[] memory receivers,
		uint256[] memory quantities,
		uint256[] memory tokenIds,
		bytes[] memory datas // "0x0"
	) external {
		require(receivers.length == quantities.length, "arrays should be equal");
		require(receivers.length == tokenIds.length, "arrays should be equal 2");
		require(msg.sender == minter, "only minter account can call this");
		for (uint256 i = 0; i < receivers.length; i++) {
            address receiver = receivers[i];
            uint256 tokenId = tokenIds[i];
            uint256 quantity = quantities[i];
            _safeTransferFrom(msg.sender, receiver, tokenId, quantity, datas[i]);
		}
	}

	function customAction(
		uint256 tokenId,
		uint256 id,
		string memory what
	) external payable {
		require(balanceOf(msg.sender, tokenId) > 0, "NFT ownership required");
        require(tokenId <= currentTokenID, "token id does not exist");
		emit CustomAction(tokenId, msg.value, id, what);
	}

    function getTotalBalance(address addr) public view returns(uint256) {
        uint256 totalBal = 0;
        for(uint256 tokenId = 0; tokenId <= currentTokenID; tokenId++) {
            totalBal += balanceOf(addr, tokenId);
        }
        return totalBal;
    }

	function uri(uint256 tokenId) public view override returns (string memory) {
		return string(abi.encodePacked(_baseTokenURI, uint2str(tokenId)));
	}

	function tokenURI(uint256 tokenId) public view virtual returns (string memory) {
    	return string(abi.encodePacked(_baseTokenURI, uint2str(tokenId)));
    }

	//sets the minter address
	function setMinter(address _newMinter) public onlyOwner {
		minter = _newMinter;
	}

    //sets the airdrop minter address
	function setAirdropMinter(address _newMinter) public onlyOwner {
		airdropMinter = _newMinter;
	}

	function toggleMinting(bool _enabled) public onlyOwner {
		isMintingEnabled = _enabled;
	}

	function contractURI() public view returns (string memory) {
		return _contractURI;
	}

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

	function setBaseURI(string memory newBaseURI) public onlyOwner {
		_baseTokenURI = newBaseURI;
	}

	function setContractURI(string memory newuri) public onlyOwner {
		_contractURI = newuri;
	}

	function uint2str(uint256 _i) internal pure returns (string memory _uintAsString) {
		if (_i == 0) {
			return "0";
		}
		uint256 j = _i;
		uint256 len;
		while (j != 0) {
			len++;
			j /= 10;
		}
		bytes memory bstr = new bytes(len);
		uint256 k = len;
		while (_i != 0) {
			k = k - 1;
			uint8 temp = (48 + uint8(_i - (_i / 10) * 10));
			bytes1 b1 = bytes1(temp);
			bstr[k] = b1;
			_i /= 10;
		}
		return string(bstr);
	}

    function removeAddressFromOwners(address addr) internal {
        for (uint256 i; i < _owners.length; i++) {
            if (_owners[i] == addr) {
                _owners[i] = _owners[_owners.length - 1];
                _owners.pop();
                addressIsAnOwner[addr] = false;
                break;
            }
        }
    }

    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        // add recipient to list of owners
        if(to != address(0) && !addressIsAnOwner[to]) {
            _owners.push(to);
            addressIsAnOwner[to] = true;
        }
        // sent to the 0 address (burnt)
        if(to == address(0)) {
            for(uint256 i = 0; i < amounts.length; i++) {
                uint256 id = ids[i];
                uint256 amt = amounts[i];
                _burners.push(from);
                _burntTokenIds.push(id);
                _burntTokenAmounts.push(amt);
            }
        }
        // remove sender if they are no longer a holder
        if(from != address(0) && getTotalBalance(from) == 0) {
            removeAddressFromOwners(from);
        }
        super._afterTokenTransfer(operator, from, to, ids, amounts, data);
    }

	/**
   * Override isApprovedForAll to auto-approve OS's proxy contract
   */
    function isApprovedForAll(
        address _owner,
        address _operator
    ) public override view returns (bool isOperator) {
        // if OpenSea's ERC1155 Proxy Address is detected, auto-return true
       if (_operator == address(0x207Fa8Df3a17D96Ca7EA4f2893fcdCb78a304101)) {
            return true;
        }
        // otherwise, use the default ERC1155.isApprovedForAll()
        return ERC1155.isApprovedForAll(_owner, _operator);
    }

	/**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender()
        internal
        override
        view
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }
}

File 1 of 19: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 4 of 19: ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits 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 {}

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

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

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

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

        return array;
    }
}

File 5 of 19: 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 19: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 19: 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 9 of 19: 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 10 of 19: IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

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

File 11 of 19: 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 12 of 19: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 15 of 19: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 16 of 19: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

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

File 17 of 19: 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 18 of 19: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 19 of 19: 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

API
[{"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":false,"internalType":"uint256","name":"nftID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"actionID","type":"uint256"},{"indexed":false,"internalType":"string","name":"payload","type":"string"}],"name":"CustomAction","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GOLDEN_TICKET_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressIsAnOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addressIsOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"bytes[]","name":"datas","type":"bytes[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airdropMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"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":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTokenID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"what","type":"string"}],"name":"customAction","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getBurners","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBurntTokenAmounts","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBurntTokenIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwners","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getTotalBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":"_newMinter","type":"address"}],"name":"setAirdropMinter","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":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCurrentTokenID","type":"uint256"}],"name":"setCurrentTokenId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newMinter","type":"address"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"tokenBalancesByAddress","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIdBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIdTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"tokenOwnershipsByAddress","outputs":[{"internalType":"bool[]","name":"","type":"bool[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"totalSupplyForTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"bytes[]","name":"datas","type":"bytes[]"}],"name":"transferMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6003805460ff19169055600c600855600a805460ff60a01b1916600160a01b17905560e0604052603760808181529062004f4d60a03980516200004b91600b9160209091019062000436565b5060405180606001604052806037815260200162004f4d6037913980516200007c91600c9160209091019062000436565b503480156200008a57600080fd5b50600b80546200009a90620004dc565b80601f0160208091040260200160405190810160405280929190818152602001828054620000c890620004dc565b8015620001195780601f10620000ed5761010080835404028352916020019162000119565b820191906000526020600020905b815481529060010190602001808311620000fb57829003601f168201915b50505050506200012f816200024a60201b60201c565b50620001446200013e62000263565b6200027f565b600160075560408051808201909152601180825270417274206f662047656e65726f7369747960781b60209092019182526200018391600d9162000436565b5062000222600d80546200019790620004dc565b80601f0160208091040260200160405190810160405280929190818152602001828054620001c590620004dc565b8015620002165780601f10620001ea5761010080835404028352916020019162000216565b820191906000526020600020905b815481529060010190602001808311620001f857829003601f168201915b5050620002d192505050565b60098054336001600160a01b03199182168117909255600a8054909116909117905562000519565b80516200025f90600290602084019062000436565b5050565b60006200027a6200033560201b6200225a1760201c565b905090565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60035460ff16156200031a5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b620003258162000394565b506003805460ff19166001179055565b6000333014156200038e57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620003919050565b50335b90565b6040518060800160405280604f815260200162004efe604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600455565b8280546200044490620004dc565b90600052602060002090601f016020900481019282620004685760008555620004b3565b82601f106200048357805160ff1916838001178555620004b3565b82800160010185558215620004b3579182015b82811115620004b357825182559160200191906001019062000496565b50620004c1929150620004c5565b5090565b5b80821115620004c15760008155600101620004c6565b600181811c90821680620004f157607f821691505b602082108114156200051357634e487b7160e01b600052602260045260246000fd5b50919050565b6149d580620005296000396000f3fe60806040526004361061031d5760003560e01c80637837a8a5116101a5578063b0734b57116100ec578063e8a3d48511610095578063f2fde38b1161006f578063f2fde38b14610918578063f5298aca14610938578063fafcbca414610958578063fca3b5aa1461096b57600080fd5b8063e8a3d485146108c3578063e985e9c5146108d8578063f242432a146108f857600080fd5b8063cea65e97116100c6578063cea65e9714610855578063d3d381931461088e578063e086e5ec146108ae57600080fd5b8063b0734b571461081f578063bb62115e1461083f578063c87b56dd146103f257600080fd5b8063938e3d7b1161014e578063a0e67e2b11610128578063a0e67e2b146107d5578063a137be77146107ea578063a22cb465146107ff57600080fd5b8063938e3d7b146107655780639a35edce14610785578063a0c09cb7146107a557600080fd5b80638329de2f1161017f5780638329de2f1461070557806386fe8b43146107255780638da5cb5b1461074757600080fd5b80637837a8a5146106965780638022e3cd146106ab578063816f21b9146106d857600080fd5b80632eb2c2d61161026957806355f804b3116102125780636b20c454116101ec5780636b20c454146106415780636c1d294814610661578063715018a61461068157600080fd5b806355f804b3146105df578063581e5777146105ff578063665ecccf1461061457600080fd5b80634824a26f116102435780634824a26f146105605780634e1273f41461058057806355c7ba14146105ad57600080fd5b80632eb2c2d61461050d5780633408e4701461052d57806340b4dd871461054057600080fd5b80630f7e5970116102cb57806320379ee5116102a557806320379ee5146104a057806321775c92146104b55780632d0335ab146104d757600080fd5b80630f7e59701461041257806318160ddd1461045b5780631f2818ad1461047057600080fd5b806307546172116102fc57806307546172146103a75780630c53c51c146103df5780630e89341c146103f257600080fd5b8062fdd58e1461032257806301ffc9a71461035557806306fdde0314610385575b600080fd5b34801561032e57600080fd5b5061034261033d366004613b4c565b61098b565b6040519081526020015b60405180910390f35b34801561036157600080fd5b50610375610370366004613ba4565b610a37565b604051901515815260200161034c565b34801561039157600080fd5b5061039a610b1a565b60405161034c9190613c37565b3480156103b357600080fd5b506009546103c7906001600160a01b031681565b6040516001600160a01b03909116815260200161034c565b61039a6103ed366004613d56565b610ba8565b3480156103fe57600080fd5b5061039a61040d366004613dd2565b610dcc565b34801561041e57600080fd5b5061039a6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b34801561046757600080fd5b50610342610e00565b34801561047c57600080fd5b5061037561048b366004613dd2565b60136020526000908152604090205460ff1681565b3480156104ac57600080fd5b50600454610342565b3480156104c157600080fd5b506104d56104d0366004613dfb565b610e41565b005b3480156104e357600080fd5b506103426104f2366004613e16565b6001600160a01b031660009081526005602052604090205490565b34801561051957600080fd5b506104d5610528366004613ec6565b610f04565b34801561053957600080fd5b5046610342565b34801561054c57600080fd5b506104d561055b366004613fdd565b610fb8565b34801561056c57600080fd5b506104d561057b366004613fdd565b61117c565b34801561058c57600080fd5b506105a061059b366004614102565b6113b0565b60405161034c91906141a1565b3480156105b957600080fd5b50600a546103759074010000000000000000000000000000000000000000900460ff1681565b3480156105eb57600080fd5b506104d56105fa3660046141b4565b6114ee565b34801561060b57600080fd5b506105a061157e565b34801561062057600080fd5b5061034261062f366004613dd2565b60146020526000908152604090205481565b34801561064d57600080fd5b506104d561065c3660046141f1565b6115d6565b34801561066d57600080fd5b506105a061067c366004613e16565b61176e565b34801561068d57600080fd5b506104d5611811565b3480156106a257600080fd5b50610342600d81565b3480156106b757600080fd5b506106cb6106c6366004613e16565b611896565b60405161034c9190614265565b3480156106e457600080fd5b506103426106f3366004613dd2565b60009081526014602052604090205490565b34801561071157600080fd5b506104d5610720366004613dd2565b61193a565b34801561073157600080fd5b5061073a6119b8565b60405161034c91906142ab565b34801561075357600080fd5b506006546001600160a01b03166103c7565b34801561077157600080fd5b506104d56107803660046141b4565b611a19565b34801561079157600080fd5b506104d56107a0366004613e16565b611aa5565b3480156107b157600080fd5b506103756107c0366004613e16565b60126020526000908152604090205460ff1681565b3480156107e157600080fd5b5061073a611b58565b3480156107f657600080fd5b506105a0611bb8565b34801561080b57600080fd5b506104d561081a3660046142ec565b611c0e565b34801561082b57600080fd5b50600a546103c7906001600160a01b031681565b34801561084b57600080fd5b5061034260085481565b34801561086157600080fd5b50610375610870366004613e16565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561089a57600080fd5b506103426108a9366004613e16565b611c20565b3480156108ba57600080fd5b506104d5611c56565b3480156108cf57600080fd5b5061039a611cfe565b3480156108e457600080fd5b506103756108f336600461431f565b611d87565b34801561090457600080fd5b506104d5610913366004614349565b611de7565b34801561092457600080fd5b506104d5610933366004613e16565b611e94565b34801561094457600080fd5b506104d56109533660046143ae565b611f92565b6104d56109663660046143e1565b6120ba565b34801561097757600080fd5b506104d5610986366004613e16565b6121a7565b60006001600160a01b038316610a0e5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a26000000000000000000000000000000000000000000000000000000001480610aca57507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b80610a3157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610a31565b600d8054610b2790614427565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390614427565b8015610ba05780601f10610b7557610100808354040283529160200191610ba0565b820191906000526020600020905b815481529060010190602001808311610b8357829003601f168201915b505050505081565b60408051606081810183526001600160a01b03881660008181526005602090815290859020548452830152918101869052610be687828787876122b7565b610c585760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360448201527f68000000000000000000000000000000000000000000000000000000000000006064820152608401610a05565b6001600160a01b038716600090815260056020526040902054610c7c9060016144a4565b6001600160a01b0388166000908152600560205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610ccc90899033908a906144bc565b60405180910390a1600080306001600160a01b0316888a604051602001610cf492919061450d565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815290829052610d2c91614557565b6000604051808303816000865af19150503d8060008114610d69576040519150601f19603f3d011682016040523d82523d6000602084013e610d6e565b606091505b509150915081610dc05760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610a05565b98975050505050505050565b6060600b610dd9836123bf565b604051602001610dea929190614573565b6040516020818303038152906040529050919050565b600080805b6008548111610e3b57600081815260146020526040902054610e2790836144a4565b915080610e3381614648565b915050610e05565b50919050565b610e4961251c565b6001600160a01b0316610e646006546001600160a01b031690565b6001600160a01b031614610eba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a05565b600a805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b610f0c61251c565b6001600160a01b0316856001600160a01b03161480610f325750610f32856108f361251c565b610fa45760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610a05565b610fb1858585858561252b565b5050505050565b82518451146110095760405162461bcd60e51b815260206004820152601660248201527f6172726179732073686f756c6420626520657175616c000000000000000000006044820152606401610a05565b815184511461105a5760405162461bcd60e51b815260206004820152601860248201527f6172726179732073686f756c6420626520657175616c203200000000000000006044820152606401610a05565b6009546001600160a01b031633146110da5760405162461bcd60e51b815260206004820152602160248201527f6f6e6c79206d696e746572206163636f756e742063616e2063616c6c2074686960448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610a05565b60005b8451811015610fb15760008582815181106110fa576110fa614681565b60200260200101519050600084838151811061111857611118614681565b60200260200101519050600086848151811061113657611136614681565b602002602001015190506111663384848489898151811061115957611159614681565b60200260200101516127e2565b505050808061117490614648565b9150506110dd565b82518451146111cd5760405162461bcd60e51b815260206004820152601660248201527f6172726179732073686f756c6420626520657175616c000000000000000000006044820152606401610a05565b815184511461121e5760405162461bcd60e51b815260206004820152601860248201527f6172726179732073686f756c6420626520657175616c203200000000000000006044820152606401610a05565b6009546001600160a01b03163314806112415750600a546001600160a01b031633145b6112b35760405162461bcd60e51b815260206004820152602160248201527f6f6e6c79206d696e746572206163636f756e742063616e2063616c6c2074686960448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610a05565b600a5474010000000000000000000000000000000000000000900460ff1615156001146113225760405162461bcd60e51b815260206004820152601060248201527f6d696e74696e672064697361626c6564000000000000000000000000000000006044820152606401610a05565b60005b8451811015610fb15761139e85828151811061134357611343614681565b602002602001015184838151811061135d5761135d614681565b602002602001015186848151811061137757611377614681565b602002602001015185858151811061139157611391614681565b60200260200101516129d1565b806113a881614648565b915050611325565b606081518351146114295760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d6174636800000000000000000000000000000000000000000000006064820152608401610a05565b6000835167ffffffffffffffff81111561144557611445613c4a565b60405190808252806020026020018201604052801561146e578160200160208202803683370190505b50905060005b84518110156114e6576114b985828151811061149257611492614681565b60200260200101518583815181106114ac576114ac614681565b602002602001015161098b565b8282815181106114cb576114cb614681565b60209081029190910101526114df81614648565b9050611474565b509392505050565b6114f661251c565b6001600160a01b03166115116006546001600160a01b031690565b6001600160a01b0316146115675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a05565b805161157a90600b906020840190613a97565b5050565b606060108054806020026020016040519081016040528092919081815260200182805480156115cc57602002820191906000526020600020905b8154815260200190600101908083116115b8575b5050505050905090565b6009546001600160a01b031633146116565760405162461bcd60e51b815260206004820152602160248201527f6f6e6c79206d696e746572206163636f756e742063616e2063616c6c2074686960448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610a05565b60005b825181101561175d57600d83828151811061167657611676614681565b6020026020010151146116f05760405162461bcd60e51b8152602060048201526024808201527f6f6e6c7920676f6c64656e207469636b6574206e6674732063616e206265206260448201527f75726e74000000000000000000000000000000000000000000000000000000006064820152608401610a05565b81818151811061170257611702614681565b60200260200101516014600085848151811061172057611720614681565b60200260200101518152602001908152602001600020600082825461174591906146b0565b9091555081905061175581614648565b915050611659565b50611769838383612b12565b505050565b60606000600854600161178191906144a4565b67ffffffffffffffff81111561179957611799613c4a565b6040519080825280602002602001820160405280156117c2578160200160208202803683370190505b50905060005b600854811161180a576117db848261098b565b8282815181106117ed576117ed614681565b60209081029190910101528061180281614648565b9150506117c8565b5092915050565b61181961251c565b6001600160a01b03166118346006546001600160a01b031690565b6001600160a01b03161461188a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a05565b6118946000612db1565b565b6060600060085460016118a991906144a4565b67ffffffffffffffff8111156118c1576118c1613c4a565b6040519080825280602002602001820160405280156118ea578160200160208202803683370190505b50905060005b600854811161180a576000611905858361098b565b1182828151811061191857611918614681565b911515602092830291909101909101528061193281614648565b9150506118f0565b61194261251c565b6001600160a01b031661195d6006546001600160a01b031690565b6001600160a01b0316146119b35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a05565b600855565b6060600e8054806020026020016040519081016040528092919081815260200182805480156115cc57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116119f2575050505050905090565b611a2161251c565b6001600160a01b0316611a3c6006546001600160a01b031690565b6001600160a01b031614611a925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a05565b805161157a90600c906020840190613a97565b611aad61251c565b6001600160a01b0316611ac86006546001600160a01b031690565b6001600160a01b031614611b1e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a05565b600a80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b606060118054806020026020016040519081016040528092919081815260200182805480156115cc576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116119f2575050505050905090565b6060600f8054806020026020016040519081016040528092919081815260200182805480156115cc57602002820191906000526020600020908154815260200190600101908083116115b8575050505050905090565b61157a611c1961251c565b8383612e1b565b600080805b600854811161180a57611c38848261098b565b611c4290836144a4565b915080611c4e81614648565b915050611c25565b611c5e61251c565b6001600160a01b0316611c796006546001600160a01b031690565b6001600160a01b031614611ccf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a05565b60405133904780156108fc02916000818181858888f19350505050158015611cfb573d6000803e3d6000fd5b50565b6060600c8054611d0d90614427565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3990614427565b80156115cc5780601f10611d5b576101008083540402835291602001916115cc565b820191906000526020600020905b815481529060010190602001808311611d6957509395945050505050565b60006001600160a01b03821673207fa8df3a17d96ca7ea4f2893fcdcb78a3041011415611db657506001610a31565b6001600160a01b0380841660009081526001602090815260408083209386168352929052205460ff165b9392505050565b611def61251c565b6001600160a01b0316856001600160a01b03161480611e155750611e15856108f361251c565b611e875760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f76656400000000000000000000000000000000000000000000006064820152608401610a05565b610fb185858585856127e2565b611e9c61251c565b6001600160a01b0316611eb76006546001600160a01b031690565b6001600160a01b031614611f0d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a05565b6001600160a01b038116611f895760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a05565b611cfb81612db1565b6009546001600160a01b031633146120125760405162461bcd60e51b815260206004820152602160248201527f6f6e6c79206d696e746572206163636f756e742063616e2063616c6c2074686960448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610a05565b600d82146120875760405162461bcd60e51b8152602060048201526024808201527f6f6e6c7920676f6c64656e207469636b6574206e6674732063616e206265206260448201527f75726e74000000000000000000000000000000000000000000000000000000006064820152608401610a05565b612092838383612f2e565b600082815260146020526040812080548392906120b09084906146b0565b9091555050505050565b60006120c6338561098b565b116121135760405162461bcd60e51b815260206004820152601660248201527f4e4654206f776e657273686970207265717569726564000000000000000000006044820152606401610a05565b6008548311156121655760405162461bcd60e51b815260206004820152601760248201527f746f6b656e20696420646f6573206e6f742065786973740000000000000000006044820152606401610a05565b7fc61f2c659edbf24c83f2f878b28ccaf66c4c57d5f9ca1fe88680910673e7af6e8334848460405161219a94939291906146c7565b60405180910390a1505050565b6121af61251c565b6001600160a01b03166121ca6006546001600160a01b031690565b6001600160a01b0316146122205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a05565b600980547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000333014156122b157600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506122b49050565b50335b90565b60006001600160a01b0386166123355760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201527f49474e45520000000000000000000000000000000000000000000000000000006064820152608401610a05565b6001612348612343876130fb565b613178565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015612396573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6060816123ff57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612429578061241381614648565b91506124229050600a836146f6565b9150612403565b60008167ffffffffffffffff81111561244457612444613c4a565b6040519080825280601f01601f19166020018201604052801561246e576020820181803683370190505b509050815b8515612513576124846001826146b0565b90506000612493600a886146f6565b61249e90600a614731565b6124a890886146b0565b6124b390603061476e565b905060008160f81b9050808484815181106124d0576124d0614681565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061250a600a896146f6565b97505050612473565b50949350505050565b600061252661225a565b905090565b81518351146125a25760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610a05565b6001600160a01b03841661261e5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610a05565b600061262861251c565b905060005b845181101561276657600085828151811061264a5761264a614681565b60200260200101519050600085838151811061266857612668614681565b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561270e5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610a05565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061274b9084906144a4565b925050819055505050508061275f90614648565b905061262d565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516127b6929190614793565b60405180910390a46127cc8187878787876131c3565b6127da8187878787876133f3565b505050505050565b6001600160a01b03841661285e5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610a05565b600061286861251c565b9050600061287585613616565b9050600061288285613616565b90506000868152602081815260408083206001600160a01b038c1684529091529020548581101561291b5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610a05565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906129589084906144a4565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46129b8848a8a86868a6131c3565b6129c6848a8a8a8a8a613661565b505050505050505050565b600854831115612a235760405162461bcd60e51b815260206004820152601760248201527f746f6b656e20696420646f6573206e6f742065786973740000000000000000006044820152606401610a05565b612a2f848484846137da565b60008381526014602052604081208054849290612a4d9084906144a4565b90915550506001600160a01b03841660009081526012602052604090205460ff16612b0c576011805460018082019092557f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c680180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038716908117909155600090815260126020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690911790555b50505050565b6001600160a01b038316612b8e5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610a05565b8051825114612c055760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610a05565b6000612c0f61251c565b604080516020810190915260009052905060005b8351811015612d3a576000848281518110612c4057612c40614681565b602002602001015190506000848381518110612c5e57612c5e614681565b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015612d035760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e6365000000000000000000000000000000000000000000000000000000006064820152608401610a05565b6000928352602083815260408085206001600160a01b038b1686529091529092209103905580612d3281614648565b915050612c23565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612d8b929190614793565b60405180910390a4612b0c818560008686604051806020016040528060008152506131c3565b600680546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415612ea35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610a05565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038316612faa5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610a05565b6000612fb461251c565b90506000612fc184613616565b90506000612fce84613616565b60408051602080820183526000918290528882528181528282206001600160a01b038b16835290522054909150848110156130705760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e6365000000000000000000000000000000000000000000000000000000006064820152608401610a05565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46130f2848860008686604051806020016040528060008152506131c3565b50505050505050565b600060405180608001604052806043815260200161495d604391398051602091820120835184830151604080870151805190860120905161315b950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b600061318360045490565b6040517f1901000000000000000000000000000000000000000000000000000000000000602082015260228101919091526042810183905260620161315b565b6001600160a01b038416158015906131f457506001600160a01b03841660009081526012602052604090205460ff16155b15613293576011805460018082019092557f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c680180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038716908117909155600090815260126020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690911790555b6001600160a01b0384166133c25760005b82518110156133c05760008482815181106132c1576132c1614681565b6020026020010151905060008483815181106132df576132df614681565b6020908102919091010151600e805460018082019092557fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038c16179055600f80548083019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80201939093556010805493840181556000527f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae6729092019190915550806133b881614648565b9150506132a4565b505b6001600160a01b038516158015906133e057506133de85611c20565b155b156133ee576133ee8561391b565b6127da565b6001600160a01b0384163b156127da576040517fbc197c810000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063bc197c819061345090899089908890889088906004016147b8565b6020604051808303816000875af19250505080156134a9575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526134a69181019061480a565b60015b61355f576134b5614827565b806308c379a014156134ef57506134ca614842565b806134d557506134f1565b8060405162461bcd60e51b8152600401610a059190613c37565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610a05565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c8100000000000000000000000000000000000000000000000000000000146130f25760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610a05565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061365057613650614681565b602090810291909101015292915050565b6001600160a01b0384163b156127da576040517ff23a6e610000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063f23a6e61906136be90899089908890889088906004016148ea565b6020604051808303816000875af1925050508015613717575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526137149181019061480a565b60015b613723576134b5614827565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e6100000000000000000000000000000000000000000000000000000000146130f25760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610a05565b6001600160a01b0384166138565760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610a05565b600061386061251c565b9050600061386d85613616565b9050600061387a85613616565b90506000868152602081815260408083206001600160a01b038b168452909152812080548792906138ac9084906144a4565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461390c836000898585896131c3565b6130f283600089898989613661565b60005b60115481101561157a57816001600160a01b03166011828154811061394557613945614681565b6000918252602090912001546001600160a01b03161415613a855760118054613970906001906146b0565b8154811061398057613980614681565b600091825260209091200154601180546001600160a01b0390921691839081106139ac576139ac614681565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060118054806139eb576139eb61492d565b6000828152602080822083017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690559092019092556001600160a01b0384168252601290526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555050565b80613a8f81614648565b91505061391e565b828054613aa390614427565b90600052602060002090601f016020900481019282613ac55760008555613b0b565b82601f10613ade57805160ff1916838001178555613b0b565b82800160010185558215613b0b579182015b82811115613b0b578251825591602001919060010190613af0565b50613b17929150613b1b565b5090565b5b80821115613b175760008155600101613b1c565b80356001600160a01b0381168114613b4757600080fd5b919050565b60008060408385031215613b5f57600080fd5b613b6883613b30565b946020939093013593505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611cfb57600080fd5b600060208284031215613bb657600080fd5b8135611de081613b76565b60005b83811015613bdc578181015183820152602001613bc4565b83811115612b0c5750506000910152565b60008151808452613c05816020860160208601613bc1565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611de06020830184613bed565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff82111715613cbd57613cbd613c4a565b6040525050565b600082601f830112613cd557600080fd5b813567ffffffffffffffff811115613cef57613cef613c4a565b604051613d2460207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8501160182613c79565b818152846020838601011115613d3957600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215613d6e57600080fd5b613d7786613b30565b9450602086013567ffffffffffffffff811115613d9357600080fd5b613d9f88828901613cc4565b9450506040860135925060608601359150608086013560ff81168114613dc457600080fd5b809150509295509295909350565b600060208284031215613de457600080fd5b5035919050565b80358015158114613b4757600080fd5b600060208284031215613e0d57600080fd5b611de082613deb565b600060208284031215613e2857600080fd5b611de082613b30565b600067ffffffffffffffff821115613e4b57613e4b613c4a565b5060051b60200190565b600082601f830112613e6657600080fd5b81356020613e7382613e31565b604051613e808282613c79565b83815260059390931b8501820192828101915086841115613ea057600080fd5b8286015b84811015613ebb5780358352918301918301613ea4565b509695505050505050565b600080600080600060a08688031215613ede57600080fd5b613ee786613b30565b9450613ef560208701613b30565b9350604086013567ffffffffffffffff80821115613f1257600080fd5b613f1e89838a01613e55565b94506060880135915080821115613f3457600080fd5b613f4089838a01613e55565b93506080880135915080821115613f5657600080fd5b50613f6388828901613cc4565b9150509295509295909350565b600082601f830112613f8157600080fd5b81356020613f8e82613e31565b604051613f9b8282613c79565b83815260059390931b8501820192828101915086841115613fbb57600080fd5b8286015b84811015613ebb57613fd081613b30565b8352918301918301613fbf565b60008060008060808587031215613ff357600080fd5b843567ffffffffffffffff8082111561400b57600080fd5b61401788838901613f70565b955060209150818701358181111561402e57600080fd5b61403a89828a01613e55565b95505060408701358181111561404f57600080fd5b61405b89828a01613e55565b94505060608701358181111561407057600080fd5b8701601f8101891361408157600080fd5b803561408c81613e31565b6040516140998282613c79565b82815260059290921b830185019185810191508b8311156140b957600080fd5b8584015b838110156140f1578035868111156140d55760008081fd5b6140e38e8983890101613cc4565b8452509186019186016140bd565b50989b979a50959850505050505050565b6000806040838503121561411557600080fd5b823567ffffffffffffffff8082111561412d57600080fd5b61413986838701613f70565b9350602085013591508082111561414f57600080fd5b5061415c85828601613e55565b9150509250929050565b600081518084526020808501945080840160005b838110156141965781518752958201959082019060010161417a565b509495945050505050565b602081526000611de06020830184614166565b6000602082840312156141c657600080fd5b813567ffffffffffffffff8111156141dd57600080fd5b6141e984828501613cc4565b949350505050565b60008060006060848603121561420657600080fd5b61420f84613b30565b9250602084013567ffffffffffffffff8082111561422c57600080fd5b61423887838801613e55565b9350604086013591508082111561424e57600080fd5b5061425b86828701613e55565b9150509250925092565b6020808252825182820181905260009190848201906040850190845b8181101561429f578351151583529284019291840191600101614281565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561429f5783516001600160a01b0316835292840192918401916001016142c7565b600080604083850312156142ff57600080fd5b61430883613b30565b915061431660208401613deb565b90509250929050565b6000806040838503121561433257600080fd5b61433b83613b30565b915061431660208401613b30565b600080600080600060a0868803121561436157600080fd5b61436a86613b30565b945061437860208701613b30565b93506040860135925060608601359150608086013567ffffffffffffffff8111156143a257600080fd5b613f6388828901613cc4565b6000806000606084860312156143c357600080fd5b6143cc84613b30565b95602085013595506040909401359392505050565b6000806000606084860312156143f657600080fd5b8335925060208401359150604084013567ffffffffffffffff81111561441b57600080fd5b61425b86828701613cc4565b600181811c9082168061443b57607f821691505b60208210811415610e3b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082198211156144b7576144b7614475565b500190565b60006001600160a01b038086168352808516602084015250606060408301526144e86060830184613bed565b95945050505050565b60008151614503818560208601613bc1565b9290920192915050565b6000835161451f818460208801613bc1565b60609390931b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000169190920190815260140192915050565b60008251614569818460208701613bc1565b9190910192915050565b600080845481600182811c91508083168061458f57607f831692505b60208084108214156145c8577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b8180156145dc576001811461460b57614638565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00861689528489019650614638565b60008b81526020902060005b868110156146305781548b820152908501908301614617565b505084890196505b5050505050506144e881856144f1565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561467a5761467a614475565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000828210156146c2576146c2614475565b500390565b8481528360208201528260408201526080606082015260006146ec6080830184613bed565b9695505050505050565b60008261472c577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561476957614769614475565b500290565b600060ff821660ff84168060ff0382111561478b5761478b614475565b019392505050565b6040815260006147a66040830185614166565b82810360208401526144e88185614166565b60006001600160a01b03808816835280871660208401525060a060408301526147e460a0830186614166565b82810360608401526147f68186614166565b90508281036080840152610dc08185613bed565b60006020828403121561481c57600080fd5b8151611de081613b76565b600060033d11156122b45760046000803e5060005160e01c90565b600060443d10156148505790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff816024840111818411171561489e57505050505090565b82850191508151818111156148b65750505050505090565b843d87010160208285010111156148d05750505050505090565b6148df60208286010187613c79565b509095945050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a0608083015261492260a0830184613bed565b979650505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a264697066735822122011c6cf524589c6f4166820c4edef3a5e0f5902cc95791e18219808590f65bc8364736f6c634300080a0033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c742968747470733a2f2f67656e65726f736974796e66742e636f6d3a313333372f6172746f6667656e65726f736974792f6f70656e7365612f

Deployed Bytecode

0x60806040526004361061031d5760003560e01c80637837a8a5116101a5578063b0734b57116100ec578063e8a3d48511610095578063f2fde38b1161006f578063f2fde38b14610918578063f5298aca14610938578063fafcbca414610958578063fca3b5aa1461096b57600080fd5b8063e8a3d485146108c3578063e985e9c5146108d8578063f242432a146108f857600080fd5b8063cea65e97116100c6578063cea65e9714610855578063d3d381931461088e578063e086e5ec146108ae57600080fd5b8063b0734b571461081f578063bb62115e1461083f578063c87b56dd146103f257600080fd5b8063938e3d7b1161014e578063a0e67e2b11610128578063a0e67e2b146107d5578063a137be77146107ea578063a22cb465146107ff57600080fd5b8063938e3d7b146107655780639a35edce14610785578063a0c09cb7146107a557600080fd5b80638329de2f1161017f5780638329de2f1461070557806386fe8b43146107255780638da5cb5b1461074757600080fd5b80637837a8a5146106965780638022e3cd146106ab578063816f21b9146106d857600080fd5b80632eb2c2d61161026957806355f804b3116102125780636b20c454116101ec5780636b20c454146106415780636c1d294814610661578063715018a61461068157600080fd5b806355f804b3146105df578063581e5777146105ff578063665ecccf1461061457600080fd5b80634824a26f116102435780634824a26f146105605780634e1273f41461058057806355c7ba14146105ad57600080fd5b80632eb2c2d61461050d5780633408e4701461052d57806340b4dd871461054057600080fd5b80630f7e5970116102cb57806320379ee5116102a557806320379ee5146104a057806321775c92146104b55780632d0335ab146104d757600080fd5b80630f7e59701461041257806318160ddd1461045b5780631f2818ad1461047057600080fd5b806307546172116102fc57806307546172146103a75780630c53c51c146103df5780630e89341c146103f257600080fd5b8062fdd58e1461032257806301ffc9a71461035557806306fdde0314610385575b600080fd5b34801561032e57600080fd5b5061034261033d366004613b4c565b61098b565b6040519081526020015b60405180910390f35b34801561036157600080fd5b50610375610370366004613ba4565b610a37565b604051901515815260200161034c565b34801561039157600080fd5b5061039a610b1a565b60405161034c9190613c37565b3480156103b357600080fd5b506009546103c7906001600160a01b031681565b6040516001600160a01b03909116815260200161034c565b61039a6103ed366004613d56565b610ba8565b3480156103fe57600080fd5b5061039a61040d366004613dd2565b610dcc565b34801561041e57600080fd5b5061039a6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b34801561046757600080fd5b50610342610e00565b34801561047c57600080fd5b5061037561048b366004613dd2565b60136020526000908152604090205460ff1681565b3480156104ac57600080fd5b50600454610342565b3480156104c157600080fd5b506104d56104d0366004613dfb565b610e41565b005b3480156104e357600080fd5b506103426104f2366004613e16565b6001600160a01b031660009081526005602052604090205490565b34801561051957600080fd5b506104d5610528366004613ec6565b610f04565b34801561053957600080fd5b5046610342565b34801561054c57600080fd5b506104d561055b366004613fdd565b610fb8565b34801561056c57600080fd5b506104d561057b366004613fdd565b61117c565b34801561058c57600080fd5b506105a061059b366004614102565b6113b0565b60405161034c91906141a1565b3480156105b957600080fd5b50600a546103759074010000000000000000000000000000000000000000900460ff1681565b3480156105eb57600080fd5b506104d56105fa3660046141b4565b6114ee565b34801561060b57600080fd5b506105a061157e565b34801561062057600080fd5b5061034261062f366004613dd2565b60146020526000908152604090205481565b34801561064d57600080fd5b506104d561065c3660046141f1565b6115d6565b34801561066d57600080fd5b506105a061067c366004613e16565b61176e565b34801561068d57600080fd5b506104d5611811565b3480156106a257600080fd5b50610342600d81565b3480156106b757600080fd5b506106cb6106c6366004613e16565b611896565b60405161034c9190614265565b3480156106e457600080fd5b506103426106f3366004613dd2565b60009081526014602052604090205490565b34801561071157600080fd5b506104d5610720366004613dd2565b61193a565b34801561073157600080fd5b5061073a6119b8565b60405161034c91906142ab565b34801561075357600080fd5b506006546001600160a01b03166103c7565b34801561077157600080fd5b506104d56107803660046141b4565b611a19565b34801561079157600080fd5b506104d56107a0366004613e16565b611aa5565b3480156107b157600080fd5b506103756107c0366004613e16565b60126020526000908152604090205460ff1681565b3480156107e157600080fd5b5061073a611b58565b3480156107f657600080fd5b506105a0611bb8565b34801561080b57600080fd5b506104d561081a3660046142ec565b611c0e565b34801561082b57600080fd5b50600a546103c7906001600160a01b031681565b34801561084b57600080fd5b5061034260085481565b34801561086157600080fd5b50610375610870366004613e16565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561089a57600080fd5b506103426108a9366004613e16565b611c20565b3480156108ba57600080fd5b506104d5611c56565b3480156108cf57600080fd5b5061039a611cfe565b3480156108e457600080fd5b506103756108f336600461431f565b611d87565b34801561090457600080fd5b506104d5610913366004614349565b611de7565b34801561092457600080fd5b506104d5610933366004613e16565b611e94565b34801561094457600080fd5b506104d56109533660046143ae565b611f92565b6104d56109663660046143e1565b6120ba565b34801561097757600080fd5b506104d5610986366004613e16565b6121a7565b60006001600160a01b038316610a0e5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a26000000000000000000000000000000000000000000000000000000001480610aca57507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b80610a3157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610a31565b600d8054610b2790614427565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390614427565b8015610ba05780601f10610b7557610100808354040283529160200191610ba0565b820191906000526020600020905b815481529060010190602001808311610b8357829003601f168201915b505050505081565b60408051606081810183526001600160a01b03881660008181526005602090815290859020548452830152918101869052610be687828787876122b7565b610c585760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360448201527f68000000000000000000000000000000000000000000000000000000000000006064820152608401610a05565b6001600160a01b038716600090815260056020526040902054610c7c9060016144a4565b6001600160a01b0388166000908152600560205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610ccc90899033908a906144bc565b60405180910390a1600080306001600160a01b0316888a604051602001610cf492919061450d565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815290829052610d2c91614557565b6000604051808303816000865af19150503d8060008114610d69576040519150601f19603f3d011682016040523d82523d6000602084013e610d6e565b606091505b509150915081610dc05760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610a05565b98975050505050505050565b6060600b610dd9836123bf565b604051602001610dea929190614573565b6040516020818303038152906040529050919050565b600080805b6008548111610e3b57600081815260146020526040902054610e2790836144a4565b915080610e3381614648565b915050610e05565b50919050565b610e4961251c565b6001600160a01b0316610e646006546001600160a01b031690565b6001600160a01b031614610eba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a05565b600a805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b610f0c61251c565b6001600160a01b0316856001600160a01b03161480610f325750610f32856108f361251c565b610fa45760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610a05565b610fb1858585858561252b565b5050505050565b82518451146110095760405162461bcd60e51b815260206004820152601660248201527f6172726179732073686f756c6420626520657175616c000000000000000000006044820152606401610a05565b815184511461105a5760405162461bcd60e51b815260206004820152601860248201527f6172726179732073686f756c6420626520657175616c203200000000000000006044820152606401610a05565b6009546001600160a01b031633146110da5760405162461bcd60e51b815260206004820152602160248201527f6f6e6c79206d696e746572206163636f756e742063616e2063616c6c2074686960448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610a05565b60005b8451811015610fb15760008582815181106110fa576110fa614681565b60200260200101519050600084838151811061111857611118614681565b60200260200101519050600086848151811061113657611136614681565b602002602001015190506111663384848489898151811061115957611159614681565b60200260200101516127e2565b505050808061117490614648565b9150506110dd565b82518451146111cd5760405162461bcd60e51b815260206004820152601660248201527f6172726179732073686f756c6420626520657175616c000000000000000000006044820152606401610a05565b815184511461121e5760405162461bcd60e51b815260206004820152601860248201527f6172726179732073686f756c6420626520657175616c203200000000000000006044820152606401610a05565b6009546001600160a01b03163314806112415750600a546001600160a01b031633145b6112b35760405162461bcd60e51b815260206004820152602160248201527f6f6e6c79206d696e746572206163636f756e742063616e2063616c6c2074686960448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610a05565b600a5474010000000000000000000000000000000000000000900460ff1615156001146113225760405162461bcd60e51b815260206004820152601060248201527f6d696e74696e672064697361626c6564000000000000000000000000000000006044820152606401610a05565b60005b8451811015610fb15761139e85828151811061134357611343614681565b602002602001015184838151811061135d5761135d614681565b602002602001015186848151811061137757611377614681565b602002602001015185858151811061139157611391614681565b60200260200101516129d1565b806113a881614648565b915050611325565b606081518351146114295760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d6174636800000000000000000000000000000000000000000000006064820152608401610a05565b6000835167ffffffffffffffff81111561144557611445613c4a565b60405190808252806020026020018201604052801561146e578160200160208202803683370190505b50905060005b84518110156114e6576114b985828151811061149257611492614681565b60200260200101518583815181106114ac576114ac614681565b602002602001015161098b565b8282815181106114cb576114cb614681565b60209081029190910101526114df81614648565b9050611474565b509392505050565b6114f661251c565b6001600160a01b03166115116006546001600160a01b031690565b6001600160a01b0316146115675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a05565b805161157a90600b906020840190613a97565b5050565b606060108054806020026020016040519081016040528092919081815260200182805480156115cc57602002820191906000526020600020905b8154815260200190600101908083116115b8575b5050505050905090565b6009546001600160a01b031633146116565760405162461bcd60e51b815260206004820152602160248201527f6f6e6c79206d696e746572206163636f756e742063616e2063616c6c2074686960448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610a05565b60005b825181101561175d57600d83828151811061167657611676614681565b6020026020010151146116f05760405162461bcd60e51b8152602060048201526024808201527f6f6e6c7920676f6c64656e207469636b6574206e6674732063616e206265206260448201527f75726e74000000000000000000000000000000000000000000000000000000006064820152608401610a05565b81818151811061170257611702614681565b60200260200101516014600085848151811061172057611720614681565b60200260200101518152602001908152602001600020600082825461174591906146b0565b9091555081905061175581614648565b915050611659565b50611769838383612b12565b505050565b60606000600854600161178191906144a4565b67ffffffffffffffff81111561179957611799613c4a565b6040519080825280602002602001820160405280156117c2578160200160208202803683370190505b50905060005b600854811161180a576117db848261098b565b8282815181106117ed576117ed614681565b60209081029190910101528061180281614648565b9150506117c8565b5092915050565b61181961251c565b6001600160a01b03166118346006546001600160a01b031690565b6001600160a01b03161461188a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a05565b6118946000612db1565b565b6060600060085460016118a991906144a4565b67ffffffffffffffff8111156118c1576118c1613c4a565b6040519080825280602002602001820160405280156118ea578160200160208202803683370190505b50905060005b600854811161180a576000611905858361098b565b1182828151811061191857611918614681565b911515602092830291909101909101528061193281614648565b9150506118f0565b61194261251c565b6001600160a01b031661195d6006546001600160a01b031690565b6001600160a01b0316146119b35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a05565b600855565b6060600e8054806020026020016040519081016040528092919081815260200182805480156115cc57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116119f2575050505050905090565b611a2161251c565b6001600160a01b0316611a3c6006546001600160a01b031690565b6001600160a01b031614611a925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a05565b805161157a90600c906020840190613a97565b611aad61251c565b6001600160a01b0316611ac86006546001600160a01b031690565b6001600160a01b031614611b1e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a05565b600a80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b606060118054806020026020016040519081016040528092919081815260200182805480156115cc576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116119f2575050505050905090565b6060600f8054806020026020016040519081016040528092919081815260200182805480156115cc57602002820191906000526020600020908154815260200190600101908083116115b8575050505050905090565b61157a611c1961251c565b8383612e1b565b600080805b600854811161180a57611c38848261098b565b611c4290836144a4565b915080611c4e81614648565b915050611c25565b611c5e61251c565b6001600160a01b0316611c796006546001600160a01b031690565b6001600160a01b031614611ccf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a05565b60405133904780156108fc02916000818181858888f19350505050158015611cfb573d6000803e3d6000fd5b50565b6060600c8054611d0d90614427565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3990614427565b80156115cc5780601f10611d5b576101008083540402835291602001916115cc565b820191906000526020600020905b815481529060010190602001808311611d6957509395945050505050565b60006001600160a01b03821673207fa8df3a17d96ca7ea4f2893fcdcb78a3041011415611db657506001610a31565b6001600160a01b0380841660009081526001602090815260408083209386168352929052205460ff165b9392505050565b611def61251c565b6001600160a01b0316856001600160a01b03161480611e155750611e15856108f361251c565b611e875760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f76656400000000000000000000000000000000000000000000006064820152608401610a05565b610fb185858585856127e2565b611e9c61251c565b6001600160a01b0316611eb76006546001600160a01b031690565b6001600160a01b031614611f0d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a05565b6001600160a01b038116611f895760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a05565b611cfb81612db1565b6009546001600160a01b031633146120125760405162461bcd60e51b815260206004820152602160248201527f6f6e6c79206d696e746572206163636f756e742063616e2063616c6c2074686960448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610a05565b600d82146120875760405162461bcd60e51b8152602060048201526024808201527f6f6e6c7920676f6c64656e207469636b6574206e6674732063616e206265206260448201527f75726e74000000000000000000000000000000000000000000000000000000006064820152608401610a05565b612092838383612f2e565b600082815260146020526040812080548392906120b09084906146b0565b9091555050505050565b60006120c6338561098b565b116121135760405162461bcd60e51b815260206004820152601660248201527f4e4654206f776e657273686970207265717569726564000000000000000000006044820152606401610a05565b6008548311156121655760405162461bcd60e51b815260206004820152601760248201527f746f6b656e20696420646f6573206e6f742065786973740000000000000000006044820152606401610a05565b7fc61f2c659edbf24c83f2f878b28ccaf66c4c57d5f9ca1fe88680910673e7af6e8334848460405161219a94939291906146c7565b60405180910390a1505050565b6121af61251c565b6001600160a01b03166121ca6006546001600160a01b031690565b6001600160a01b0316146122205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a05565b600980547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000333014156122b157600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506122b49050565b50335b90565b60006001600160a01b0386166123355760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201527f49474e45520000000000000000000000000000000000000000000000000000006064820152608401610a05565b6001612348612343876130fb565b613178565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015612396573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6060816123ff57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612429578061241381614648565b91506124229050600a836146f6565b9150612403565b60008167ffffffffffffffff81111561244457612444613c4a565b6040519080825280601f01601f19166020018201604052801561246e576020820181803683370190505b509050815b8515612513576124846001826146b0565b90506000612493600a886146f6565b61249e90600a614731565b6124a890886146b0565b6124b390603061476e565b905060008160f81b9050808484815181106124d0576124d0614681565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061250a600a896146f6565b97505050612473565b50949350505050565b600061252661225a565b905090565b81518351146125a25760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610a05565b6001600160a01b03841661261e5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610a05565b600061262861251c565b905060005b845181101561276657600085828151811061264a5761264a614681565b60200260200101519050600085838151811061266857612668614681565b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561270e5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610a05565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061274b9084906144a4565b925050819055505050508061275f90614648565b905061262d565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516127b6929190614793565b60405180910390a46127cc8187878787876131c3565b6127da8187878787876133f3565b505050505050565b6001600160a01b03841661285e5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610a05565b600061286861251c565b9050600061287585613616565b9050600061288285613616565b90506000868152602081815260408083206001600160a01b038c1684529091529020548581101561291b5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610a05565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906129589084906144a4565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46129b8848a8a86868a6131c3565b6129c6848a8a8a8a8a613661565b505050505050505050565b600854831115612a235760405162461bcd60e51b815260206004820152601760248201527f746f6b656e20696420646f6573206e6f742065786973740000000000000000006044820152606401610a05565b612a2f848484846137da565b60008381526014602052604081208054849290612a4d9084906144a4565b90915550506001600160a01b03841660009081526012602052604090205460ff16612b0c576011805460018082019092557f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c680180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038716908117909155600090815260126020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690911790555b50505050565b6001600160a01b038316612b8e5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610a05565b8051825114612c055760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610a05565b6000612c0f61251c565b604080516020810190915260009052905060005b8351811015612d3a576000848281518110612c4057612c40614681565b602002602001015190506000848381518110612c5e57612c5e614681565b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015612d035760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e6365000000000000000000000000000000000000000000000000000000006064820152608401610a05565b6000928352602083815260408085206001600160a01b038b1686529091529092209103905580612d3281614648565b915050612c23565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612d8b929190614793565b60405180910390a4612b0c818560008686604051806020016040528060008152506131c3565b600680546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415612ea35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610a05565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038316612faa5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610a05565b6000612fb461251c565b90506000612fc184613616565b90506000612fce84613616565b60408051602080820183526000918290528882528181528282206001600160a01b038b16835290522054909150848110156130705760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e6365000000000000000000000000000000000000000000000000000000006064820152608401610a05565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46130f2848860008686604051806020016040528060008152506131c3565b50505050505050565b600060405180608001604052806043815260200161495d604391398051602091820120835184830151604080870151805190860120905161315b950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b600061318360045490565b6040517f1901000000000000000000000000000000000000000000000000000000000000602082015260228101919091526042810183905260620161315b565b6001600160a01b038416158015906131f457506001600160a01b03841660009081526012602052604090205460ff16155b15613293576011805460018082019092557f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c680180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038716908117909155600090815260126020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690911790555b6001600160a01b0384166133c25760005b82518110156133c05760008482815181106132c1576132c1614681565b6020026020010151905060008483815181106132df576132df614681565b6020908102919091010151600e805460018082019092557fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038c16179055600f80548083019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80201939093556010805493840181556000527f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae6729092019190915550806133b881614648565b9150506132a4565b505b6001600160a01b038516158015906133e057506133de85611c20565b155b156133ee576133ee8561391b565b6127da565b6001600160a01b0384163b156127da576040517fbc197c810000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063bc197c819061345090899089908890889088906004016147b8565b6020604051808303816000875af19250505080156134a9575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526134a69181019061480a565b60015b61355f576134b5614827565b806308c379a014156134ef57506134ca614842565b806134d557506134f1565b8060405162461bcd60e51b8152600401610a059190613c37565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610a05565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c8100000000000000000000000000000000000000000000000000000000146130f25760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610a05565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061365057613650614681565b602090810291909101015292915050565b6001600160a01b0384163b156127da576040517ff23a6e610000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063f23a6e61906136be90899089908890889088906004016148ea565b6020604051808303816000875af1925050508015613717575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526137149181019061480a565b60015b613723576134b5614827565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e6100000000000000000000000000000000000000000000000000000000146130f25760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610a05565b6001600160a01b0384166138565760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610a05565b600061386061251c565b9050600061386d85613616565b9050600061387a85613616565b90506000868152602081815260408083206001600160a01b038b168452909152812080548792906138ac9084906144a4565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461390c836000898585896131c3565b6130f283600089898989613661565b60005b60115481101561157a57816001600160a01b03166011828154811061394557613945614681565b6000918252602090912001546001600160a01b03161415613a855760118054613970906001906146b0565b8154811061398057613980614681565b600091825260209091200154601180546001600160a01b0390921691839081106139ac576139ac614681565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060118054806139eb576139eb61492d565b6000828152602080822083017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690559092019092556001600160a01b0384168252601290526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555050565b80613a8f81614648565b91505061391e565b828054613aa390614427565b90600052602060002090601f016020900481019282613ac55760008555613b0b565b82601f10613ade57805160ff1916838001178555613b0b565b82800160010185558215613b0b579182015b82811115613b0b578251825591602001919060010190613af0565b50613b17929150613b1b565b5090565b5b80821115613b175760008155600101613b1c565b80356001600160a01b0381168114613b4757600080fd5b919050565b60008060408385031215613b5f57600080fd5b613b6883613b30565b946020939093013593505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611cfb57600080fd5b600060208284031215613bb657600080fd5b8135611de081613b76565b60005b83811015613bdc578181015183820152602001613bc4565b83811115612b0c5750506000910152565b60008151808452613c05816020860160208601613bc1565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611de06020830184613bed565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff82111715613cbd57613cbd613c4a565b6040525050565b600082601f830112613cd557600080fd5b813567ffffffffffffffff811115613cef57613cef613c4a565b604051613d2460207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8501160182613c79565b818152846020838601011115613d3957600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215613d6e57600080fd5b613d7786613b30565b9450602086013567ffffffffffffffff811115613d9357600080fd5b613d9f88828901613cc4565b9450506040860135925060608601359150608086013560ff81168114613dc457600080fd5b809150509295509295909350565b600060208284031215613de457600080fd5b5035919050565b80358015158114613b4757600080fd5b600060208284031215613e0d57600080fd5b611de082613deb565b600060208284031215613e2857600080fd5b611de082613b30565b600067ffffffffffffffff821115613e4b57613e4b613c4a565b5060051b60200190565b600082601f830112613e6657600080fd5b81356020613e7382613e31565b604051613e808282613c79565b83815260059390931b8501820192828101915086841115613ea057600080fd5b8286015b84811015613ebb5780358352918301918301613ea4565b509695505050505050565b600080600080600060a08688031215613ede57600080fd5b613ee786613b30565b9450613ef560208701613b30565b9350604086013567ffffffffffffffff80821115613f1257600080fd5b613f1e89838a01613e55565b94506060880135915080821115613f3457600080fd5b613f4089838a01613e55565b93506080880135915080821115613f5657600080fd5b50613f6388828901613cc4565b9150509295509295909350565b600082601f830112613f8157600080fd5b81356020613f8e82613e31565b604051613f9b8282613c79565b83815260059390931b8501820192828101915086841115613fbb57600080fd5b8286015b84811015613ebb57613fd081613b30565b8352918301918301613fbf565b60008060008060808587031215613ff357600080fd5b843567ffffffffffffffff8082111561400b57600080fd5b61401788838901613f70565b955060209150818701358181111561402e57600080fd5b61403a89828a01613e55565b95505060408701358181111561404f57600080fd5b61405b89828a01613e55565b94505060608701358181111561407057600080fd5b8701601f8101891361408157600080fd5b803561408c81613e31565b6040516140998282613c79565b82815260059290921b830185019185810191508b8311156140b957600080fd5b8584015b838110156140f1578035868111156140d55760008081fd5b6140e38e8983890101613cc4565b8452509186019186016140bd565b50989b979a50959850505050505050565b6000806040838503121561411557600080fd5b823567ffffffffffffffff8082111561412d57600080fd5b61413986838701613f70565b9350602085013591508082111561414f57600080fd5b5061415c85828601613e55565b9150509250929050565b600081518084526020808501945080840160005b838110156141965781518752958201959082019060010161417a565b509495945050505050565b602081526000611de06020830184614166565b6000602082840312156141c657600080fd5b813567ffffffffffffffff8111156141dd57600080fd5b6141e984828501613cc4565b949350505050565b60008060006060848603121561420657600080fd5b61420f84613b30565b9250602084013567ffffffffffffffff8082111561422c57600080fd5b61423887838801613e55565b9350604086013591508082111561424e57600080fd5b5061425b86828701613e55565b9150509250925092565b6020808252825182820181905260009190848201906040850190845b8181101561429f578351151583529284019291840191600101614281565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561429f5783516001600160a01b0316835292840192918401916001016142c7565b600080604083850312156142ff57600080fd5b61430883613b30565b915061431660208401613deb565b90509250929050565b6000806040838503121561433257600080fd5b61433b83613b30565b915061431660208401613b30565b600080600080600060a0868803121561436157600080fd5b61436a86613b30565b945061437860208701613b30565b93506040860135925060608601359150608086013567ffffffffffffffff8111156143a257600080fd5b613f6388828901613cc4565b6000806000606084860312156143c357600080fd5b6143cc84613b30565b95602085013595506040909401359392505050565b6000806000606084860312156143f657600080fd5b8335925060208401359150604084013567ffffffffffffffff81111561441b57600080fd5b61425b86828701613cc4565b600181811c9082168061443b57607f821691505b60208210811415610e3b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082198211156144b7576144b7614475565b500190565b60006001600160a01b038086168352808516602084015250606060408301526144e86060830184613bed565b95945050505050565b60008151614503818560208601613bc1565b9290920192915050565b6000835161451f818460208801613bc1565b60609390931b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000169190920190815260140192915050565b60008251614569818460208701613bc1565b9190910192915050565b600080845481600182811c91508083168061458f57607f831692505b60208084108214156145c8577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b8180156145dc576001811461460b57614638565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00861689528489019650614638565b60008b81526020902060005b868110156146305781548b820152908501908301614617565b505084890196505b5050505050506144e881856144f1565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561467a5761467a614475565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000828210156146c2576146c2614475565b500390565b8481528360208201528260408201526080606082015260006146ec6080830184613bed565b9695505050505050565b60008261472c577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561476957614769614475565b500290565b600060ff821660ff84168060ff0382111561478b5761478b614475565b019392505050565b6040815260006147a66040830185614166565b82810360208401526144e88185614166565b60006001600160a01b03808816835280871660208401525060a060408301526147e460a0830186614166565b82810360608401526147f68186614166565b90508281036080840152610dc08185613bed565b60006020828403121561481c57600080fd5b8151611de081613b76565b600060033d11156122b45760046000803e5060005160e01c90565b600060443d10156148505790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff816024840111818411171561489e57505050505090565b82850191508151818111156148b65750505050505090565b843d87010160208285010111156148d05750505050505090565b6148df60208286010187613c79565b509095945050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a0608083015261492260a0830184613bed565b979650505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a264697066735822122011c6cf524589c6f4166820c4edef3a5e0f5902cc95791e18219808590f65bc8364736f6c634300080a0033

Deployed Bytecode Sourcemap

6570:9745:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2130:228:3;;;;;;;;;;-1:-1:-1;2130:228:3;;;;;:::i;:::-;;:::i;:::-;;;620:25:19;;;608:2;593:18;2130:228:3;;;;;;;;1181:305;;;;;;;;;;-1:-1:-1;1181:305:3;;;;;:::i;:::-;;:::i;:::-;;;1253:14:19;;1246:22;1228:41;;1216:2;1201:18;1181:305:3;1088:187:19;7170:18:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6801:21::-;;;;;;;;;;-1:-1:-1;6801:21:1;;;;-1:-1:-1;;;;;6801:21:1;;;;;;-1:-1:-1;;;;;2254:55:19;;;2236:74;;2224:2;2209:18;6801:21:1;2090:226:19;4388:1148:1;;;;;;:::i;:::-;;:::i;12531:150::-;;;;;;;;;;-1:-1:-1;12531:150:1;;;;;:::i;:::-;;:::i;1573:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7674:244;;;;;;;;;;;;;:::i;7561:50::-;;;;;;;;;;-1:-1:-1;7561:50:1;;;;;:::i;:::-;;;;;;;;;;;;;;;;2583:101;;;;;;;;;;-1:-1:-1;2661:15:1;;2583:101;;13112:92;;;;;;;;;;-1:-1:-1;13112:92:1;;;;;:::i;:::-;;:::i;:::-;;5962:107;;;;;;;;;;-1:-1:-1;5962:107:1;;;;;:::i;:::-;-1:-1:-1;;;;;6049:12:1;6015:13;6049:12;;;:6;:12;;;;;;;5962:107;4005:430:3;;;;;;;;;;-1:-1:-1;4005:430:3;;;;;:::i;:::-;;:::i;2692:161:1:-;;;;;;;;;;-1:-1:-1;2806:9:1;2692:161;;11271:669;;;;;;;;;;-1:-1:-1;11271:669:1;;;;;:::i;:::-;;:::i;10238:595::-;;;;;;;;;;-1:-1:-1;10238:595:1;;;;;:::i;:::-;;:::i;2515:508:3:-;;;;;;;;;;-1:-1:-1;2515:508:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6858:35:1:-;;;;;;;;;;-1:-1:-1;6858:35:1;;;;;;;;;;;13408:99;;;;;;;;;;-1:-1:-1;13408:99:1;;;;;:::i;:::-;;:::i;8420:117::-;;;;;;;;;;;;;:::i;7615:53::-;;;;;;;;;;-1:-1:-1;7615:53:1;;;;;:::i;:::-;;;;;;;;;;;;;;9413:427;;;;;;;;;;-1:-1:-1;9413:427:1;;;;;:::i;:::-;;:::i;8786:301::-;;;;;;;;;;-1:-1:-1;8786:301:1;;;;;:::i;:::-;;:::i;1661:101:16:-;;;;;;;;;;;;;:::i;6707:45:1:-;;;;;;;;;;;;6750:2;6707:45;;9092:316;;;;;;;;;;-1:-1:-1;9092:316:1;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7923:133::-;;;;;;;;;;-1:-1:-1;7923:133:1;;;;;:::i;:::-;8000:7;8021:27;;;:18;:27;;;;;;;7923:133;8545:115;;;;;;;;;;-1:-1:-1;8545:115:1;;;;;:::i;:::-;;:::i;8198:97::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;1029:85:16:-;;;;;;;;;;-1:-1:-1;1101:6:16;;-1:-1:-1;;;;;1101:6:16;1029:85;;13512:94:1;;;;;;;;;;-1:-1:-1;13512:94:1;;;;;:::i;:::-;;:::i;13008:99::-;;;;;;;;;;-1:-1:-1;13008:99:1;;;;;:::i;:::-;;:::i;7509:48::-;;;;;;;;;;-1:-1:-1;7509:48:1;;;;;:::i;:::-;;;;;;;;;;;;;;;;8095:95;;;;;;;;;;;;;:::i;8303:109::-;;;;;;;;;;;;;:::i;3091:153:3:-;;;;;;;;;;-1:-1:-1;3091:153:3;;;;;:::i;:::-;;:::i;6826:28:1:-;;;;;;;;;;-1:-1:-1;6826:28:1;;;;-1:-1:-1;;;;;6826:28:1;;;6761:34;;;;;;;;;;;;;;;;8668:113;;;;;;;;;;-1:-1:-1;8668:113:1;;;;;:::i;:::-;-1:-1:-1;;;;;8751:22:1;8727:4;8751:22;;;:16;:22;;;;;;;;;8668:113;12257:269;;;;;;;;;;-1:-1:-1;12257:269:1;;;;;:::i;:::-;;:::i;13302:101::-;;;;;;;;;;;;;:::i;13209:88::-;;;;;;;;;;;;;:::i;15548:462::-;;;;;;;;;;-1:-1:-1;15548:462:1;;;;;:::i;:::-;;:::i;3544:389:3:-;;;;;;;;;;-1:-1:-1;3544:389:3;;;;;:::i;:::-;;:::i;1911:198:16:-;;;;;;;;;;-1:-1:-1;1911:198:16;;;;;:::i;:::-;;:::i;9848:352:1:-;;;;;;;;;;-1:-1:-1;9848:352:1;;;;;:::i;:::-;;:::i;11945:304::-;;;;;;:::i;:::-;;:::i;12879:85::-;;;;;;;;;;-1:-1:-1;12879:85:1;;;;;:::i;:::-;;:::i;2130:228:3:-;2216:7;-1:-1:-1;;;;;2243:21:3;;2235:77;;;;-1:-1:-1;;;2235:77:3;;15509:2:19;2235:77:3;;;15491:21:19;15548:2;15528:18;;;15521:30;15587:34;15567:18;;;15560:62;15658:13;15638:18;;;15631:41;15689:19;;2235:77:3;;;;;;;;;-1:-1:-1;2329:9:3;:13;;;;;;;;;;;-1:-1:-1;;;;;2329:22:3;;;;;;;;;;2130:228;;;;;:::o;1181:305::-;1283:4;1318:41;;;1333:26;1318:41;;:109;;-1:-1:-1;1375:52:3;;;1390:37;1375:52;1318:109;:161;;;-1:-1:-1;952:25:4;937:40;;;;1443:36:3;829:155:4;7170:18:1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4388:1148::-;4646:152;;;4589:12;4646:152;;;;;-1:-1:-1;;;;;4684:19:1;;4614:29;4684:19;;;:6;:19;;;;;;;;;4646:152;;;;;;;;;;;4833:45;4691:11;4646:152;4861:4;4867;4873;4833:6;:45::i;:::-;4811:128;;;;-1:-1:-1;;;4811:128:1;;16363:2:19;4811:128:1;;;16345:21:19;16402:2;16382:18;;;16375:30;16441:34;16421:18;;;16414:62;16512:3;16492:18;;;16485:31;16533:19;;4811:128:1;16161:397:19;4811:128:1;-1:-1:-1;;;;;5028:19:1;;;;;;:6;:19;;;;;;:23;;5050:1;5028:23;:::i;:::-;-1:-1:-1;;;;;5006:19:1;;;;;;:6;:19;;;;;;;:45;;;;5069:126;;;;;5013:11;;5141:10;;5167:17;;5069:126;:::i;:::-;;;;;;;;5306:12;5320:23;5355:4;-1:-1:-1;;;;;5347:18:1;5397:17;5416:11;5380:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;5347:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5305:134;;;;5458:7;5450:48;;;;-1:-1:-1;;;5450:48:1;;18470:2:19;5450:48:1;;;18452:21:19;18509:2;18489:18;;;18482:30;18548;18528:18;;;18521:58;18596:18;;5450:48:1;18268:352:19;5450:48:1;5518:10;4388:1148;-1:-1:-1;;;;;;;;4388:1148:1:o;12531:150::-;12591:13;12642;12657:17;12666:7;12657:8;:17::i;:::-;12625:50;;;;;;;;;:::i;:::-;;;;;;;;;;;;;12611:65;;12531:150;;;:::o;7674:244::-;7726:7;;;7768:126;7804:14;;7793:7;:25;7768:126;;7855:27;;;;:18;:27;;;;;;7846:36;;;;:::i;:::-;;-1:-1:-1;7820:9:1;;;;:::i;:::-;;;;7768:126;;;-1:-1:-1;7905:5:1;7674:244;-1:-1:-1;7674:244:1:o;13112:92::-;1252:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:16;:7;1101:6;;-1:-1:-1;;;;;1101:6:16;;1029:85;1241:7;-1:-1:-1;;;;;1241:23:16;;1233:68;;;;-1:-1:-1;;;1233:68:16;;20446:2:19;1233:68:16;;;20428:21:19;;;20465:18;;;20458:30;20524:34;20504:18;;;20497:62;20576:18;;1233:68:16;20244:356:19;1233:68:16;13172:16:1::1;:27:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;13112:92::o;4005:430:3:-;4238:12;:10;:12::i;:::-;-1:-1:-1;;;;;4230:20:3;:4;-1:-1:-1;;;;;4230:20:3;;:60;;;;4254:36;4271:4;4277:12;:10;:12::i;4254:36::-;4209:157;;;;-1:-1:-1;;;4209:157:3;;20807:2:19;4209:157:3;;;20789:21:19;20846:2;20826:18;;;20819:30;20885:34;20865:18;;;20858:62;20956:20;20936:18;;;20929:48;20994:19;;4209:157:3;20605:414:19;4209:157:3;4376:52;4399:4;4405:2;4409:3;4414:7;4423:4;4376:22;:52::i;:::-;4005:430;;;;;:::o;11271:669:1:-;11466:10;:17;11446:9;:16;:37;11438:72;;;;-1:-1:-1;;;11438:72:1;;21226:2:19;11438:72:1;;;21208:21:19;21265:2;21245:18;;;21238:30;21304:24;21284:18;;;21277:52;21346:18;;11438:72:1;21024:346:19;11438:72:1;11543:8;:15;11523:9;:16;:35;11515:72;;;;-1:-1:-1;;;11515:72:1;;21577:2:19;11515:72:1;;;21559:21:19;21616:2;21596:18;;;21589:30;21655:26;21635:18;;;21628:54;21699:18;;11515:72:1;21375:348:19;11515:72:1;11614:6;;-1:-1:-1;;;;;11614:6:1;11600:10;:20;11592:66;;;;-1:-1:-1;;;11592:66:1;;21930:2:19;11592:66:1;;;21912:21:19;21969:2;21949:18;;;21942:30;22008:34;21988:18;;;21981:62;22079:3;22059:18;;;22052:31;22100:19;;11592:66:1;21728:397:19;11592:66:1;11668:9;11663:273;11687:9;:16;11683:1;:20;11663:273;;;11725:16;11744:9;11754:1;11744:12;;;;;;;;:::i;:::-;;;;;;;11725:31;;11771:15;11789:8;11798:1;11789:11;;;;;;;;:::i;:::-;;;;;;;11771:29;;11815:16;11834:10;11845:1;11834:13;;;;;;;;:::i;:::-;;;;;;;11815:32;;11862:68;11880:10;11892:8;11902:7;11911:8;11921:5;11927:1;11921:8;;;;;;;;:::i;:::-;;;;;;;11862:17;:68::i;:::-;11710:226;;;11705:3;;;;;:::i;:::-;;;;11663:273;;10238:595;10427:10;:17;10407:9;:16;:37;10399:72;;;;-1:-1:-1;;;10399:72:1;;21226:2:19;10399:72:1;;;21208:21:19;21265:2;21245:18;;;21238:30;21304:24;21284:18;;;21277:52;21346:18;;10399:72:1;21024:346:19;10399:72:1;10504:8;:15;10484:9;:16;:35;10476:72;;;;-1:-1:-1;;;10476:72:1;;21577:2:19;10476:72:1;;;21559:21:19;21616:2;21596:18;;;21589:30;21655:26;21635:18;;;21628:54;21699:18;;10476:72:1;21375:348:19;10476:72:1;10575:6;;-1:-1:-1;;;;;10575:6:1;10561:10;:20;;:51;;-1:-1:-1;10599:13:1;;-1:-1:-1;;;;;10599:13:1;10585:10;:27;10561:51;10553:97;;;;-1:-1:-1;;;10553:97:1;;21930:2:19;10553:97:1;;;21912:21:19;21969:2;21949:18;;;21942:30;22008:34;21988:18;;;21981:62;22079:3;22059:18;;;22052:31;22100:19;;10553:97:1;21728:397:19;10553:97:1;10663:16;;;;;;;:24;;10683:4;10663:24;10655:53;;;;-1:-1:-1;;;10655:53:1;;22521:2:19;10655:53:1;;;22503:21:19;22560:2;22540:18;;;22533:30;22599:18;22579;;;22572:46;22635:18;;10655:53:1;22319:340:19;10655:53:1;10718:9;10713:116;10737:9;:16;10733:1;:20;10713:116;;;10766:57;10772:9;10782:1;10772:12;;;;;;;;:::i;:::-;;;;;;;10786:8;10795:1;10786:11;;;;;;;;:::i;:::-;;;;;;;10799:10;10810:1;10799:13;;;;;;;;:::i;:::-;;;;;;;10814:5;10820:1;10814:8;;;;;;;;:::i;:::-;;;;;;;10766:5;:57::i;:::-;10755:3;;;;:::i;:::-;;;;10713:116;;2515:508:3;2666:16;2725:3;:10;2706:8;:15;:29;2698:83;;;;-1:-1:-1;;;2698:83:3;;22866:2:19;2698:83:3;;;22848:21:19;22905:2;22885:18;;;22878:30;22944:34;22924:18;;;22917:62;23015:11;22995:18;;;22988:39;23044:19;;2698:83:3;22664:405:19;2698:83:3;2792:30;2839:8;:15;2825:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2825:30:3;;2792:63;;2871:9;2866:120;2890:8;:15;2886:1;:19;2866:120;;;2945:30;2955:8;2964:1;2955:11;;;;;;;;:::i;:::-;;;;;;;2968:3;2972:1;2968:6;;;;;;;;:::i;:::-;;;;;;;2945:9;:30::i;:::-;2926:13;2940:1;2926:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;2907:3;;;:::i;:::-;;;2866:120;;;-1:-1:-1;3003:13:3;2515:508;-1:-1:-1;;;2515:508:3:o;13408:99:1:-;1252:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:16;:7;1101:6;;-1:-1:-1;;;;;1101:6:16;;1029:85;1241:7;-1:-1:-1;;;;;1241:23:16;;1233:68;;;;-1:-1:-1;;;1233:68:16;;20446:2:19;1233:68:16;;;20428:21:19;;;20465:18;;;20458:30;20524:34;20504:18;;;20497:62;20576:18;;1233:68:16;20244:356:19;1233:68:16;13476:26:1;;::::1;::::0;:13:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;:::-;;13408:99:::0;:::o;8420:117::-;8475:16;8511:18;8504:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8420:117;:::o;9413:427::-;9578:6;;-1:-1:-1;;;;;9578:6:1;9564:10;:20;9556:66;;;;-1:-1:-1;;;9556:66:1;;21930:2:19;9556:66:1;;;21912:21:19;21969:2;21949:18;;;21942:30;22008:34;21988:18;;;21981:62;22079:3;22059:18;;;22052:31;22100:19;;9556:66:1;21728:397:19;9556:66:1;9631:9;9627:172;9650:3;:10;9646:1;:14;9627:172;;;6750:2;9681:3;9685:1;9681:6;;;;;;;;:::i;:::-;;;;;;;:26;9673:75;;;;-1:-1:-1;;;9673:75:1;;23276:2:19;9673:75:1;;;23258:21:19;23315:2;23295:18;;;23288:30;23354:34;23334:18;;;23327:62;23425:6;23405:18;;;23398:34;23449:19;;9673:75:1;23074:400:19;9673:75:1;9784:6;9791:1;9784:9;;;;;;;;:::i;:::-;;;;;;;9754:18;:26;9773:3;9777:1;9773:6;;;;;;;;:::i;:::-;;;;;;;9754:26;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;-1:-1:-1;9662:3:1;;-1:-1:-1;9662:3:1;;;:::i;:::-;;;;9627:172;;;;9803:32;9814:7;9823:3;9828:6;9803:10;:32::i;:::-;9413:427;;;:::o;8786:301::-;8852:16;8875:26;8918:14;;8935:1;8918:18;;;;:::i;:::-;8904:33;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8904:33:1;;8875:62;;8946:15;8942:120;8978:14;;8967:7;:25;8942:120;;9032:24;9042:4;9048:7;9032:9;:24::i;:::-;9011:9;9021:7;9011:18;;;;;;;;:::i;:::-;;;;;;;;;;:45;8994:9;;;;:::i;:::-;;;;8942:120;;;-1:-1:-1;9073:9:1;8786:301;-1:-1:-1;;8786:301:1:o;1661:101:16:-;1252:12;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:16;:7;1101:6;;-1:-1:-1;;;;;1101:6:16;;1029:85;1241:7;-1:-1:-1;;;;;1241:23:16;;1233:68;;;;-1:-1:-1;;;1233:68:16;;20446:2:19;1233:68:16;;;20428:21:19;;;20465:18;;;20458:30;20524:34;20504:18;;;20497:62;20576:18;;1233:68:16;20244:356:19;1233:68:16;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;9092:316:1:-;9160:13;9180:29;9223:14;;9240:1;9223:18;;;;:::i;:::-;9212:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9212:30:1;;9180:62;;9251:15;9247:130;9283:14;;9272:7;:25;9247:130;;9370:1;9343:24;9353:4;9359:7;9343:9;:24::i;:::-;:28;9316:15;9332:7;9316:24;;;;;;;;:::i;:::-;:55;;;:24;;;;;;;;;;;:55;9299:9;;;;:::i;:::-;;;;9247:130;;8545:115;1252:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:16;:7;1101:6;;-1:-1:-1;;;;;1101:6:16;;1029:85;1241:7;-1:-1:-1;;;;;1241:23:16;;1233:68;;;;-1:-1:-1;;;1233:68:16;;20446:2:19;1233:68:16;;;20428:21:19;;;20465:18;;;20458:30;20524:34;20504:18;;;20497:62;20576:18;;1233:68:16;20244:356:19;1233:68:16;8621:14:1::1;:34:::0;8545:115::o;8198:97::-;8243:16;8279:8;8272:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8272:15:1;;;;;;;;;;;;;;;;;;;;;;8198:97;:::o;13512:94::-;1252:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:16;:7;1101:6;;-1:-1:-1;;;;;1101:6:16;;1029:85;1241:7;-1:-1:-1;;;;;1241:23:16;;1233:68;;;;-1:-1:-1;;;1233:68:16;;20446:2:19;1233:68:16;;;20428:21:19;;;20465:18;;;20458:30;20524:34;20504:18;;;20497:62;20576:18;;1233:68:16;20244:356:19;1233:68:16;13580:21:1;;::::1;::::0;:12:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;13008:99::-:0;1252:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:16;:7;1101:6;;-1:-1:-1;;;;;1101:6:16;;1029:85;1241:7;-1:-1:-1;;;;;1241:23:16;;1233:68;;;;-1:-1:-1;;;1233:68:16;;20446:2:19;1233:68:16;;;20428:21:19;;;20465:18;;;20458:30;20524:34;20504:18;;;20497:62;20576:18;;1233:68:16;20244:356:19;1233:68:16;13076:13:1::1;:26:::0;;;::::1;-1:-1:-1::0;;;;;13076:26:1;;;::::1;::::0;;;::::1;::::0;;13008:99::o;8095:95::-;8139:16;8175:7;8168:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8168:14:1;;;;;;;;;;;;;;;;;;;;;;8095:95;:::o;8303:109::-;8354:16;8390:14;8383:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8303:109;:::o;3091:153:3:-;3185:52;3204:12;:10;:12::i;:::-;3218:8;3228;3185:18;:52::i;12257:269:1:-;12316:7;;;12367:126;12403:14;;12392:7;:25;12367:126;;12457:24;12467:4;12473:7;12457:9;:24::i;:::-;12445:36;;;;:::i;:::-;;-1:-1:-1;12419:9:1;;;;:::i;:::-;;;;12367:126;;13302:101;1252:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:16;:7;1101:6;;-1:-1:-1;;;;;1101:6:16;;1029:85;1241:7;-1:-1:-1;;;;;1241:23:16;;1233:68;;;;-1:-1:-1;;;1233:68:16;;20446:2:19;1233:68:16;;;20428:21:19;;;20465:18;;;20458:30;20524:34;20504:18;;;20497:62;20576:18;;1233:68:16;20244:356:19;1233:68:16;13347:51:1::1;::::0;13355:10:::1;::::0;13376:21:::1;13347:51:::0;::::1;;;::::0;::::1;::::0;;;13376:21;13355:10;13347:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;13302:101::o:0;13209:88::-;13253:13;13280:12;13273:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13273:19:1;;13209:88;-1:-1:-1;;;;;13209:88:1:o;15548:462::-;15664:15;-1:-1:-1;;;;;15772:64:1;;15793:42;15772:64;15768:108;;;-1:-1:-1;15860:4:1;15853:11;;15768:108;-1:-1:-1;;;;;3433:27:3;;;3410:4;3433:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;15959:43:1;15952:50;15548:462;-1:-1:-1;;;15548:462:1:o;3544:389:3:-;3752:12;:10;:12::i;:::-;-1:-1:-1;;;;;3744:20:3;:4;-1:-1:-1;;;;;3744:20:3;;:60;;;;3768:36;3785:4;3791:12;:10;:12::i;3768:36::-;3723:148;;;;-1:-1:-1;;;3723:148:3;;23811:2:19;3723:148:3;;;23793:21:19;23850:2;23830:18;;;23823:30;23889:34;23869:18;;;23862:62;23960:11;23940:18;;;23933:39;23989:19;;3723:148:3;23609:405:19;3723:148:3;3881:45;3899:4;3905:2;3909;3913:6;3921:4;3881:17;:45::i;1911:198:16:-;1252:12;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:16;:7;1101:6;;-1:-1:-1;;;;;1101:6:16;;1029:85;1241:7;-1:-1:-1;;;;;1241:23:16;;1233:68;;;;-1:-1:-1;;;1233:68:16;;20446:2:19;1233:68:16;;;20428:21:19;;;20465:18;;;20458:30;20524:34;20504:18;;;20497:62;20576:18;;1233:68:16;20244:356:19;1233:68:16;-1:-1:-1;;;;;1999:22:16;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:16;;24221:2:19;1991:73:16::1;::::0;::::1;24203:21:19::0;24260:2;24240:18;;;24233:30;24299:34;24279:18;;;24272:62;24370:8;24350:18;;;24343:36;24396:19;;1991:73:16::1;24019:402:19::0;1991:73:16::1;2074:28;2093:8;2074:18;:28::i;9848:352:1:-:0;9988:6;;-1:-1:-1;;;;;9988:6:1;9974:10;:20;9966:66;;;;-1:-1:-1;;;9966:66:1;;21930:2:19;9966:66:1;;;21912:21:19;21969:2;21949:18;;;21942:30;22008:34;21988:18;;;21981:62;22079:3;22059:18;;;22052:31;22100:19;;9966:66:1;21728:397:19;9966:66:1;6750:2;10051;:22;10043:71;;;;-1:-1:-1;;;10043:71:1;;23276:2:19;10043:71:1;;;23258:21:19;23315:2;23295:18;;;23288:30;23354:34;23334:18;;;23327:62;23425:6;23405:18;;;23398:34;23449:19;;10043:71:1;23074:400:19;10043:71:1;10125:25;10131:7;10140:2;10144:5;10125;:25::i;:::-;10161:22;;;;:18;:22;;;;;:31;;10187:5;;10161:22;:31;;10187:5;;10161:31;:::i;:::-;;;;-1:-1:-1;;;;;9848:352:1:o;11945:304::-;12092:1;12059:30;12069:10;12081:7;12059:9;:30::i;:::-;:34;12051:69;;;;-1:-1:-1;;;12051:69:1;;24628:2:19;12051:69:1;;;24610:21:19;24667:2;24647:18;;;24640:30;24706:24;24686:18;;;24679:52;24748:18;;12051:69:1;24426:346:19;12051:69:1;12150:14;;12139:7;:25;;12131:61;;;;-1:-1:-1;;;12131:61:1;;24979:2:19;12131:61:1;;;24961:21:19;25018:2;24998:18;;;24991:30;25057:25;25037:18;;;25030:53;25100:18;;12131:61:1;24777:347:19;12131:61:1;12202:42;12215:7;12224:9;12235:2;12239:4;12202:42;;;;;;;;;:::i;:::-;;;;;;;;11945:304;;;:::o;12879:85::-;1252:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:16;:7;1101:6;;-1:-1:-1;;;;;1101:6:16;;1029:85;1241:7;-1:-1:-1;;;;;1241:23:16;;1233:68;;;;-1:-1:-1;;;1233:68:16;;20446:2:19;1233:68:16;;;20428:21:19;;;20465:18;;;20458:30;20524:34;20504:18;;;20497:62;20576:18;;1233:68:16;20244:356:19;1233:68:16;12940:6:1::1;:19:::0;;;::::1;-1:-1:-1::0;;;;;12940:19:1;;;::::1;::::0;;;::::1;::::0;;12879:85::o;348:650::-;419:22;463:10;485:4;463:27;459:508;;;507:18;528:8;;507:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;567:8:1;778:17;772:24;-1:-1:-1;;;;;746:134:1;;-1:-1:-1;459:508:1;;-1:-1:-1;459:508:1;;-1:-1:-1;944:10:1;459:508;348:650;:::o;6077:486::-;6255:4;-1:-1:-1;;;;;6280:20:1;;6272:70;;;;-1:-1:-1;;;6272:70:1;;25771:2:19;6272:70:1;;;25753:21:19;25810:2;25790:18;;;25783:30;25849:34;25829:18;;;25822:62;25920:7;25900:18;;;25893:35;25945:19;;6272:70:1;25569:401:19;6272:70:1;6396:159;6424:47;6443:27;6463:6;6443:19;:27::i;:::-;6424:18;:47::i;:::-;6396:159;;;;;;;;;;;;26202:25:19;;;;26275:4;26263:17;;26243:18;;;26236:45;26297:18;;;26290:34;;;26340:18;;;26333:34;;;26174:19;;6396:159:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6373:182:1;:6;-1:-1:-1;;;;;6373:182:1;;6353:202;;6077:486;;;;;;;:::o;13611:448::-;13664:27;13702:7;13698:35;;-1:-1:-1;;13717:10:1;;;;;;;;;;;;;;;;;;13611:448::o;13698:35::-;13749:2;13737:9;13772:45;13779:6;;13772:45;;13793:5;;;;:::i;:::-;;-1:-1:-1;13804:7:1;;-1:-1:-1;13809:2:1;13804:7;;:::i;:::-;;;13772:45;;;13821:17;13851:3;13841:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13841:14:1;-1:-1:-1;13821:34:1;-1:-1:-1;13872:3:1;13880:151;13887:7;;13880:151;;13906:5;13910:1;13906;:5;:::i;:::-;13902:9;-1:-1:-1;13917:10:1;13948:7;13953:2;13948;:7;:::i;:::-;13947:14;;13959:2;13947:14;:::i;:::-;13942:19;;:2;:19;:::i;:::-;13931:31;;:2;:31;:::i;:::-;13917:46;;13969:9;13988:4;13981:12;;13969:24;;14009:2;13999:4;14004:1;13999:7;;;;;;;;:::i;:::-;;;;:12;;;;;;;;;;-1:-1:-1;14017:8:1;14023:2;14017:8;;:::i;:::-;;;13896:135;;13880:151;;;-1:-1:-1;14049:4:1;13611:448;-1:-1:-1;;;;13611:448:1:o;16151:161::-;16241:14;16280:24;:22;:24::i;:::-;16273:31;;16151:161;:::o;6178:1115:3:-;6398:7;:14;6384:3;:10;:28;6376:81;;;;-1:-1:-1;;;6376:81:3;;27301:2:19;6376:81:3;;;27283:21:19;27340:2;27320:18;;;27313:30;27379:34;27359:18;;;27352:62;27450:10;27430:18;;;27423:38;27478:19;;6376:81:3;27099:404:19;6376:81:3;-1:-1:-1;;;;;6475:16:3;;6467:66;;;;-1:-1:-1;;;6467:66:3;;27710:2:19;6467:66:3;;;27692:21:19;27749:2;27729:18;;;27722:30;27788:34;27768:18;;;27761:62;27859:7;27839:18;;;27832:35;27884:19;;6467:66:3;27508:401:19;6467:66:3;6544:16;6563:12;:10;:12::i;:::-;6544:31;;6662:9;6657:411;6681:3;:10;6677:1;:14;6657:411;;;6712:10;6725:3;6729:1;6725:6;;;;;;;;:::i;:::-;;;;;;;6712:19;;6745:14;6762:7;6770:1;6762:10;;;;;;;;:::i;:::-;;;;;;;;;;;;6787:19;6809:13;;;;;;;;;;-1:-1:-1;;;;;6809:19:3;;;;;;;;;;;;6762:10;;-1:-1:-1;6850:21:3;;;;6842:76;;;;-1:-1:-1;;;6842:76:3;;28116:2:19;6842:76:3;;;28098:21:19;28155:2;28135:18;;;28128:30;28194:34;28174:18;;;28167:62;28265:12;28245:18;;;28238:40;28295:19;;6842:76:3;27914:406:19;6842:76:3;6960:9;:13;;;;;;;;;;;-1:-1:-1;;;;;6960:19:3;;;;;;;;;;6982:20;;;6960:42;;7030:17;;;;;;;:27;;6982:20;;6960:9;7030:27;;6982:20;;7030:27;:::i;:::-;;;;;;;;6698:370;;;6693:3;;;;:::i;:::-;;;6657:411;;;;7113:2;-1:-1:-1;;;;;7083:47:3;7107:4;-1:-1:-1;;;;;7083:47:3;7097:8;-1:-1:-1;;;;;7083:47:3;;7117:3;7122:7;7083:47;;;;;;;:::i;:::-;;;;;;;;7141:59;7161:8;7171:4;7177:2;7181:3;7186:7;7195:4;7141:19;:59::i;:::-;7211:75;7247:8;7257:4;7263:2;7267:3;7272:7;7281:4;7211:35;:75::i;:::-;6366:927;6178:1115;;;;;:::o;4885:947::-;-1:-1:-1;;;;;5066:16:3;;5058:66;;;;-1:-1:-1;;;5058:66:3;;27710:2:19;5058:66:3;;;27692:21:19;27749:2;27729:18;;;27722:30;27788:34;27768:18;;;27761:62;27859:7;27839:18;;;27832:35;27884:19;;5058:66:3;27508:401:19;5058:66:3;5135:16;5154:12;:10;:12::i;:::-;5135:31;;5176:20;5199:21;5217:2;5199:17;:21::i;:::-;5176:44;;5230:24;5257:25;5275:6;5257:17;:25::i;:::-;5230:52;;5364:19;5386:13;;;;;;;;;;;-1:-1:-1;;;;;5386:19:3;;;;;;;;;;5423:21;;;;5415:76;;;;-1:-1:-1;;;5415:76:3;;28116:2:19;5415:76:3;;;28098:21:19;28155:2;28135:18;;;28128:30;28194:34;28174:18;;;28167:62;28265:12;28245:18;;;28238:40;28295:19;;5415:76:3;27914:406:19;5415:76:3;5525:9;:13;;;;;;;;;;;-1:-1:-1;;;;;5525:19:3;;;;;;;;;;5547:20;;;5525:42;;5587:17;;;;;;;:27;;5547:20;;5525:9;5587:27;;5547:20;;5587:27;:::i;:::-;;;;-1:-1:-1;;5630:46:3;;;28969:25:19;;;29025:2;29010:18;;29003:34;;;-1:-1:-1;;;;;5630:46:3;;;;;;;;;;;;;;28942:18:19;5630:46:3;;;;;;;5687:59;5707:8;5717:4;5723:2;5727:3;5732:7;5741:4;5687:19;:59::i;:::-;5757:68;5788:8;5798:4;5804:2;5808;5812:6;5820:4;5757:30;:68::i;:::-;5048:784;;;;4885:947;;;;;:::o;10838:405:1:-;11000:14;;10994:2;:20;;10986:56;;;;-1:-1:-1;;;10986:56:1;;24979:2:19;10986:56:1;;;24961:21:19;25018:2;24998:18;;;24991:30;25057:25;25037:18;;;25030:53;25100:18;;10986:56:1;24777:347:19;10986:56:1;11047:33;11059:2;11063;11067:6;11075:4;11047:11;:33::i;:::-;11085:22;;;;:18;:22;;;;;:32;;11111:6;;11085:22;:32;;11111:6;;11085:32;:::i;:::-;;;;-1:-1:-1;;;;;;;11132:20:1;;;;;;:16;:20;;;;;;;;11128:111;;11169:7;:16;;;;;;;;;;;;;;;-1:-1:-1;;;;;11169:16:1;;;;;;;;-1:-1:-1;11200:20:1;;;:16;11169;11200:20;;;;:27;;;;;;;;;11128:111;10838:405;;;;:::o;11640:943:3:-;-1:-1:-1;;;;;11787:18:3;;11779:66;;;;-1:-1:-1;;;11779:66:3;;29250:2:19;11779:66:3;;;29232:21:19;29289:2;29269:18;;;29262:30;29328:34;29308:18;;;29301:62;29399:5;29379:18;;;29372:33;29422:19;;11779:66:3;29048:399:19;11779:66:3;11877:7;:14;11863:3;:10;:28;11855:81;;;;-1:-1:-1;;;11855:81:3;;27301:2:19;11855:81:3;;;27283:21:19;27340:2;27320:18;;;27313:30;27379:34;27359:18;;;27352:62;27450:10;27430:18;;;27423:38;27478:19;;11855:81:3;27099:404:19;11855:81:3;11947:16;11966:12;:10;:12::i;:::-;11989:66;;;;;;;;;12034:1;11989:66;;11947:31;-1:-1:-1;12071:9:3;12066:364;12090:3;:10;12086:1;:14;12066:364;;;12121:10;12134:3;12138:1;12134:6;;;;;;;;:::i;:::-;;;;;;;12121:19;;12154:14;12171:7;12179:1;12171:10;;;;;;;;:::i;:::-;;;;;;;;;;;;12196:19;12218:13;;;;;;;;;;-1:-1:-1;;;;;12218:19:3;;;;;;;;;;;;12171:10;;-1:-1:-1;12259:21:3;;;;12251:70;;;;-1:-1:-1;;;12251:70:3;;29654:2:19;12251:70:3;;;29636:21:19;29693:2;29673:18;;;29666:30;29732:34;29712:18;;;29705:62;29803:6;29783:18;;;29776:34;29827:19;;12251:70:3;29452:400:19;12251:70:3;12363:9;:13;;;;;;;;;;;-1:-1:-1;;;;;12363:19:3;;;;;;;;;;12385:20;;12363:42;;12102:3;;;;:::i;:::-;;;;12066:364;;;;12483:1;-1:-1:-1;;;;;12445:55:3;12469:4;-1:-1:-1;;;;;12445:55:3;12459:8;-1:-1:-1;;;;;12445:55:3;;12487:3;12492:7;12445:55;;;;;;;:::i;:::-;;;;;;;;12511:65;12531:8;12541:4;12555:1;12559:3;12564:7;12511:65;;;;;;;;;;;;:19;:65::i;2263:187:16:-;2355:6;;;-1:-1:-1;;;;;2371:17:16;;;;;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;12718:323:3:-;12868:8;-1:-1:-1;;;;;12859:17:3;:5;-1:-1:-1;;;;;12859:17:3;;;12851:71;;;;-1:-1:-1;;;12851:71:3;;30059:2:19;12851:71:3;;;30041:21:19;30098:2;30078:18;;;30071:30;30137:34;30117:18;;;30110:62;30208:11;30188:18;;;30181:39;30237:19;;12851:71:3;29857:405:19;12851:71:3;-1:-1:-1;;;;;12932:25:3;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;12993:41;;1228::19;;;12993::3;;1201:18:19;12993:41:3;;;;;;;12718:323;;;:::o;10660:786::-;-1:-1:-1;;;;;10782:18:3;;10774:66;;;;-1:-1:-1;;;10774:66:3;;29250:2:19;10774:66:3;;;29232:21:19;29289:2;29269:18;;;29262:30;29328:34;29308:18;;;29301:62;29399:5;29379:18;;;29372:33;29422:19;;10774:66:3;29048:399:19;10774:66:3;10851:16;10870:12;:10;:12::i;:::-;10851:31;;10892:20;10915:21;10933:2;10915:17;:21::i;:::-;10892:44;;10946:24;10973:25;10991:6;10973:17;:25::i;:::-;11009:66;;;;;;;;;-1:-1:-1;11009:66:3;;;;11108:13;;;;;;;;;-1:-1:-1;;;;;11108:19:3;;;;;;;;10946:52;;-1:-1:-1;11145:21:3;;;;11137:70;;;;-1:-1:-1;;;11137:70:3;;29654:2:19;11137:70:3;;;29636:21:19;29693:2;29673:18;;;29666:30;29732:34;29712:18;;;29705:62;29803:6;29783:18;;;29776:34;29827:19;;11137:70:3;29452:400:19;11137:70:3;11241:9;:13;;;;;;;;;;;-1:-1:-1;;;;;11241:19:3;;;;;;;;;;;;11263:20;;;11241:42;;11309:54;;28969:25:19;;;29010:18;;;29003:34;;;11241:19:3;;11309:54;;;;;;28942:18:19;11309:54:3;;;;;;;11374:65;11394:8;11404:4;11418:1;11422:3;11427:7;11374:65;;;;;;;;;;;;:19;:65::i;:::-;10764:682;;;;10660:786;;;:::o;5544:410:1:-;5654:7;3724:100;;;;;;;;;;;;;;;;;3704:127;;;;;;;5808:12;;5843:11;;;;5887:24;;;;;5877:35;;;;;;5727:204;;;;;30498:25:19;;;30554:2;30539:18;;30532:34;;;;-1:-1:-1;;;;;30602:55:19;30597:2;30582:18;;30575:83;30689:2;30674:18;;30667:34;30485:3;30470:19;;30267:440;5727:204:1;;;;;;;;;;;;;5699:247;;;;;;5679:267;;5544:410;;;:::o;3222:258::-;3321:7;3423:20;2661:15;;;2583:101;3423:20;3394:63;;30982:66:19;3394:63:1;;;30970:79:19;31065:11;;;31058:27;;;;31101:12;;;31094:28;;;31138:12;;3394:63:1;30712:444:19;14420:1039:1;-1:-1:-1;;;;;14705:16:1;;;;;;:41;;-1:-1:-1;;;;;;14726:20:1;;;;;;:16;:20;;;;;;;;14725:21;14705:41;14702:131;;;14763:7;:16;;;;;;;;;;;;;;;-1:-1:-1;;;;;14763:16:1;;;;;;;;-1:-1:-1;14794:20:1;;;:16;14763;14794:20;;;;:27;;;;;;;;;14702:131;-1:-1:-1;;;;;14888:16:1;;14885:315;;14925:9;14921:268;14944:7;:14;14940:1;:18;14921:268;;;14984:10;14997:3;15001:1;14997:6;;;;;;;;:::i;:::-;;;;;;;14984:19;;15022:11;15036:7;15044:1;15036:10;;;;;;;;:::i;:::-;;;;;;;;;;;15065:8;:19;;;;;;;;;;;;;;;-1:-1:-1;;;;;15065:19:1;;;;;15103:14;:23;;;;;;;;;;;;;;15145:18;:28;;;;;;;-1:-1:-1;15145:28:1;;;;;;;;;-1:-1:-1;14960:3:1;;;;:::i;:::-;;;;14921:268;;;;14885:315;-1:-1:-1;;;;;15270:18:1;;;;;;:48;;;15292:21;15308:4;15292:15;:21::i;:::-;:26;15270:48;15267:109;;;15335:29;15359:4;15335:23;:29::i;:::-;15386:65;6178:1115:3;16072:792;-1:-1:-1;;;;;16304:13:3;;1465:19:0;:23;16300:558:3;;16339:79;;;;;-1:-1:-1;;;;;16339:43:3;;;;;:79;;16383:8;;16393:4;;16399:3;;16404:7;;16413:4;;16339:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16339:79:3;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;16335:513;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;16724:6;16717:14;;-1:-1:-1;;;16717:14:3;;;;;;;;:::i;16335:513::-;;;16771:62;;-1:-1:-1;;;16771:62:3;;33392:2:19;16771:62:3;;;33374:21:19;33431:2;33411:18;;;33404:30;33470:34;33450:18;;;33443:62;33541:22;33521:18;;;33514:50;33581:19;;16771:62:3;33190:416:19;16335:513:3;16497:60;;;16509:48;16497:60;16493:157;;16581:50;;-1:-1:-1;;;16581:50:3;;33813:2:19;16581:50:3;;;33795:21:19;33852:2;33832:18;;;33825:30;33891:34;33871:18;;;33864:62;33962:10;33942:18;;;33935:38;33990:19;;16581:50:3;33611:404:19;16870:193:3;16989:16;;;17003:1;16989:16;;;;;;;;;16936;;16964:22;;16989:16;;;;;;;;;;;;-1:-1:-1;16989:16:3;16964:41;;17026:7;17015:5;17021:1;17015:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;17051:5;16870:193;-1:-1:-1;;16870:193:3:o;15341:725::-;-1:-1:-1;;;;;15548:13:3;;1465:19:0;:23;15544:516:3;;15583:72;;;;;-1:-1:-1;;;;;15583:38:3;;;;;:72;;15622:8;;15632:4;;15638:2;;15642:6;;15650:4;;15583:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15583:72:3;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;15579:471;;;;:::i;:::-;15704:55;;;15716:43;15704:55;15700:152;;15783:50;;-1:-1:-1;;;15783:50:3;;33813:2:19;15783:50:3;;;33795:21:19;33852:2;33832:18;;;33825:30;33891:34;33871:18;;;33864:62;33962:10;33942:18;;;33935:38;33990:19;;15783:50:3;33611:404:19;8575:709:3;-1:-1:-1;;;;;8722:16:3;;8714:62;;;;-1:-1:-1;;;8714:62:3;;34811:2:19;8714:62:3;;;34793:21:19;34850:2;34830:18;;;34823:30;34889:34;34869:18;;;34862:62;34960:3;34940:18;;;34933:31;34981:19;;8714:62:3;34609:397:19;8714:62:3;8787:16;8806:12;:10;:12::i;:::-;8787:31;;8828:20;8851:21;8869:2;8851:17;:21::i;:::-;8828:44;;8882:24;8909:25;8927:6;8909:17;:25::i;:::-;8882:52;;9022:9;:13;;;;;;;;;;;-1:-1:-1;;;;;9022:17:3;;;;;;;;;:27;;9043:6;;9022:9;:27;;9043:6;;9022:27;:::i;:::-;;;;-1:-1:-1;;9064:52:3;;;28969:25:19;;;29025:2;29010:18;;29003:34;;;-1:-1:-1;;;;;9064:52:3;;;;9097:1;;9064:52;;;;;;28942:18:19;9064:52:3;;;;;;;9127:65;9147:8;9165:1;9169:2;9173:3;9178:7;9187:4;9127:19;:65::i;:::-;9203:74;9234:8;9252:1;9256:2;9260;9264:6;9272:4;9203:30;:74::i;14067:345:1:-;14139:9;14134:271;14154:7;:14;14150:18;;14134:271;;;14208:4;-1:-1:-1;;;;;14194:18:1;:7;14202:1;14194:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;14194:10:1;:18;14190:204;;;14246:7;14254:14;;:18;;14271:1;;14254:18;:::i;:::-;14246:27;;;;;;;;:::i;:::-;;;;;;;;;;;14233:7;:10;;-1:-1:-1;;;;;14246:27:1;;;;14241:1;;14233:10;;;;;;:::i;:::-;;;;;;;;;:40;;;;;-1:-1:-1;;;;;14233:40:1;;;;;-1:-1:-1;;;;;14233:40:1;;;;;;14292:7;:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14324:22:1;;;;:16;:22;;;;;:30;;;;;;13476:26:::1;13408:99:::0;:::o;14190:204::-;14170:3;;;;:::i;:::-;;;;14134:271;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:196:19;82:20;;-1:-1:-1;;;;;131:54:19;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:254::-;283:6;291;344:2;332:9;323:7;319:23;315:32;312:52;;;360:1;357;350:12;312:52;383:29;402:9;383:29;:::i;:::-;373:39;459:2;444:18;;;;431:32;;-1:-1:-1;;;215:254:19:o;656:177::-;741:66;734:5;730:78;723:5;720:89;710:117;;823:1;820;813:12;838:245;896:6;949:2;937:9;928:7;924:23;920:32;917:52;;;965:1;962;955:12;917:52;1004:9;991:23;1023:30;1047:5;1023:30;:::i;1280:258::-;1352:1;1362:113;1376:6;1373:1;1370:13;1362:113;;;1452:11;;;1446:18;1433:11;;;1426:39;1398:2;1391:10;1362:113;;;1493:6;1490:1;1487:13;1484:48;;;-1:-1:-1;;1528:1:19;1510:16;;1503:27;1280:258::o;1543:317::-;1585:3;1623:5;1617:12;1650:6;1645:3;1638:19;1666:63;1722:6;1715:4;1710:3;1706:14;1699:4;1692:5;1688:16;1666:63;:::i;:::-;1774:2;1762:15;1779:66;1758:88;1749:98;;;;1849:4;1745:109;;1543:317;-1:-1:-1;;1543:317:19:o;1865:220::-;2014:2;2003:9;1996:21;1977:4;2034:45;2075:2;2064:9;2060:18;2052:6;2034:45;:::i;2321:184::-;2373:77;2370:1;2363:88;2470:4;2467:1;2460:15;2494:4;2491:1;2484:15;2510:308;2616:66;2611:2;2605:4;2601:13;2597:86;2589:6;2585:99;2750:6;2738:10;2735:22;2714:18;2702:10;2699:34;2696:62;2693:88;;;2761:18;;:::i;:::-;2797:2;2790:22;-1:-1:-1;;2510:308:19:o;2823:614::-;2865:5;2918:3;2911:4;2903:6;2899:17;2895:27;2885:55;;2936:1;2933;2926:12;2885:55;2972:6;2959:20;2998:18;2994:2;2991:26;2988:52;;;3020:18;;:::i;:::-;3069:2;3063:9;3081:126;3201:4;3132:66;3125:4;3121:2;3117:13;3113:86;3109:97;3101:6;3081:126;:::i;:::-;3231:2;3223:6;3216:18;3277:3;3270:4;3265:2;3257:6;3253:15;3249:26;3246:35;3243:55;;;3294:1;3291;3284:12;3243:55;3358:2;3351:4;3343:6;3339:17;3332:4;3324:6;3320:17;3307:54;3405:1;3381:15;;;3398:4;3377:26;3370:37;;;;3385:6;2823:614;-1:-1:-1;;;2823:614:19:o;3442:689::-;3544:6;3552;3560;3568;3576;3629:3;3617:9;3608:7;3604:23;3600:33;3597:53;;;3646:1;3643;3636:12;3597:53;3669:29;3688:9;3669:29;:::i;:::-;3659:39;;3749:2;3738:9;3734:18;3721:32;3776:18;3768:6;3765:30;3762:50;;;3808:1;3805;3798:12;3762:50;3831:49;3872:7;3863:6;3852:9;3848:22;3831:49;:::i;:::-;3821:59;;;3927:2;3916:9;3912:18;3899:32;3889:42;;3978:2;3967:9;3963:18;3950:32;3940:42;;4032:3;4021:9;4017:19;4004:33;4077:4;4070:5;4066:16;4059:5;4056:27;4046:55;;4097:1;4094;4087:12;4046:55;4120:5;4110:15;;;3442:689;;;;;;;;:::o;4359:180::-;4418:6;4471:2;4459:9;4450:7;4446:23;4442:32;4439:52;;;4487:1;4484;4477:12;4439:52;-1:-1:-1;4510:23:19;;4359:180;-1:-1:-1;4359:180:19:o;4726:160::-;4791:20;;4847:13;;4840:21;4830:32;;4820:60;;4876:1;4873;4866:12;4891:180;4947:6;5000:2;4988:9;4979:7;4975:23;4971:32;4968:52;;;5016:1;5013;5006:12;4968:52;5039:26;5055:9;5039:26;:::i;5076:186::-;5135:6;5188:2;5176:9;5167:7;5163:23;5159:32;5156:52;;;5204:1;5201;5194:12;5156:52;5227:29;5246:9;5227:29;:::i;5267:183::-;5327:4;5360:18;5352:6;5349:30;5346:56;;;5382:18;;:::i;:::-;-1:-1:-1;5427:1:19;5423:14;5439:4;5419:25;;5267:183::o;5455:724::-;5509:5;5562:3;5555:4;5547:6;5543:17;5539:27;5529:55;;5580:1;5577;5570:12;5529:55;5616:6;5603:20;5642:4;5665:43;5705:2;5665:43;:::i;:::-;5737:2;5731:9;5749:31;5777:2;5769:6;5749:31;:::i;:::-;5815:18;;;5907:1;5903:10;;;;5891:23;;5887:32;;;5849:15;;;;-1:-1:-1;5931:15:19;;;5928:35;;;5959:1;5956;5949:12;5928:35;5995:2;5987:6;5983:15;6007:142;6023:6;6018:3;6015:15;6007:142;;;6089:17;;6077:30;;6127:12;;;;6040;;6007:142;;;-1:-1:-1;6167:6:19;5455:724;-1:-1:-1;;;;;;5455:724:19:o;6184:943::-;6338:6;6346;6354;6362;6370;6423:3;6411:9;6402:7;6398:23;6394:33;6391:53;;;6440:1;6437;6430:12;6391:53;6463:29;6482:9;6463:29;:::i;:::-;6453:39;;6511:38;6545:2;6534:9;6530:18;6511:38;:::i;:::-;6501:48;;6600:2;6589:9;6585:18;6572:32;6623:18;6664:2;6656:6;6653:14;6650:34;;;6680:1;6677;6670:12;6650:34;6703:61;6756:7;6747:6;6736:9;6732:22;6703:61;:::i;:::-;6693:71;;6817:2;6806:9;6802:18;6789:32;6773:48;;6846:2;6836:8;6833:16;6830:36;;;6862:1;6859;6852:12;6830:36;6885:63;6940:7;6929:8;6918:9;6914:24;6885:63;:::i;:::-;6875:73;;7001:3;6990:9;6986:19;6973:33;6957:49;;7031:2;7021:8;7018:16;7015:36;;;7047:1;7044;7037:12;7015:36;;7070:51;7113:7;7102:8;7091:9;7087:24;7070:51;:::i;:::-;7060:61;;;6184:943;;;;;;;;:::o;7132:730::-;7186:5;7239:3;7232:4;7224:6;7220:17;7216:27;7206:55;;7257:1;7254;7247:12;7206:55;7293:6;7280:20;7319:4;7342:43;7382:2;7342:43;:::i;:::-;7414:2;7408:9;7426:31;7454:2;7446:6;7426:31;:::i;:::-;7492:18;;;7584:1;7580:10;;;;7568:23;;7564:32;;;7526:15;;;;-1:-1:-1;7608:15:19;;;7605:35;;;7636:1;7633;7626:12;7605:35;7672:2;7664:6;7660:15;7684:148;7700:6;7695:3;7692:15;7684:148;;;7766:23;7785:3;7766:23;:::i;:::-;7754:36;;7810:12;;;;7717;;7684:148;;7867:1872;8062:6;8070;8078;8086;8139:3;8127:9;8118:7;8114:23;8110:33;8107:53;;;8156:1;8153;8146:12;8107:53;8196:9;8183:23;8225:18;8266:2;8258:6;8255:14;8252:34;;;8282:1;8279;8272:12;8252:34;8305:61;8358:7;8349:6;8338:9;8334:22;8305:61;:::i;:::-;8295:71;;8385:2;8375:12;;8440:2;8429:9;8425:18;8412:32;8469:2;8459:8;8456:16;8453:36;;;8485:1;8482;8475:12;8453:36;8508:63;8563:7;8552:8;8541:9;8537:24;8508:63;:::i;:::-;8498:73;;;8624:2;8613:9;8609:18;8596:32;8653:2;8643:8;8640:16;8637:36;;;8669:1;8666;8659:12;8637:36;8692:63;8747:7;8736:8;8725:9;8721:24;8692:63;:::i;:::-;8682:73;;;8808:2;8797:9;8793:18;8780:32;8837:2;8827:8;8824:16;8821:36;;;8853:1;8850;8843:12;8821:36;8876:24;;8931:4;8923:13;;8919:27;-1:-1:-1;8909:55:19;;8960:1;8957;8950:12;8909:55;8996:2;8983:16;9018:43;9058:2;9018:43;:::i;:::-;9090:2;9084:9;9102:31;9130:2;9122:6;9102:31;:::i;:::-;9168:18;;;9256:1;9252:10;;;;9244:19;;9240:28;;;9202:15;;;;-1:-1:-1;9280:19:19;;;9277:39;;;9312:1;9309;9302:12;9277:39;9344:2;9340;9336:11;9356:352;9372:6;9367:3;9364:15;9356:352;;;9458:3;9445:17;9494:2;9481:11;9478:19;9475:109;;;9538:1;9567:2;9563;9556:14;9475:109;9609:56;9657:7;9652:2;9638:11;9634:2;9630:20;9626:29;9609:56;:::i;:::-;9597:69;;-1:-1:-1;9686:12:19;;;;9389;;9356:352;;;-1:-1:-1;7867:1872:19;;;;-1:-1:-1;7867:1872:19;;-1:-1:-1;;;;;;;7867:1872:19:o;9744:595::-;9862:6;9870;9923:2;9911:9;9902:7;9898:23;9894:32;9891:52;;;9939:1;9936;9929:12;9891:52;9979:9;9966:23;10008:18;10049:2;10041:6;10038:14;10035:34;;;10065:1;10062;10055:12;10035:34;10088:61;10141:7;10132:6;10121:9;10117:22;10088:61;:::i;:::-;10078:71;;10202:2;10191:9;10187:18;10174:32;10158:48;;10231:2;10221:8;10218:16;10215:36;;;10247:1;10244;10237:12;10215:36;;10270:63;10325:7;10314:8;10303:9;10299:24;10270:63;:::i;:::-;10260:73;;;9744:595;;;;;:::o;10344:435::-;10397:3;10435:5;10429:12;10462:6;10457:3;10450:19;10488:4;10517:2;10512:3;10508:12;10501:19;;10554:2;10547:5;10543:14;10575:1;10585:169;10599:6;10596:1;10593:13;10585:169;;;10660:13;;10648:26;;10694:12;;;;10729:15;;;;10621:1;10614:9;10585:169;;;-1:-1:-1;10770:3:19;;10344:435;-1:-1:-1;;;;;10344:435:19:o;10784:261::-;10963:2;10952:9;10945:21;10926:4;10983:56;11035:2;11024:9;11020:18;11012:6;10983:56;:::i;11050:321::-;11119:6;11172:2;11160:9;11151:7;11147:23;11143:32;11140:52;;;11188:1;11185;11178:12;11140:52;11228:9;11215:23;11261:18;11253:6;11250:30;11247:50;;;11293:1;11290;11283:12;11247:50;11316:49;11357:7;11348:6;11337:9;11333:22;11316:49;:::i;:::-;11306:59;11050:321;-1:-1:-1;;;;11050:321:19:o;11376:669::-;11503:6;11511;11519;11572:2;11560:9;11551:7;11547:23;11543:32;11540:52;;;11588:1;11585;11578:12;11540:52;11611:29;11630:9;11611:29;:::i;:::-;11601:39;;11691:2;11680:9;11676:18;11663:32;11714:18;11755:2;11747:6;11744:14;11741:34;;;11771:1;11768;11761:12;11741:34;11794:61;11847:7;11838:6;11827:9;11823:22;11794:61;:::i;:::-;11784:71;;11908:2;11897:9;11893:18;11880:32;11864:48;;11937:2;11927:8;11924:16;11921:36;;;11953:1;11950;11943:12;11921:36;;11976:63;12031:7;12020:8;12009:9;12005:24;11976:63;:::i;:::-;11966:73;;;11376:669;;;;;:::o;12050:642::-;12215:2;12267:21;;;12337:13;;12240:18;;;12359:22;;;12186:4;;12215:2;12438:15;;;;12412:2;12397:18;;;12186:4;12481:185;12495:6;12492:1;12489:13;12481:185;;;12570:13;;12563:21;12556:29;12544:42;;12641:15;;;;12606:12;;;;12517:1;12510:9;12481:185;;;-1:-1:-1;12683:3:19;;12050:642;-1:-1:-1;;;;;;12050:642:19:o;12697:681::-;12868:2;12920:21;;;12990:13;;12893:18;;;13012:22;;;12839:4;;12868:2;13091:15;;;;13065:2;13050:18;;;12839:4;13134:218;13148:6;13145:1;13142:13;13134:218;;;13213:13;;-1:-1:-1;;;;;13209:62:19;13197:75;;13327:15;;;;13292:12;;;;13170:1;13163:9;13134:218;;13383:254;13448:6;13456;13509:2;13497:9;13488:7;13484:23;13480:32;13477:52;;;13525:1;13522;13515:12;13477:52;13548:29;13567:9;13548:29;:::i;:::-;13538:39;;13596:35;13627:2;13616:9;13612:18;13596:35;:::i;:::-;13586:45;;13383:254;;;;;:::o;13642:260::-;13710:6;13718;13771:2;13759:9;13750:7;13746:23;13742:32;13739:52;;;13787:1;13784;13777:12;13739:52;13810:29;13829:9;13810:29;:::i;:::-;13800:39;;13858:38;13892:2;13881:9;13877:18;13858:38;:::i;13907:606::-;14011:6;14019;14027;14035;14043;14096:3;14084:9;14075:7;14071:23;14067:33;14064:53;;;14113:1;14110;14103:12;14064:53;14136:29;14155:9;14136:29;:::i;:::-;14126:39;;14184:38;14218:2;14207:9;14203:18;14184:38;:::i;:::-;14174:48;;14269:2;14258:9;14254:18;14241:32;14231:42;;14320:2;14309:9;14305:18;14292:32;14282:42;;14375:3;14364:9;14360:19;14347:33;14403:18;14395:6;14392:30;14389:50;;;14435:1;14432;14425:12;14389:50;14458:49;14499:7;14490:6;14479:9;14475:22;14458:49;:::i;14518:322::-;14595:6;14603;14611;14664:2;14652:9;14643:7;14639:23;14635:32;14632:52;;;14680:1;14677;14670:12;14632:52;14703:29;14722:9;14703:29;:::i;:::-;14693:39;14779:2;14764:18;;14751:32;;-1:-1:-1;14830:2:19;14815:18;;;14802:32;;14518:322;-1:-1:-1;;;14518:322:19:o;14845:457::-;14932:6;14940;14948;15001:2;14989:9;14980:7;14976:23;14972:32;14969:52;;;15017:1;15014;15007:12;14969:52;15053:9;15040:23;15030:33;;15110:2;15099:9;15095:18;15082:32;15072:42;;15165:2;15154:9;15150:18;15137:32;15192:18;15184:6;15181:30;15178:50;;;15224:1;15221;15214:12;15178:50;15247:49;15288:7;15279:6;15268:9;15264:22;15247:49;:::i;15719:437::-;15798:1;15794:12;;;;15841;;;15862:61;;15916:4;15908:6;15904:17;15894:27;;15862:61;15969:2;15961:6;15958:14;15938:18;15935:38;15932:218;;;16006:77;16003:1;15996:88;16107:4;16104:1;16097:15;16135:4;16132:1;16125:15;16563:184;16615:77;16612:1;16605:88;16712:4;16709:1;16702:15;16736:4;16733:1;16726:15;16752:128;16792:3;16823:1;16819:6;16816:1;16813:13;16810:39;;;16829:18;;:::i;:::-;-1:-1:-1;16865:9:19;;16752:128::o;16885:455::-;17067:4;-1:-1:-1;;;;;17177:2:19;17169:6;17165:15;17154:9;17147:34;17229:2;17221:6;17217:15;17212:2;17201:9;17197:18;17190:43;;17269:2;17264;17253:9;17249:18;17242:30;17289:45;17330:2;17319:9;17315:18;17307:6;17289:45;:::i;:::-;17281:53;16885:455;-1:-1:-1;;;;;16885:455:19:o;17345:184::-;17386:3;17424:5;17418:12;17439:52;17484:6;17479:3;17472:4;17465:5;17461:16;17439:52;:::i;:::-;17507:16;;;;;17345:184;-1:-1:-1;;17345:184:19:o;17534:450::-;17691:3;17729:6;17723:13;17745:53;17791:6;17786:3;17779:4;17771:6;17767:17;17745:53;:::i;:::-;17867:2;17863:15;;;;17880:66;17859:88;17820:16;;;;17845:103;;;17975:2;17964:14;;17534:450;-1:-1:-1;;17534:450:19:o;17989:274::-;18118:3;18156:6;18150:13;18172:53;18218:6;18213:3;18206:4;18198:6;18194:17;18172:53;:::i;:::-;18241:16;;;;;17989:274;-1:-1:-1;;17989:274:19:o;18751:1288::-;18927:3;18956:1;18989:6;18983:13;19019:3;19041:1;19069:9;19065:2;19061:18;19051:28;;19129:2;19118:9;19114:18;19151;19141:61;;19195:4;19187:6;19183:17;19173:27;;19141:61;19221:2;19269;19261:6;19258:14;19238:18;19235:38;19232:222;;;19308:77;19303:3;19296:90;19409:4;19406:1;19399:15;19439:4;19434:3;19427:17;19232:222;19470:18;19497:162;;;;19673:1;19668:320;;;;19463:525;;19497:162;19545:66;19534:9;19530:82;19525:3;19518:95;19642:6;19637:3;19633:16;19626:23;;19497:162;;19668:320;18698:1;18691:14;;;18735:4;18722:18;;19763:1;19777:165;19791:6;19788:1;19785:13;19777:165;;;19869:14;;19856:11;;;19849:35;19912:16;;;;19806:10;;19777:165;;;19781:3;;19971:6;19966:3;19962:16;19955:23;;19463:525;;;;;;;20004:29;20029:3;20021:6;20004:29;:::i;20044:195::-;20083:3;20114:66;20107:5;20104:77;20101:103;;;20184:18;;:::i;:::-;-1:-1:-1;20231:1:19;20220:13;;20044:195::o;22130:184::-;22182:77;22179:1;22172:88;22279:4;22276:1;22269:15;22303:4;22300:1;22293:15;23479:125;23519:4;23547:1;23544;23541:8;23538:34;;;23552:18;;:::i;:::-;-1:-1:-1;23589:9:19;;23479:125::o;25129:435::-;25362:6;25351:9;25344:25;25405:6;25400:2;25389:9;25385:18;25378:34;25448:6;25443:2;25432:9;25428:18;25421:34;25491:3;25486:2;25475:9;25471:18;25464:31;25325:4;25512:46;25553:3;25542:9;25538:19;25530:6;25512:46;:::i;:::-;25504:54;25129:435;-1:-1:-1;;;;;;25129:435:19:o;26378:274::-;26418:1;26444;26434:189;;26479:77;26476:1;26469:88;26580:4;26577:1;26570:15;26608:4;26605:1;26598:15;26434:189;-1:-1:-1;26637:9:19;;26378:274::o;26657:228::-;26697:7;26823:1;26755:66;26751:74;26748:1;26745:81;26740:1;26733:9;26726:17;26722:105;26719:131;;;26830:18;;:::i;:::-;-1:-1:-1;26870:9:19;;26657:228::o;26890:204::-;26928:3;26964:4;26961:1;26957:12;26996:4;26993:1;26989:12;27031:3;27025:4;27021:14;27016:3;27013:23;27010:49;;;27039:18;;:::i;:::-;27075:13;;26890:204;-1:-1:-1;;;26890:204:19:o;28325:465::-;28582:2;28571:9;28564:21;28545:4;28608:56;28660:2;28649:9;28645:18;28637:6;28608:56;:::i;:::-;28712:9;28704:6;28700:22;28695:2;28684:9;28680:18;28673:50;28740:44;28777:6;28769;28740:44;:::i;31161:850::-;31483:4;-1:-1:-1;;;;;31593:2:19;31585:6;31581:15;31570:9;31563:34;31645:2;31637:6;31633:15;31628:2;31617:9;31613:18;31606:43;;31685:3;31680:2;31669:9;31665:18;31658:31;31712:57;31764:3;31753:9;31749:19;31741:6;31712:57;:::i;:::-;31817:9;31809:6;31805:22;31800:2;31789:9;31785:18;31778:50;31851:44;31888:6;31880;31851:44;:::i;:::-;31837:58;;31944:9;31936:6;31932:22;31926:3;31915:9;31911:19;31904:51;31972:33;31998:6;31990;31972:33;:::i;32016:249::-;32085:6;32138:2;32126:9;32117:7;32113:23;32109:32;32106:52;;;32154:1;32151;32144:12;32106:52;32186:9;32180:16;32205:30;32229:5;32205:30;:::i;32270:179::-;32305:3;32347:1;32329:16;32326:23;32323:120;;;32393:1;32390;32387;32372:23;-1:-1:-1;32430:1:19;32424:8;32419:3;32415:18;32270:179;:::o;32454:731::-;32493:3;32535:4;32517:16;32514:26;32511:39;;;32454:731;:::o;32511:39::-;32577:2;32571:9;32599:66;32720:2;32702:16;32698:25;32695:1;32689:4;32674:50;32753:4;32747:11;32777:16;32812:18;32883:2;32876:4;32868:6;32864:17;32861:25;32856:2;32848:6;32845:14;32842:45;32839:58;;;32890:5;;;;;32454:731;:::o;32839:58::-;32927:6;32921:4;32917:17;32906:28;;32963:3;32957:10;32990:2;32982:6;32979:14;32976:27;;;32996:5;;;;;;32454:731;:::o;32976:27::-;33080:2;33061:16;33055:4;33051:27;33047:36;33040:4;33031:6;33026:3;33022:16;33018:27;33015:69;33012:82;;;33087:5;;;;;;32454:731;:::o;33012:82::-;33103:57;33154:4;33145:6;33137;33133:19;33129:30;33123:4;33103:57;:::i;:::-;-1:-1:-1;33176:3:19;;32454:731;-1:-1:-1;;;;;32454:731:19:o;34020:584::-;34242:4;-1:-1:-1;;;;;34352:2:19;34344:6;34340:15;34329:9;34322:34;34404:2;34396:6;34392:15;34387:2;34376:9;34372:18;34365:43;;34444:6;34439:2;34428:9;34424:18;34417:34;34487:6;34482:2;34471:9;34467:18;34460:34;34531:3;34525;34514:9;34510:19;34503:32;34552:46;34593:3;34582:9;34578:19;34570:6;34552:46;:::i;:::-;34544:54;34020:584;-1:-1:-1;;;;;;;34020:584:19:o;35011:184::-;35063:77;35060:1;35053:88;35160:4;35157:1;35150:15;35184:4;35181:1;35174:15

Swarm Source

ipfs://11c6cf524589c6f4166820c4edef3a5e0f5902cc95791e18219808590f65bc83
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.