Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
Overview
Max Total Supply
2,868
Holders
1,436
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ChainsDropV2
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import { ECDSA, Strings } from "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import { ERC1155 } from "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; // Contract by @backseats_eth contract ChainsDropV2 is ERC1155, Ownable { using ECDSA for bytes32; using Strings for uint256; uint public price = 0.025 ether; uint private constant LEGENDARY = 1; uint private constant MEGA_DIAMOND_PENDANT = 2; uint private constant MEGA_DIAMOND_WHALE = 3; uint private constant DIAMOND_ETH_RING = 4; uint private constant DIAMOND_INGOT = 5; uint private constant PLATINUM_ETH_RING = 6; uint private constant PLATINUM_INGOT = 7; uint private constant GOLD_CHAIN_RING = 8; uint private constant GOLD_ETH_RING = 9; uint private constant BASE = 10; uint private constant PUBLIC_FREE = 11; uint private constant PUBLIC_PAID = 12; uint private constant PUBLIC_FREE_MAX_SUPPLY = 10_000; uint private constant PUBLIC_PAID_MAX_SUPPLY = 1_000; uint public freeClaimCount; uint public publicPaidCount; bool public claimIsOpen; bool public freeClaimIsOpen; bool public paidMintIsOpen; bool teamDidMint; address public systemAddress; address private teamAddress = 0x746D5df50a47a1aFc06Fa2B4841809123250C5bD; mapping (address => bool) public addressHasFreeClaimed; mapping (address => bool) public addressHasClaimed; string public _baseURI; // Constructor constructor() ERC1155("") {} // Claim function claim( uint _ownedCount, bool _mdWhale, bool _diamondRing, bool _platinumRing, bool _goldChainRing, bytes calldata _signature ) external { require(claimIsOpen, "Claim closed"); require(addressHasClaimed[msg.sender] == false, "Already claimed"); addressHasClaimed[msg.sender] = true; require(isValidSignature(keccak256(abi.encodePacked(msg.sender, _ownedCount)), _signature), "Invalid signature"); if (_ownedCount > 49) { mintLegendary(_mdWhale, _diamondRing, _platinumRing, _goldChainRing); } else if (_ownedCount >= 30 && _ownedCount < 50) { mintMegaDiamond(_mdWhale, _diamondRing, _platinumRing, _goldChainRing); } else if (_ownedCount >= 10 && _ownedCount < 30) { mintDiamond(_diamondRing, _platinumRing, _goldChainRing); } else if (_ownedCount >= 6 && _ownedCount < 10) { mintPlatinum(_platinumRing, _goldChainRing); } else if (_ownedCount >= 3 && _ownedCount < 6) { mintGold(_goldChainRing); } else { mintBase(); } } // Private Functions function mintLegendary(bool _megaDiamondWhale, bool _diamondRing, bool _platEthRing, bool _goldChainRing) private { mint(LEGENDARY); mintMegaDiamond(_megaDiamondWhale, _diamondRing, _platEthRing, _goldChainRing); } function mintMegaDiamond(bool _megaDiamondWhale, bool _diamondRing, bool _platEthRing, bool _goldChainRing) private { mint(_megaDiamondWhale ? MEGA_DIAMOND_WHALE : MEGA_DIAMOND_PENDANT); mintDiamond(_diamondRing, _platEthRing, _goldChainRing); } function mintDiamond(bool _diamondRing, bool _platEthRing, bool _goldChainRing) private { mint(_diamondRing ? DIAMOND_ETH_RING : DIAMOND_INGOT); mintPlatinum(_platEthRing, _goldChainRing); } function mintPlatinum(bool _platEthRing, bool _goldChainRing) private { mint(_platEthRing ? PLATINUM_ETH_RING : PLATINUM_INGOT); mintGold(_goldChainRing); } function mintGold(bool _goldChainRing) private { mint(_goldChainRing ? GOLD_CHAIN_RING : GOLD_ETH_RING); mintBase(); } function mintBase() private { mint(BASE); } function mint(uint _type) private { _mint(msg.sender, _type, 1, ""); } // Free Claim function freeClaim() external { require(freeClaimIsOpen, "Free claim closed"); require(tx.origin == msg.sender, "C'mon"); require(freeClaimCount + 1 <= PUBLIC_FREE_MAX_SUPPLY, "Free claim sold out"); require(addressHasFreeClaimed[msg.sender] == false, "Already claimed"); addressHasFreeClaimed[msg.sender] = true; unchecked { ++freeClaimCount; } _mint(msg.sender, PUBLIC_FREE, 1, ""); } // Paid Mint function paidMint(uint _amount) external payable { require(paidMintIsOpen, "Paid mint closed"); require(publicPaidCount + _amount <= PUBLIC_PAID_MAX_SUPPLY, "Paid mint sold out"); require(_amount > 0 && _amount < 11, "Mint 1-10"); require(_amount * price == msg.value, "Wrong price"); unchecked { publicPaidCount += _amount; } _mint(msg.sender, PUBLIC_PAID, _amount, ""); } // Airdrop // _idToMint should either be 11 or 12 function airdrop(address[] calldata _addresses, uint _idToMint) external onlyOwner { for (uint i; i < _addresses.length;) { // Mint the address 1 of the ID of the token _mint(_addresses[i], _idToMint, 1, ""); unchecked { ++i; } } } // Team Mints function teamMint() external onlyOwner { require(!teamDidMint); _mint(teamAddress, PUBLIC_FREE, 150, ""); _mint(teamAddress, PUBLIC_PAID, 50, ""); teamDidMint = true; } // Setters function setPrice(uint _wei) external onlyOwner { price = _wei; } function openMint(bool _val) external onlyOwner { claimIsOpen = _val; freeClaimIsOpen = _val; paidMintIsOpen = _val; } function setClaimIsOpen(bool _val) external onlyOwner { claimIsOpen = _val; } function setFreeClaimIsOpen(bool _val) external onlyOwner { freeClaimIsOpen = _val; } function setPaidMintIsOpen(bool _val) external onlyOwner { paidMintIsOpen = _val; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseURI = baseURI; } function setSystemAddress(address _systemAddress) external onlyOwner { systemAddress = _systemAddress; } // View function uri(uint256 tokenId) public view virtual override returns (string memory) { return bytes(_baseURI).length > 0 ? string(abi.encodePacked(_baseURI, tokenId.toString())) : ""; } // Signatures function isValidSignature(bytes32 hash, bytes calldata signature) internal view returns (bool) { require(systemAddress != address(0), "Missing system address"); bytes32 signedHash = hash.toEthSignedMessageHash(); return signedHash.recover(signature) == systemAddress; } // Withdraw function withdraw() external onlyOwner { (bool success, ) = payable(teamAddress).call{value: address(this).balance}(""); require(success, "Withdraw failed"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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); } }
// 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must 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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// 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); }
// 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); } } } }
// 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; } }
// 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; } }
// 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"_baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressHasClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressHasFreeClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"_idToMint","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ownedCount","type":"uint256"},{"internalType":"bool","name":"_mdWhale","type":"bool"},{"internalType":"bool","name":"_diamondRing","type":"bool"},{"internalType":"bool","name":"_platinumRing","type":"bool"},{"internalType":"bool","name":"_goldChainRing","type":"bool"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimIsOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeClaimCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeClaimIsOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_val","type":"bool"}],"name":"openMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"paidMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"paidMintIsOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPaidCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_val","type":"bool"}],"name":"setClaimIsOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_val","type":"bool"}],"name":"setFreeClaimIsOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_val","type":"bool"}],"name":"setPaidMintIsOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wei","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_systemAddress","type":"address"}],"name":"setSystemAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"systemAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526658d15e1762800060045573746d5df50a47a1afc06fa2b4841809123250c5bd600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200007157600080fd5b50604051806020016040528060008152506200009381620000ba60201b60201c565b50620000b4620000a8620000cf60201b60201c565b620000d760201b60201c565b620004fe565b8060029081620000cb919062000417565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200021f57607f821691505b602082108103620002355762000234620001d7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200029f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000260565b620002ab868362000260565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620002f8620002f2620002ec84620002c3565b620002cd565b620002c3565b9050919050565b6000819050919050565b6200031483620002d7565b6200032c6200032382620002ff565b8484546200026d565b825550505050565b600090565b6200034362000334565b6200035081848462000309565b505050565b5b8181101562000378576200036c60008262000339565b60018101905062000356565b5050565b601f821115620003c75762000391816200023b565b6200039c8462000250565b81016020851015620003ac578190505b620003c4620003bb8562000250565b83018262000355565b50505b505050565b600082821c905092915050565b6000620003ec60001984600802620003cc565b1980831691505092915050565b6000620004078383620003d9565b9150826002028217905092915050565b62000422826200019d565b67ffffffffffffffff8111156200043e576200043d620001a8565b5b6200044a825462000206565b620004578282856200037c565b600060209050601f8311600181146200048f57600084156200047a578287015190505b620004868582620003f9565b865550620004f6565b601f1984166200049f866200023b565b60005b82811015620004c957848901518255600182019150602085019450602081019050620004a2565b86831015620004e95784890151620004e5601f891682620003d9565b8355505b6001600288020188555050505b505050505050565b6157ff806200050e6000396000f3fe6080604052600436106101f85760003560e01c806391b7f5ed1161010d578063d27a4a7c116100a0578063e985e9c51161006f578063e985e9c5146106c1578063efe4148b146106fe578063f242432a1461073b578063f2fde38b14610764578063f54bc0081461078d576101f8565b8063d27a4a7c14610629578063d3e848f114610654578063d7d043361461067f578063e88d3b3e146106aa576101f8565b8063b5270784116100dc578063b527078414610597578063ba7a86b8146105c0578063c204642c146105d7578063cde3d66914610600576101f8565b806391b7f5ed146104ef5780639dae8dbe14610518578063a035b1fe14610543578063a22cb4651461056e576101f8565b806344944f311161019057806365cde7331161015f57806365cde7331461043d578063715018a614610459578063743976a014610470578063745e14781461049b5780638da5cb5b146104c4576101f8565b806344944f31146103715780634e1273f4146103ae57806355f804b3146103eb57806358a85bca14610414576101f8565b80630e89341c116101cc5780630e89341c146102cb5780632eb2c2d61461030857806335185c65146103315780633ccfd60b1461035a576101f8565b8062fdd58e146101fd57806301ffc9a71461023a57806303723c331461027757806306210197146102a2575b600080fd5b34801561020957600080fd5b50610224600480360381019061021f91906133e7565b6107b8565b6040516102319190613436565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906134a9565b610880565b60405161026e91906134f1565b60405180910390f35b34801561028357600080fd5b5061028c610962565b60405161029991906134f1565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c4919061350c565b610975565b005b3480156102d757600080fd5b506102f260048036038101906102ed9190613539565b610a35565b6040516102ff91906135ff565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a919061381e565b610a95565b005b34801561033d57600080fd5b5061035860048036038101906103539190613974565b610b36565b005b34801561036657600080fd5b5061036f610da8565b005b34801561037d57600080fd5b506103986004803603810190610393919061350c565b610ef5565b6040516103a591906134f1565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190613ae6565b610f15565b6040516103e29190613c1c565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d9190613c94565b61102e565b005b34801561042057600080fd5b5061043b60048036038101906104369190613ce1565b6110c0565b005b61045760048036038101906104529190613539565b61118d565b005b34801561046557600080fd5b5061046e6112fb565b005b34801561047c57600080fd5b50610485611383565b60405161049291906135ff565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190613ce1565b611411565b005b3480156104d057600080fd5b506104d96114aa565b6040516104e69190613d1d565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190613539565b6114d4565b005b34801561052457600080fd5b5061052d61155a565b60405161053a9190613436565b60405180910390f35b34801561054f57600080fd5b50610558611560565b6040516105659190613436565b60405180910390f35b34801561057a57600080fd5b5061059560048036038101906105909190613d38565b611566565b005b3480156105a357600080fd5b506105be60048036038101906105b99190613ce1565b61157c565b005b3480156105cc57600080fd5b506105d5611615565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190613dce565b611746565b005b34801561060c57600080fd5b5061062760048036038101906106229190613ce1565b611824565b005b34801561063557600080fd5b5061063e6118bd565b60405161064b9190613436565b60405180910390f35b34801561066057600080fd5b506106696118c3565b6040516106769190613d1d565b60405180910390f35b34801561068b57600080fd5b506106946118e9565b6040516106a191906134f1565b60405180910390f35b3480156106b657600080fd5b506106bf6118fc565b005b3480156106cd57600080fd5b506106e860048036038101906106e39190613e2e565b611b26565b6040516106f591906134f1565b60405180910390f35b34801561070a57600080fd5b506107256004803603810190610720919061350c565b611bba565b60405161073291906134f1565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190613e6e565b611bda565b005b34801561077057600080fd5b5061078b6004803603810190610786919061350c565b611c7b565b005b34801561079957600080fd5b506107a2611d72565b6040516107af91906134f1565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081f90613f77565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094b57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095b575061095a82611d85565b5b9050919050565b600760009054906101000a900460ff1681565b61097d611def565b73ffffffffffffffffffffffffffffffffffffffff1661099b6114aa565b73ffffffffffffffffffffffffffffffffffffffff16146109f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e890613fe3565b60405180910390fd5b80600760046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606000600b8054610a4690614032565b905011610a625760405180602001604052806000815250610a8e565b600b610a6d83611df7565b604051602001610a7e929190614137565b6040516020818303038152906040525b9050919050565b610a9d611def565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610ae35750610ae285610add611def565b611b26565b5b610b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b19906141cd565b60405180910390fd5b610b2f8585858585611f57565b5050505050565b600760009054906101000a900460ff16610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90614239565b60405180910390fd5b60001515600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0f906142a5565b60405180910390fd5b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610ca33388604051602001610c8692919061432e565b60405160208183030381529060405280519060200120838361226a565b610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd9906143a6565b60405180910390fd5b6031871115610cfc57610cf7868686866123ba565b610d9f565b601e8710158015610d0d5750603287105b15610d2357610d1e868686866123d6565b610d9e565b600a8710158015610d345750601e87105b15610d4957610d448585856123fe565b610d9d565b60068710158015610d5a5750600a87105b15610d6e57610d698484612424565b610d9c565b60038710158015610d7f5750600687105b15610d9257610d8d83612448565b610d9b565b610d9a61246a565b5b5b5b5b5b50505050505050565b610db0611def565b73ffffffffffffffffffffffffffffffffffffffff16610dce6114aa565b73ffffffffffffffffffffffffffffffffffffffff1614610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90613fe3565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610e6c906143f7565b60006040518083038185875af1925050503d8060008114610ea9576040519150601f19603f3d011682016040523d82523d6000602084013e610eae565b606091505b5050905080610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee990614458565b60405180910390fd5b50565b600a6020528060005260406000206000915054906101000a900460ff1681565b60608151835114610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f52906144ea565b60405180910390fd5b6000835167ffffffffffffffff811115610f7857610f77613626565b5b604051908082528060200260200182016040528015610fa65781602001602082028036833780820191505090505b50905060005b845181101561102357610ff3858281518110610fcb57610fca61450a565b5b6020026020010151858381518110610fe657610fe561450a565b5b60200260200101516107b8565b8282815181106110065761100561450a565b5b6020026020010181815250508061101c90614568565b9050610fac565b508091505092915050565b611036611def565b73ffffffffffffffffffffffffffffffffffffffff166110546114aa565b73ffffffffffffffffffffffffffffffffffffffff16146110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190613fe3565b60405180910390fd5b8181600b91826110bb929190614752565b505050565b6110c8611def565b73ffffffffffffffffffffffffffffffffffffffff166110e66114aa565b73ffffffffffffffffffffffffffffffffffffffff161461113c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113390613fe3565b60405180910390fd5b80600760006101000a81548160ff02191690831515021790555080600760016101000a81548160ff02191690831515021790555080600760026101000a81548160ff02191690831515021790555050565b600760029054906101000a900460ff166111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d39061486e565b60405180910390fd5b6103e8816006546111ed919061488e565b111561122e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122590614930565b60405180910390fd5b60008111801561123e5750600b81105b61127d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112749061499c565b60405180910390fd5b346004548261128c91906149bc565b146112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390614a62565b60405180910390fd5b806006600082825401925050819055506112f833600c8360405180602001604052806000815250612476565b50565b611303611def565b73ffffffffffffffffffffffffffffffffffffffff166113216114aa565b73ffffffffffffffffffffffffffffffffffffffff1614611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e90613fe3565b60405180910390fd5b611381600061260b565b565b600b805461139090614032565b80601f01602080910402602001604051908101604052809291908181526020018280546113bc90614032565b80156114095780601f106113de57610100808354040283529160200191611409565b820191906000526020600020905b8154815290600101906020018083116113ec57829003601f168201915b505050505081565b611419611def565b73ffffffffffffffffffffffffffffffffffffffff166114376114aa565b73ffffffffffffffffffffffffffffffffffffffff161461148d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148490613fe3565b60405180910390fd5b80600760016101000a81548160ff02191690831515021790555050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114dc611def565b73ffffffffffffffffffffffffffffffffffffffff166114fa6114aa565b73ffffffffffffffffffffffffffffffffffffffff1614611550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154790613fe3565b60405180910390fd5b8060048190555050565b60065481565b60045481565b611578611571611def565b83836126d1565b5050565b611584611def565b73ffffffffffffffffffffffffffffffffffffffff166115a26114aa565b73ffffffffffffffffffffffffffffffffffffffff16146115f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ef90613fe3565b60405180910390fd5b80600760026101000a81548160ff02191690831515021790555050565b61161d611def565b73ffffffffffffffffffffffffffffffffffffffff1661163b6114aa565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890613fe3565b60405180910390fd5b600760039054906101000a900460ff16156116ab57600080fd5b6116ea600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b609660405180602001604052806000815250612476565b611729600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c603260405180602001604052806000815250612476565b6001600760036101000a81548160ff021916908315150217905550565b61174e611def565b73ffffffffffffffffffffffffffffffffffffffff1661176c6114aa565b73ffffffffffffffffffffffffffffffffffffffff16146117c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b990613fe3565b60405180910390fd5b60005b8383905081101561181e576118138484838181106117e6576117e561450a565b5b90506020020160208101906117fb919061350c565b83600160405180602001604052806000815250612476565b8060010190506117c5565b50505050565b61182c611def565b73ffffffffffffffffffffffffffffffffffffffff1661184a6114aa565b73ffffffffffffffffffffffffffffffffffffffff16146118a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189790613fe3565b60405180910390fd5b80600760006101000a81548160ff02191690831515021790555050565b60055481565b600760049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760029054906101000a900460ff1681565b600760019054906101000a900460ff1661194b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194290614ace565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b090614b3a565b60405180910390fd5b61271060016005546119cb919061488e565b1115611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0390614ba6565b60405180910390fd5b60001515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a96906142a5565b60405180910390fd5b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060056000815460010191905081905550611b2433600b600160405180602001604052806000815250612476565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60096020528060005260406000206000915054906101000a900460ff1681565b611be2611def565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611c285750611c2785611c22611def565b611b26565b5b611c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5e90614c38565b60405180910390fd5b611c74858585858561283d565b5050505050565b611c83611def565b73ffffffffffffffffffffffffffffffffffffffff16611ca16114aa565b73ffffffffffffffffffffffffffffffffffffffff1614611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee90613fe3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5d90614cca565b60405180910390fd5b611d6f8161260b565b50565b600760019054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b606060008203611e3e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f52565b600082905060005b60008214611e70578080611e5990614568565b915050600a82611e699190614d19565b9150611e46565b60008167ffffffffffffffff811115611e8c57611e8b613626565b5b6040519080825280601f01601f191660200182016040528015611ebe5781602001600182028036833780820191505090505b5090505b60008514611f4b57600182611ed79190614d4a565b9150600a85611ee69190614d7e565b6030611ef2919061488e565b60f81b818381518110611f0857611f0761450a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f449190614d19565b9450611ec2565b8093505050505b919050565b8151835114611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9290614e21565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361200a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200190614eb3565b60405180910390fd5b6000612014611def565b9050612024818787878787612abe565b60005b84518110156121d55760008582815181106120455761204461450a565b5b6020026020010151905060008583815181106120645761206361450a565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fc90614f45565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121ba919061488e565b92505081905550505050806121ce90614568565b9050612027565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161224c929190614f65565b60405180910390a4612262818787878787612ac6565b505050505050565b60008073ffffffffffffffffffffffffffffffffffffffff16600760049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036122fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f390614fe8565b60405180910390fd5b600061230785612c9d565b9050600760049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661239985858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505083612ccd90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16149150509392505050565b6123c46001612cf4565b6123d0848484846123d6565b50505050565b6123ed846123e55760026123e8565b60035b612cf4565b6123f88383836123fe565b50505050565b6124158361240d576005612410565b60045b612cf4565b61241f8282612424565b505050565b61243b82612433576007612436565b60065b612cf4565b61244481612448565b5050565b61245f8161245757600961245a565b60085b612cf4565b61246761246a565b50565b612474600a612cf4565b565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036124e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dc9061507a565b60405180910390fd5b60006124ef611def565b90506125108160008761250188612d13565b61250a88612d13565b87612abe565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461256f919061488e565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516125ed92919061509a565b60405180910390a461260481600087878787612d8d565b5050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361273f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273690615135565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161283091906134f1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036128ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a390614eb3565b60405180910390fd5b60006128b6611def565b90506128d68187876128c788612d13565b6128d088612d13565b87612abe565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561296d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296490614f45565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a22919061488e565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612a9f92919061509a565b60405180910390a4612ab5828888888888612d8d565b50505050505050565b505050505050565b612ae58473ffffffffffffffffffffffffffffffffffffffff16612f64565b15612c95578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612b2b9594939291906151aa565b6020604051808303816000875af1925050508015612b6757506040513d601f19601f82011682018060405250810190612b649190615227565b60015b612c0c57612b73615261565b806308c379a003612bcf5750612b87615283565b80612b925750612bd1565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc691906135ff565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0390615385565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8a90615417565b60405180910390fd5b505b505050505050565b600081604051602001612cb091906154ae565b604051602081830303815290604052805190602001209050919050565b6000806000612cdc8585612f87565b91509150612ce981613008565b819250505092915050565b612d103382600160405180602001604052806000815250612476565b50565b60606000600167ffffffffffffffff811115612d3257612d31613626565b5b604051908082528060200260200182016040528015612d605781602001602082028036833780820191505090505b5090508281600081518110612d7857612d7761450a565b5b60200260200101818152505080915050919050565b612dac8473ffffffffffffffffffffffffffffffffffffffff16612f64565b15612f5c578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612df29594939291906154d4565b6020604051808303816000875af1925050508015612e2e57506040513d601f19601f82011682018060405250810190612e2b9190615227565b60015b612ed357612e3a615261565b806308c379a003612e965750612e4e615283565b80612e595750612e98565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8d91906135ff565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eca90615385565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5190615417565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000806041835103612fc85760008060006020860151925060408601519150606086015160001a9050612fbc878285856131d4565b94509450505050613001565b6040835103612ff8576000806020850151915060408501519050612fed8683836132e0565b935093505050613001565b60006002915091505b9250929050565b6000600481111561301c5761301b61552e565b5b81600481111561302f5761302e61552e565b5b03156131d157600160048111156130495761304861552e565b5b81600481111561305c5761305b61552e565b5b0361309c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613093906155a9565b60405180910390fd5b600260048111156130b0576130af61552e565b5b8160048111156130c3576130c261552e565b5b03613103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fa90615615565b60405180910390fd5b600360048111156131175761311661552e565b5b81600481111561312a5761312961552e565b5b0361316a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613161906156a7565b60405180910390fd5b60048081111561317d5761317c61552e565b5b8160048111156131905761318f61552e565b5b036131d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c790615739565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561320f5760006003915091506132d7565b601b8560ff16141580156132275750601c8560ff1614155b156132395760006004915091506132d7565b60006001878787876040516000815260200160405260405161325e9493929190615784565b6020604051602081039080840390855afa158015613280573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036132ce576000600192509250506132d7565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c613323919061488e565b9050613331878288856131d4565b935093505050935093915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061337e82613353565b9050919050565b61338e81613373565b811461339957600080fd5b50565b6000813590506133ab81613385565b92915050565b6000819050919050565b6133c4816133b1565b81146133cf57600080fd5b50565b6000813590506133e1816133bb565b92915050565b600080604083850312156133fe576133fd613349565b5b600061340c8582860161339c565b925050602061341d858286016133d2565b9150509250929050565b613430816133b1565b82525050565b600060208201905061344b6000830184613427565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61348681613451565b811461349157600080fd5b50565b6000813590506134a38161347d565b92915050565b6000602082840312156134bf576134be613349565b5b60006134cd84828501613494565b91505092915050565b60008115159050919050565b6134eb816134d6565b82525050565b600060208201905061350660008301846134e2565b92915050565b60006020828403121561352257613521613349565b5b60006135308482850161339c565b91505092915050565b60006020828403121561354f5761354e613349565b5b600061355d848285016133d2565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156135a0578082015181840152602081019050613585565b838111156135af576000848401525b50505050565b6000601f19601f8301169050919050565b60006135d182613566565b6135db8185613571565b93506135eb818560208601613582565b6135f4816135b5565b840191505092915050565b6000602082019050818103600083015261361981846135c6565b905092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61365e826135b5565b810181811067ffffffffffffffff8211171561367d5761367c613626565b5b80604052505050565b600061369061333f565b905061369c8282613655565b919050565b600067ffffffffffffffff8211156136bc576136bb613626565b5b602082029050602081019050919050565b600080fd5b60006136e56136e0846136a1565b613686565b90508083825260208201905060208402830185811115613708576137076136cd565b5b835b81811015613731578061371d88826133d2565b84526020840193505060208101905061370a565b5050509392505050565b600082601f8301126137505761374f613621565b5b81356137608482602086016136d2565b91505092915050565b600080fd5b600067ffffffffffffffff82111561378957613788613626565b5b613792826135b5565b9050602081019050919050565b82818337600083830152505050565b60006137c16137bc8461376e565b613686565b9050828152602081018484840111156137dd576137dc613769565b5b6137e884828561379f565b509392505050565b600082601f83011261380557613804613621565b5b81356138158482602086016137ae565b91505092915050565b600080600080600060a0868803121561383a57613839613349565b5b60006138488882890161339c565b95505060206138598882890161339c565b945050604086013567ffffffffffffffff81111561387a5761387961334e565b5b6138868882890161373b565b935050606086013567ffffffffffffffff8111156138a7576138a661334e565b5b6138b38882890161373b565b925050608086013567ffffffffffffffff8111156138d4576138d361334e565b5b6138e0888289016137f0565b9150509295509295909350565b6138f6816134d6565b811461390157600080fd5b50565b600081359050613913816138ed565b92915050565b600080fd5b60008083601f84011261393457613933613621565b5b8235905067ffffffffffffffff81111561395157613950613919565b5b60208301915083600182028301111561396d5761396c6136cd565b5b9250929050565b600080600080600080600060c0888a03121561399357613992613349565b5b60006139a18a828b016133d2565b97505060206139b28a828b01613904565b96505060406139c38a828b01613904565b95505060606139d48a828b01613904565b94505060806139e58a828b01613904565b93505060a088013567ffffffffffffffff811115613a0657613a0561334e565b5b613a128a828b0161391e565b925092505092959891949750929550565b600067ffffffffffffffff821115613a3e57613a3d613626565b5b602082029050602081019050919050565b6000613a62613a5d84613a23565b613686565b90508083825260208201905060208402830185811115613a8557613a846136cd565b5b835b81811015613aae5780613a9a888261339c565b845260208401935050602081019050613a87565b5050509392505050565b600082601f830112613acd57613acc613621565b5b8135613add848260208601613a4f565b91505092915050565b60008060408385031215613afd57613afc613349565b5b600083013567ffffffffffffffff811115613b1b57613b1a61334e565b5b613b2785828601613ab8565b925050602083013567ffffffffffffffff811115613b4857613b4761334e565b5b613b548582860161373b565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b93816133b1565b82525050565b6000613ba58383613b8a565b60208301905092915050565b6000602082019050919050565b6000613bc982613b5e565b613bd38185613b69565b9350613bde83613b7a565b8060005b83811015613c0f578151613bf68882613b99565b9750613c0183613bb1565b925050600181019050613be2565b5085935050505092915050565b60006020820190508181036000830152613c368184613bbe565b905092915050565b60008083601f840112613c5457613c53613621565b5b8235905067ffffffffffffffff811115613c7157613c70613919565b5b602083019150836001820283011115613c8d57613c8c6136cd565b5b9250929050565b60008060208385031215613cab57613caa613349565b5b600083013567ffffffffffffffff811115613cc957613cc861334e565b5b613cd585828601613c3e565b92509250509250929050565b600060208284031215613cf757613cf6613349565b5b6000613d0584828501613904565b91505092915050565b613d1781613373565b82525050565b6000602082019050613d326000830184613d0e565b92915050565b60008060408385031215613d4f57613d4e613349565b5b6000613d5d8582860161339c565b9250506020613d6e85828601613904565b9150509250929050565b60008083601f840112613d8e57613d8d613621565b5b8235905067ffffffffffffffff811115613dab57613daa613919565b5b602083019150836020820283011115613dc757613dc66136cd565b5b9250929050565b600080600060408486031215613de757613de6613349565b5b600084013567ffffffffffffffff811115613e0557613e0461334e565b5b613e1186828701613d78565b93509350506020613e24868287016133d2565b9150509250925092565b60008060408385031215613e4557613e44613349565b5b6000613e538582860161339c565b9250506020613e648582860161339c565b9150509250929050565b600080600080600060a08688031215613e8a57613e89613349565b5b6000613e988882890161339c565b9550506020613ea98882890161339c565b9450506040613eba888289016133d2565b9350506060613ecb888289016133d2565b925050608086013567ffffffffffffffff811115613eec57613eeb61334e565b5b613ef8888289016137f0565b9150509295509295909350565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613f61602b83613571565b9150613f6c82613f05565b604082019050919050565b60006020820190508181036000830152613f9081613f54565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613fcd602083613571565b9150613fd882613f97565b602082019050919050565b60006020820190508181036000830152613ffc81613fc0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061404a57607f821691505b60208210810361405d5761405c614003565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461409081614032565b61409a8186614063565b945060018216600081146140b557600181146140ca576140fd565b60ff19831686528115158202860193506140fd565b6140d38561406e565b60005b838110156140f5578154818901526001820191506020810190506140d6565b838801955050505b50505092915050565b600061411182613566565b61411b8185614063565b935061412b818560208601613582565b80840191505092915050565b60006141438285614083565b915061414f8284614106565b91508190509392505050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006141b7603283613571565b91506141c28261415b565b604082019050919050565b600060208201905081810360008301526141e6816141aa565b9050919050565b7f436c61696d20636c6f7365640000000000000000000000000000000000000000600082015250565b6000614223600c83613571565b915061422e826141ed565b602082019050919050565b6000602082019050818103600083015261425281614216565b9050919050565b7f416c726561647920636c61696d65640000000000000000000000000000000000600082015250565b600061428f600f83613571565b915061429a82614259565b602082019050919050565b600060208201905081810360008301526142be81614282565b9050919050565b60008160601b9050919050565b60006142dd826142c5565b9050919050565b60006142ef826142d2565b9050919050565b61430761430282613373565b6142e4565b82525050565b6000819050919050565b614328614323826133b1565b61430d565b82525050565b600061433a82856142f6565b60148201915061434a8284614317565b6020820191508190509392505050565b7f496e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b6000614390601183613571565b915061439b8261435a565b602082019050919050565b600060208201905081810360008301526143bf81614383565b9050919050565b600081905092915050565b50565b60006143e16000836143c6565b91506143ec826143d1565b600082019050919050565b6000614402826143d4565b9150819050919050565b7f5769746864726177206661696c65640000000000000000000000000000000000600082015250565b6000614442600f83613571565b915061444d8261440c565b602082019050919050565b6000602082019050818103600083015261447181614435565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006144d4602983613571565b91506144df82614478565b604082019050919050565b60006020820190508181036000830152614503816144c7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614573826133b1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036145a5576145a4614539565b5b600182019050919050565b600082905092915050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026146087fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826145cb565b61461286836145cb565b95508019841693508086168417925050509392505050565b6000819050919050565b600061464f61464a614645846133b1565b61462a565b6133b1565b9050919050565b6000819050919050565b61466983614634565b61467d61467582614656565b8484546145d8565b825550505050565b600090565b614692614685565b61469d818484614660565b505050565b5b818110156146c1576146b660008261468a565b6001810190506146a3565b5050565b601f821115614706576146d78161406e565b6146e0846145bb565b810160208510156146ef578190505b6147036146fb856145bb565b8301826146a2565b50505b505050565b600082821c905092915050565b60006147296000198460080261470b565b1980831691505092915050565b60006147428383614718565b9150826002028217905092915050565b61475c83836145b0565b67ffffffffffffffff81111561477557614774613626565b5b61477f8254614032565b61478a8282856146c5565b6000601f8311600181146147b957600084156147a7578287013590505b6147b18582614736565b865550614819565b601f1984166147c78661406e565b60005b828110156147ef578489013582556001820191506020850194506020810190506147ca565b8683101561480c5784890135614808601f891682614718565b8355505b6001600288020188555050505b50505050505050565b7f50616964206d696e7420636c6f73656400000000000000000000000000000000600082015250565b6000614858601083613571565b915061486382614822565b602082019050919050565b600060208201905081810360008301526148878161484b565b9050919050565b6000614899826133b1565b91506148a4836133b1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148d9576148d8614539565b5b828201905092915050565b7f50616964206d696e7420736f6c64206f75740000000000000000000000000000600082015250565b600061491a601283613571565b9150614925826148e4565b602082019050919050565b600060208201905081810360008301526149498161490d565b9050919050565b7f4d696e7420312d31300000000000000000000000000000000000000000000000600082015250565b6000614986600983613571565b915061499182614950565b602082019050919050565b600060208201905081810360008301526149b581614979565b9050919050565b60006149c7826133b1565b91506149d2836133b1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a0b57614a0a614539565b5b828202905092915050565b7f57726f6e67207072696365000000000000000000000000000000000000000000600082015250565b6000614a4c600b83613571565b9150614a5782614a16565b602082019050919050565b60006020820190508181036000830152614a7b81614a3f565b9050919050565b7f4672656520636c61696d20636c6f736564000000000000000000000000000000600082015250565b6000614ab8601183613571565b9150614ac382614a82565b602082019050919050565b60006020820190508181036000830152614ae781614aab565b9050919050565b7f43276d6f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614b24600583613571565b9150614b2f82614aee565b602082019050919050565b60006020820190508181036000830152614b5381614b17565b9050919050565b7f4672656520636c61696d20736f6c64206f757400000000000000000000000000600082015250565b6000614b90601383613571565b9150614b9b82614b5a565b602082019050919050565b60006020820190508181036000830152614bbf81614b83565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000614c22602983613571565b9150614c2d82614bc6565b604082019050919050565b60006020820190508181036000830152614c5181614c15565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cb4602683613571565b9150614cbf82614c58565b604082019050919050565b60006020820190508181036000830152614ce381614ca7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d24826133b1565b9150614d2f836133b1565b925082614d3f57614d3e614cea565b5b828204905092915050565b6000614d55826133b1565b9150614d60836133b1565b925082821015614d7357614d72614539565b5b828203905092915050565b6000614d89826133b1565b9150614d94836133b1565b925082614da457614da3614cea565b5b828206905092915050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614e0b602883613571565b9150614e1682614daf565b604082019050919050565b60006020820190508181036000830152614e3a81614dfe565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614e9d602583613571565b9150614ea882614e41565b604082019050919050565b60006020820190508181036000830152614ecc81614e90565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614f2f602a83613571565b9150614f3a82614ed3565b604082019050919050565b60006020820190508181036000830152614f5e81614f22565b9050919050565b60006040820190508181036000830152614f7f8185613bbe565b90508181036020830152614f938184613bbe565b90509392505050565b7f4d697373696e672073797374656d206164647265737300000000000000000000600082015250565b6000614fd2601683613571565b9150614fdd82614f9c565b602082019050919050565b6000602082019050818103600083015261500181614fc5565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615064602183613571565b915061506f82615008565b604082019050919050565b6000602082019050818103600083015261509381615057565b9050919050565b60006040820190506150af6000830185613427565b6150bc6020830184613427565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b600061511f602983613571565b915061512a826150c3565b604082019050919050565b6000602082019050818103600083015261514e81615112565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061517c82615155565b6151868185615160565b9350615196818560208601613582565b61519f816135b5565b840191505092915050565b600060a0820190506151bf6000830188613d0e565b6151cc6020830187613d0e565b81810360408301526151de8186613bbe565b905081810360608301526151f28185613bbe565b905081810360808301526152068184615171565b90509695505050505050565b6000815190506152218161347d565b92915050565b60006020828403121561523d5761523c613349565b5b600061524b84828501615212565b91505092915050565b60008160e01c9050919050565b600060033d11156152805760046000803e61527d600051615254565b90505b90565b600060443d106153105761529561333f565b60043d036004823e80513d602482011167ffffffffffffffff821117156152bd575050615310565b808201805167ffffffffffffffff8111156152db5750505050615310565b80602083010160043d0385018111156152f8575050505050615310565b61530782602001850186613655565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600061536f603483613571565b915061537a82615313565b604082019050919050565b6000602082019050818103600083015261539e81615362565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000615401602883613571565b915061540c826153a5565b604082019050919050565b60006020820190508181036000830152615430816153f4565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b600061546d601c83614063565b915061547882615437565b601c82019050919050565b6000819050919050565b6000819050919050565b6154a86154a382615483565b61548d565b82525050565b60006154b982615460565b91506154c58284615497565b60208201915081905092915050565b600060a0820190506154e96000830188613d0e565b6154f66020830187613d0e565b6155036040830186613427565b6155106060830185613427565b81810360808301526155228184615171565b90509695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615593601883613571565b915061559e8261555d565b602082019050919050565b600060208201905081810360008301526155c281615586565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006155ff601f83613571565b915061560a826155c9565b602082019050919050565b6000602082019050818103600083015261562e816155f2565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615691602283613571565b915061569c82615635565b604082019050919050565b600060208201905081810360008301526156c081615684565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615723602283613571565b915061572e826156c7565b604082019050919050565b6000602082019050818103600083015261575281615716565b9050919050565b61576281615483565b82525050565b600060ff82169050919050565b61577e81615768565b82525050565b60006080820190506157996000830187615759565b6157a66020830186615775565b6157b36040830185615759565b6157c06060830184615759565b9594505050505056fea2646970667358221220fa2cfe1dd47a09972c8dfab84710ce3cf05c31f85e12737ddf1ff0e32670700764736f6c634300080f0033
Deployed Bytecode
0x6080604052600436106101f85760003560e01c806391b7f5ed1161010d578063d27a4a7c116100a0578063e985e9c51161006f578063e985e9c5146106c1578063efe4148b146106fe578063f242432a1461073b578063f2fde38b14610764578063f54bc0081461078d576101f8565b8063d27a4a7c14610629578063d3e848f114610654578063d7d043361461067f578063e88d3b3e146106aa576101f8565b8063b5270784116100dc578063b527078414610597578063ba7a86b8146105c0578063c204642c146105d7578063cde3d66914610600576101f8565b806391b7f5ed146104ef5780639dae8dbe14610518578063a035b1fe14610543578063a22cb4651461056e576101f8565b806344944f311161019057806365cde7331161015f57806365cde7331461043d578063715018a614610459578063743976a014610470578063745e14781461049b5780638da5cb5b146104c4576101f8565b806344944f31146103715780634e1273f4146103ae57806355f804b3146103eb57806358a85bca14610414576101f8565b80630e89341c116101cc5780630e89341c146102cb5780632eb2c2d61461030857806335185c65146103315780633ccfd60b1461035a576101f8565b8062fdd58e146101fd57806301ffc9a71461023a57806303723c331461027757806306210197146102a2575b600080fd5b34801561020957600080fd5b50610224600480360381019061021f91906133e7565b6107b8565b6040516102319190613436565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906134a9565b610880565b60405161026e91906134f1565b60405180910390f35b34801561028357600080fd5b5061028c610962565b60405161029991906134f1565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c4919061350c565b610975565b005b3480156102d757600080fd5b506102f260048036038101906102ed9190613539565b610a35565b6040516102ff91906135ff565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a919061381e565b610a95565b005b34801561033d57600080fd5b5061035860048036038101906103539190613974565b610b36565b005b34801561036657600080fd5b5061036f610da8565b005b34801561037d57600080fd5b506103986004803603810190610393919061350c565b610ef5565b6040516103a591906134f1565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190613ae6565b610f15565b6040516103e29190613c1c565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d9190613c94565b61102e565b005b34801561042057600080fd5b5061043b60048036038101906104369190613ce1565b6110c0565b005b61045760048036038101906104529190613539565b61118d565b005b34801561046557600080fd5b5061046e6112fb565b005b34801561047c57600080fd5b50610485611383565b60405161049291906135ff565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190613ce1565b611411565b005b3480156104d057600080fd5b506104d96114aa565b6040516104e69190613d1d565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190613539565b6114d4565b005b34801561052457600080fd5b5061052d61155a565b60405161053a9190613436565b60405180910390f35b34801561054f57600080fd5b50610558611560565b6040516105659190613436565b60405180910390f35b34801561057a57600080fd5b5061059560048036038101906105909190613d38565b611566565b005b3480156105a357600080fd5b506105be60048036038101906105b99190613ce1565b61157c565b005b3480156105cc57600080fd5b506105d5611615565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190613dce565b611746565b005b34801561060c57600080fd5b5061062760048036038101906106229190613ce1565b611824565b005b34801561063557600080fd5b5061063e6118bd565b60405161064b9190613436565b60405180910390f35b34801561066057600080fd5b506106696118c3565b6040516106769190613d1d565b60405180910390f35b34801561068b57600080fd5b506106946118e9565b6040516106a191906134f1565b60405180910390f35b3480156106b657600080fd5b506106bf6118fc565b005b3480156106cd57600080fd5b506106e860048036038101906106e39190613e2e565b611b26565b6040516106f591906134f1565b60405180910390f35b34801561070a57600080fd5b506107256004803603810190610720919061350c565b611bba565b60405161073291906134f1565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190613e6e565b611bda565b005b34801561077057600080fd5b5061078b6004803603810190610786919061350c565b611c7b565b005b34801561079957600080fd5b506107a2611d72565b6040516107af91906134f1565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081f90613f77565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094b57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095b575061095a82611d85565b5b9050919050565b600760009054906101000a900460ff1681565b61097d611def565b73ffffffffffffffffffffffffffffffffffffffff1661099b6114aa565b73ffffffffffffffffffffffffffffffffffffffff16146109f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e890613fe3565b60405180910390fd5b80600760046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606000600b8054610a4690614032565b905011610a625760405180602001604052806000815250610a8e565b600b610a6d83611df7565b604051602001610a7e929190614137565b6040516020818303038152906040525b9050919050565b610a9d611def565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610ae35750610ae285610add611def565b611b26565b5b610b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b19906141cd565b60405180910390fd5b610b2f8585858585611f57565b5050505050565b600760009054906101000a900460ff16610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90614239565b60405180910390fd5b60001515600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0f906142a5565b60405180910390fd5b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610ca33388604051602001610c8692919061432e565b60405160208183030381529060405280519060200120838361226a565b610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd9906143a6565b60405180910390fd5b6031871115610cfc57610cf7868686866123ba565b610d9f565b601e8710158015610d0d5750603287105b15610d2357610d1e868686866123d6565b610d9e565b600a8710158015610d345750601e87105b15610d4957610d448585856123fe565b610d9d565b60068710158015610d5a5750600a87105b15610d6e57610d698484612424565b610d9c565b60038710158015610d7f5750600687105b15610d9257610d8d83612448565b610d9b565b610d9a61246a565b5b5b5b5b5b50505050505050565b610db0611def565b73ffffffffffffffffffffffffffffffffffffffff16610dce6114aa565b73ffffffffffffffffffffffffffffffffffffffff1614610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90613fe3565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610e6c906143f7565b60006040518083038185875af1925050503d8060008114610ea9576040519150601f19603f3d011682016040523d82523d6000602084013e610eae565b606091505b5050905080610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee990614458565b60405180910390fd5b50565b600a6020528060005260406000206000915054906101000a900460ff1681565b60608151835114610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f52906144ea565b60405180910390fd5b6000835167ffffffffffffffff811115610f7857610f77613626565b5b604051908082528060200260200182016040528015610fa65781602001602082028036833780820191505090505b50905060005b845181101561102357610ff3858281518110610fcb57610fca61450a565b5b6020026020010151858381518110610fe657610fe561450a565b5b60200260200101516107b8565b8282815181106110065761100561450a565b5b6020026020010181815250508061101c90614568565b9050610fac565b508091505092915050565b611036611def565b73ffffffffffffffffffffffffffffffffffffffff166110546114aa565b73ffffffffffffffffffffffffffffffffffffffff16146110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190613fe3565b60405180910390fd5b8181600b91826110bb929190614752565b505050565b6110c8611def565b73ffffffffffffffffffffffffffffffffffffffff166110e66114aa565b73ffffffffffffffffffffffffffffffffffffffff161461113c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113390613fe3565b60405180910390fd5b80600760006101000a81548160ff02191690831515021790555080600760016101000a81548160ff02191690831515021790555080600760026101000a81548160ff02191690831515021790555050565b600760029054906101000a900460ff166111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d39061486e565b60405180910390fd5b6103e8816006546111ed919061488e565b111561122e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122590614930565b60405180910390fd5b60008111801561123e5750600b81105b61127d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112749061499c565b60405180910390fd5b346004548261128c91906149bc565b146112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390614a62565b60405180910390fd5b806006600082825401925050819055506112f833600c8360405180602001604052806000815250612476565b50565b611303611def565b73ffffffffffffffffffffffffffffffffffffffff166113216114aa565b73ffffffffffffffffffffffffffffffffffffffff1614611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e90613fe3565b60405180910390fd5b611381600061260b565b565b600b805461139090614032565b80601f01602080910402602001604051908101604052809291908181526020018280546113bc90614032565b80156114095780601f106113de57610100808354040283529160200191611409565b820191906000526020600020905b8154815290600101906020018083116113ec57829003601f168201915b505050505081565b611419611def565b73ffffffffffffffffffffffffffffffffffffffff166114376114aa565b73ffffffffffffffffffffffffffffffffffffffff161461148d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148490613fe3565b60405180910390fd5b80600760016101000a81548160ff02191690831515021790555050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114dc611def565b73ffffffffffffffffffffffffffffffffffffffff166114fa6114aa565b73ffffffffffffffffffffffffffffffffffffffff1614611550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154790613fe3565b60405180910390fd5b8060048190555050565b60065481565b60045481565b611578611571611def565b83836126d1565b5050565b611584611def565b73ffffffffffffffffffffffffffffffffffffffff166115a26114aa565b73ffffffffffffffffffffffffffffffffffffffff16146115f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ef90613fe3565b60405180910390fd5b80600760026101000a81548160ff02191690831515021790555050565b61161d611def565b73ffffffffffffffffffffffffffffffffffffffff1661163b6114aa565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890613fe3565b60405180910390fd5b600760039054906101000a900460ff16156116ab57600080fd5b6116ea600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b609660405180602001604052806000815250612476565b611729600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c603260405180602001604052806000815250612476565b6001600760036101000a81548160ff021916908315150217905550565b61174e611def565b73ffffffffffffffffffffffffffffffffffffffff1661176c6114aa565b73ffffffffffffffffffffffffffffffffffffffff16146117c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b990613fe3565b60405180910390fd5b60005b8383905081101561181e576118138484838181106117e6576117e561450a565b5b90506020020160208101906117fb919061350c565b83600160405180602001604052806000815250612476565b8060010190506117c5565b50505050565b61182c611def565b73ffffffffffffffffffffffffffffffffffffffff1661184a6114aa565b73ffffffffffffffffffffffffffffffffffffffff16146118a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189790613fe3565b60405180910390fd5b80600760006101000a81548160ff02191690831515021790555050565b60055481565b600760049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760029054906101000a900460ff1681565b600760019054906101000a900460ff1661194b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194290614ace565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b090614b3a565b60405180910390fd5b61271060016005546119cb919061488e565b1115611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0390614ba6565b60405180910390fd5b60001515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a96906142a5565b60405180910390fd5b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060056000815460010191905081905550611b2433600b600160405180602001604052806000815250612476565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60096020528060005260406000206000915054906101000a900460ff1681565b611be2611def565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611c285750611c2785611c22611def565b611b26565b5b611c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5e90614c38565b60405180910390fd5b611c74858585858561283d565b5050505050565b611c83611def565b73ffffffffffffffffffffffffffffffffffffffff16611ca16114aa565b73ffffffffffffffffffffffffffffffffffffffff1614611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee90613fe3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5d90614cca565b60405180910390fd5b611d6f8161260b565b50565b600760019054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b606060008203611e3e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f52565b600082905060005b60008214611e70578080611e5990614568565b915050600a82611e699190614d19565b9150611e46565b60008167ffffffffffffffff811115611e8c57611e8b613626565b5b6040519080825280601f01601f191660200182016040528015611ebe5781602001600182028036833780820191505090505b5090505b60008514611f4b57600182611ed79190614d4a565b9150600a85611ee69190614d7e565b6030611ef2919061488e565b60f81b818381518110611f0857611f0761450a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f449190614d19565b9450611ec2565b8093505050505b919050565b8151835114611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9290614e21565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361200a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200190614eb3565b60405180910390fd5b6000612014611def565b9050612024818787878787612abe565b60005b84518110156121d55760008582815181106120455761204461450a565b5b6020026020010151905060008583815181106120645761206361450a565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fc90614f45565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121ba919061488e565b92505081905550505050806121ce90614568565b9050612027565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161224c929190614f65565b60405180910390a4612262818787878787612ac6565b505050505050565b60008073ffffffffffffffffffffffffffffffffffffffff16600760049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036122fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f390614fe8565b60405180910390fd5b600061230785612c9d565b9050600760049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661239985858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505083612ccd90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16149150509392505050565b6123c46001612cf4565b6123d0848484846123d6565b50505050565b6123ed846123e55760026123e8565b60035b612cf4565b6123f88383836123fe565b50505050565b6124158361240d576005612410565b60045b612cf4565b61241f8282612424565b505050565b61243b82612433576007612436565b60065b612cf4565b61244481612448565b5050565b61245f8161245757600961245a565b60085b612cf4565b61246761246a565b50565b612474600a612cf4565b565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036124e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dc9061507a565b60405180910390fd5b60006124ef611def565b90506125108160008761250188612d13565b61250a88612d13565b87612abe565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461256f919061488e565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516125ed92919061509a565b60405180910390a461260481600087878787612d8d565b5050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361273f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273690615135565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161283091906134f1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036128ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a390614eb3565b60405180910390fd5b60006128b6611def565b90506128d68187876128c788612d13565b6128d088612d13565b87612abe565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561296d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296490614f45565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a22919061488e565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612a9f92919061509a565b60405180910390a4612ab5828888888888612d8d565b50505050505050565b505050505050565b612ae58473ffffffffffffffffffffffffffffffffffffffff16612f64565b15612c95578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612b2b9594939291906151aa565b6020604051808303816000875af1925050508015612b6757506040513d601f19601f82011682018060405250810190612b649190615227565b60015b612c0c57612b73615261565b806308c379a003612bcf5750612b87615283565b80612b925750612bd1565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc691906135ff565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0390615385565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8a90615417565b60405180910390fd5b505b505050505050565b600081604051602001612cb091906154ae565b604051602081830303815290604052805190602001209050919050565b6000806000612cdc8585612f87565b91509150612ce981613008565b819250505092915050565b612d103382600160405180602001604052806000815250612476565b50565b60606000600167ffffffffffffffff811115612d3257612d31613626565b5b604051908082528060200260200182016040528015612d605781602001602082028036833780820191505090505b5090508281600081518110612d7857612d7761450a565b5b60200260200101818152505080915050919050565b612dac8473ffffffffffffffffffffffffffffffffffffffff16612f64565b15612f5c578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612df29594939291906154d4565b6020604051808303816000875af1925050508015612e2e57506040513d601f19601f82011682018060405250810190612e2b9190615227565b60015b612ed357612e3a615261565b806308c379a003612e965750612e4e615283565b80612e595750612e98565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8d91906135ff565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eca90615385565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5190615417565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000806041835103612fc85760008060006020860151925060408601519150606086015160001a9050612fbc878285856131d4565b94509450505050613001565b6040835103612ff8576000806020850151915060408501519050612fed8683836132e0565b935093505050613001565b60006002915091505b9250929050565b6000600481111561301c5761301b61552e565b5b81600481111561302f5761302e61552e565b5b03156131d157600160048111156130495761304861552e565b5b81600481111561305c5761305b61552e565b5b0361309c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613093906155a9565b60405180910390fd5b600260048111156130b0576130af61552e565b5b8160048111156130c3576130c261552e565b5b03613103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fa90615615565b60405180910390fd5b600360048111156131175761311661552e565b5b81600481111561312a5761312961552e565b5b0361316a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613161906156a7565b60405180910390fd5b60048081111561317d5761317c61552e565b5b8160048111156131905761318f61552e565b5b036131d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c790615739565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561320f5760006003915091506132d7565b601b8560ff16141580156132275750601c8560ff1614155b156132395760006004915091506132d7565b60006001878787876040516000815260200160405260405161325e9493929190615784565b6020604051602081039080840390855afa158015613280573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036132ce576000600192509250506132d7565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c613323919061488e565b9050613331878288856131d4565b935093505050935093915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061337e82613353565b9050919050565b61338e81613373565b811461339957600080fd5b50565b6000813590506133ab81613385565b92915050565b6000819050919050565b6133c4816133b1565b81146133cf57600080fd5b50565b6000813590506133e1816133bb565b92915050565b600080604083850312156133fe576133fd613349565b5b600061340c8582860161339c565b925050602061341d858286016133d2565b9150509250929050565b613430816133b1565b82525050565b600060208201905061344b6000830184613427565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61348681613451565b811461349157600080fd5b50565b6000813590506134a38161347d565b92915050565b6000602082840312156134bf576134be613349565b5b60006134cd84828501613494565b91505092915050565b60008115159050919050565b6134eb816134d6565b82525050565b600060208201905061350660008301846134e2565b92915050565b60006020828403121561352257613521613349565b5b60006135308482850161339c565b91505092915050565b60006020828403121561354f5761354e613349565b5b600061355d848285016133d2565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156135a0578082015181840152602081019050613585565b838111156135af576000848401525b50505050565b6000601f19601f8301169050919050565b60006135d182613566565b6135db8185613571565b93506135eb818560208601613582565b6135f4816135b5565b840191505092915050565b6000602082019050818103600083015261361981846135c6565b905092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61365e826135b5565b810181811067ffffffffffffffff8211171561367d5761367c613626565b5b80604052505050565b600061369061333f565b905061369c8282613655565b919050565b600067ffffffffffffffff8211156136bc576136bb613626565b5b602082029050602081019050919050565b600080fd5b60006136e56136e0846136a1565b613686565b90508083825260208201905060208402830185811115613708576137076136cd565b5b835b81811015613731578061371d88826133d2565b84526020840193505060208101905061370a565b5050509392505050565b600082601f8301126137505761374f613621565b5b81356137608482602086016136d2565b91505092915050565b600080fd5b600067ffffffffffffffff82111561378957613788613626565b5b613792826135b5565b9050602081019050919050565b82818337600083830152505050565b60006137c16137bc8461376e565b613686565b9050828152602081018484840111156137dd576137dc613769565b5b6137e884828561379f565b509392505050565b600082601f83011261380557613804613621565b5b81356138158482602086016137ae565b91505092915050565b600080600080600060a0868803121561383a57613839613349565b5b60006138488882890161339c565b95505060206138598882890161339c565b945050604086013567ffffffffffffffff81111561387a5761387961334e565b5b6138868882890161373b565b935050606086013567ffffffffffffffff8111156138a7576138a661334e565b5b6138b38882890161373b565b925050608086013567ffffffffffffffff8111156138d4576138d361334e565b5b6138e0888289016137f0565b9150509295509295909350565b6138f6816134d6565b811461390157600080fd5b50565b600081359050613913816138ed565b92915050565b600080fd5b60008083601f84011261393457613933613621565b5b8235905067ffffffffffffffff81111561395157613950613919565b5b60208301915083600182028301111561396d5761396c6136cd565b5b9250929050565b600080600080600080600060c0888a03121561399357613992613349565b5b60006139a18a828b016133d2565b97505060206139b28a828b01613904565b96505060406139c38a828b01613904565b95505060606139d48a828b01613904565b94505060806139e58a828b01613904565b93505060a088013567ffffffffffffffff811115613a0657613a0561334e565b5b613a128a828b0161391e565b925092505092959891949750929550565b600067ffffffffffffffff821115613a3e57613a3d613626565b5b602082029050602081019050919050565b6000613a62613a5d84613a23565b613686565b90508083825260208201905060208402830185811115613a8557613a846136cd565b5b835b81811015613aae5780613a9a888261339c565b845260208401935050602081019050613a87565b5050509392505050565b600082601f830112613acd57613acc613621565b5b8135613add848260208601613a4f565b91505092915050565b60008060408385031215613afd57613afc613349565b5b600083013567ffffffffffffffff811115613b1b57613b1a61334e565b5b613b2785828601613ab8565b925050602083013567ffffffffffffffff811115613b4857613b4761334e565b5b613b548582860161373b565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b93816133b1565b82525050565b6000613ba58383613b8a565b60208301905092915050565b6000602082019050919050565b6000613bc982613b5e565b613bd38185613b69565b9350613bde83613b7a565b8060005b83811015613c0f578151613bf68882613b99565b9750613c0183613bb1565b925050600181019050613be2565b5085935050505092915050565b60006020820190508181036000830152613c368184613bbe565b905092915050565b60008083601f840112613c5457613c53613621565b5b8235905067ffffffffffffffff811115613c7157613c70613919565b5b602083019150836001820283011115613c8d57613c8c6136cd565b5b9250929050565b60008060208385031215613cab57613caa613349565b5b600083013567ffffffffffffffff811115613cc957613cc861334e565b5b613cd585828601613c3e565b92509250509250929050565b600060208284031215613cf757613cf6613349565b5b6000613d0584828501613904565b91505092915050565b613d1781613373565b82525050565b6000602082019050613d326000830184613d0e565b92915050565b60008060408385031215613d4f57613d4e613349565b5b6000613d5d8582860161339c565b9250506020613d6e85828601613904565b9150509250929050565b60008083601f840112613d8e57613d8d613621565b5b8235905067ffffffffffffffff811115613dab57613daa613919565b5b602083019150836020820283011115613dc757613dc66136cd565b5b9250929050565b600080600060408486031215613de757613de6613349565b5b600084013567ffffffffffffffff811115613e0557613e0461334e565b5b613e1186828701613d78565b93509350506020613e24868287016133d2565b9150509250925092565b60008060408385031215613e4557613e44613349565b5b6000613e538582860161339c565b9250506020613e648582860161339c565b9150509250929050565b600080600080600060a08688031215613e8a57613e89613349565b5b6000613e988882890161339c565b9550506020613ea98882890161339c565b9450506040613eba888289016133d2565b9350506060613ecb888289016133d2565b925050608086013567ffffffffffffffff811115613eec57613eeb61334e565b5b613ef8888289016137f0565b9150509295509295909350565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613f61602b83613571565b9150613f6c82613f05565b604082019050919050565b60006020820190508181036000830152613f9081613f54565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613fcd602083613571565b9150613fd882613f97565b602082019050919050565b60006020820190508181036000830152613ffc81613fc0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061404a57607f821691505b60208210810361405d5761405c614003565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461409081614032565b61409a8186614063565b945060018216600081146140b557600181146140ca576140fd565b60ff19831686528115158202860193506140fd565b6140d38561406e565b60005b838110156140f5578154818901526001820191506020810190506140d6565b838801955050505b50505092915050565b600061411182613566565b61411b8185614063565b935061412b818560208601613582565b80840191505092915050565b60006141438285614083565b915061414f8284614106565b91508190509392505050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006141b7603283613571565b91506141c28261415b565b604082019050919050565b600060208201905081810360008301526141e6816141aa565b9050919050565b7f436c61696d20636c6f7365640000000000000000000000000000000000000000600082015250565b6000614223600c83613571565b915061422e826141ed565b602082019050919050565b6000602082019050818103600083015261425281614216565b9050919050565b7f416c726561647920636c61696d65640000000000000000000000000000000000600082015250565b600061428f600f83613571565b915061429a82614259565b602082019050919050565b600060208201905081810360008301526142be81614282565b9050919050565b60008160601b9050919050565b60006142dd826142c5565b9050919050565b60006142ef826142d2565b9050919050565b61430761430282613373565b6142e4565b82525050565b6000819050919050565b614328614323826133b1565b61430d565b82525050565b600061433a82856142f6565b60148201915061434a8284614317565b6020820191508190509392505050565b7f496e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b6000614390601183613571565b915061439b8261435a565b602082019050919050565b600060208201905081810360008301526143bf81614383565b9050919050565b600081905092915050565b50565b60006143e16000836143c6565b91506143ec826143d1565b600082019050919050565b6000614402826143d4565b9150819050919050565b7f5769746864726177206661696c65640000000000000000000000000000000000600082015250565b6000614442600f83613571565b915061444d8261440c565b602082019050919050565b6000602082019050818103600083015261447181614435565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006144d4602983613571565b91506144df82614478565b604082019050919050565b60006020820190508181036000830152614503816144c7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614573826133b1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036145a5576145a4614539565b5b600182019050919050565b600082905092915050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026146087fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826145cb565b61461286836145cb565b95508019841693508086168417925050509392505050565b6000819050919050565b600061464f61464a614645846133b1565b61462a565b6133b1565b9050919050565b6000819050919050565b61466983614634565b61467d61467582614656565b8484546145d8565b825550505050565b600090565b614692614685565b61469d818484614660565b505050565b5b818110156146c1576146b660008261468a565b6001810190506146a3565b5050565b601f821115614706576146d78161406e565b6146e0846145bb565b810160208510156146ef578190505b6147036146fb856145bb565b8301826146a2565b50505b505050565b600082821c905092915050565b60006147296000198460080261470b565b1980831691505092915050565b60006147428383614718565b9150826002028217905092915050565b61475c83836145b0565b67ffffffffffffffff81111561477557614774613626565b5b61477f8254614032565b61478a8282856146c5565b6000601f8311600181146147b957600084156147a7578287013590505b6147b18582614736565b865550614819565b601f1984166147c78661406e565b60005b828110156147ef578489013582556001820191506020850194506020810190506147ca565b8683101561480c5784890135614808601f891682614718565b8355505b6001600288020188555050505b50505050505050565b7f50616964206d696e7420636c6f73656400000000000000000000000000000000600082015250565b6000614858601083613571565b915061486382614822565b602082019050919050565b600060208201905081810360008301526148878161484b565b9050919050565b6000614899826133b1565b91506148a4836133b1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148d9576148d8614539565b5b828201905092915050565b7f50616964206d696e7420736f6c64206f75740000000000000000000000000000600082015250565b600061491a601283613571565b9150614925826148e4565b602082019050919050565b600060208201905081810360008301526149498161490d565b9050919050565b7f4d696e7420312d31300000000000000000000000000000000000000000000000600082015250565b6000614986600983613571565b915061499182614950565b602082019050919050565b600060208201905081810360008301526149b581614979565b9050919050565b60006149c7826133b1565b91506149d2836133b1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a0b57614a0a614539565b5b828202905092915050565b7f57726f6e67207072696365000000000000000000000000000000000000000000600082015250565b6000614a4c600b83613571565b9150614a5782614a16565b602082019050919050565b60006020820190508181036000830152614a7b81614a3f565b9050919050565b7f4672656520636c61696d20636c6f736564000000000000000000000000000000600082015250565b6000614ab8601183613571565b9150614ac382614a82565b602082019050919050565b60006020820190508181036000830152614ae781614aab565b9050919050565b7f43276d6f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614b24600583613571565b9150614b2f82614aee565b602082019050919050565b60006020820190508181036000830152614b5381614b17565b9050919050565b7f4672656520636c61696d20736f6c64206f757400000000000000000000000000600082015250565b6000614b90601383613571565b9150614b9b82614b5a565b602082019050919050565b60006020820190508181036000830152614bbf81614b83565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000614c22602983613571565b9150614c2d82614bc6565b604082019050919050565b60006020820190508181036000830152614c5181614c15565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cb4602683613571565b9150614cbf82614c58565b604082019050919050565b60006020820190508181036000830152614ce381614ca7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d24826133b1565b9150614d2f836133b1565b925082614d3f57614d3e614cea565b5b828204905092915050565b6000614d55826133b1565b9150614d60836133b1565b925082821015614d7357614d72614539565b5b828203905092915050565b6000614d89826133b1565b9150614d94836133b1565b925082614da457614da3614cea565b5b828206905092915050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614e0b602883613571565b9150614e1682614daf565b604082019050919050565b60006020820190508181036000830152614e3a81614dfe565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614e9d602583613571565b9150614ea882614e41565b604082019050919050565b60006020820190508181036000830152614ecc81614e90565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614f2f602a83613571565b9150614f3a82614ed3565b604082019050919050565b60006020820190508181036000830152614f5e81614f22565b9050919050565b60006040820190508181036000830152614f7f8185613bbe565b90508181036020830152614f938184613bbe565b90509392505050565b7f4d697373696e672073797374656d206164647265737300000000000000000000600082015250565b6000614fd2601683613571565b9150614fdd82614f9c565b602082019050919050565b6000602082019050818103600083015261500181614fc5565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615064602183613571565b915061506f82615008565b604082019050919050565b6000602082019050818103600083015261509381615057565b9050919050565b60006040820190506150af6000830185613427565b6150bc6020830184613427565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b600061511f602983613571565b915061512a826150c3565b604082019050919050565b6000602082019050818103600083015261514e81615112565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061517c82615155565b6151868185615160565b9350615196818560208601613582565b61519f816135b5565b840191505092915050565b600060a0820190506151bf6000830188613d0e565b6151cc6020830187613d0e565b81810360408301526151de8186613bbe565b905081810360608301526151f28185613bbe565b905081810360808301526152068184615171565b90509695505050505050565b6000815190506152218161347d565b92915050565b60006020828403121561523d5761523c613349565b5b600061524b84828501615212565b91505092915050565b60008160e01c9050919050565b600060033d11156152805760046000803e61527d600051615254565b90505b90565b600060443d106153105761529561333f565b60043d036004823e80513d602482011167ffffffffffffffff821117156152bd575050615310565b808201805167ffffffffffffffff8111156152db5750505050615310565b80602083010160043d0385018111156152f8575050505050615310565b61530782602001850186613655565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600061536f603483613571565b915061537a82615313565b604082019050919050565b6000602082019050818103600083015261539e81615362565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000615401602883613571565b915061540c826153a5565b604082019050919050565b60006020820190508181036000830152615430816153f4565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b600061546d601c83614063565b915061547882615437565b601c82019050919050565b6000819050919050565b6000819050919050565b6154a86154a382615483565b61548d565b82525050565b60006154b982615460565b91506154c58284615497565b60208201915081905092915050565b600060a0820190506154e96000830188613d0e565b6154f66020830187613d0e565b6155036040830186613427565b6155106060830185613427565b81810360808301526155228184615171565b90509695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615593601883613571565b915061559e8261555d565b602082019050919050565b600060208201905081810360008301526155c281615586565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006155ff601f83613571565b915061560a826155c9565b602082019050919050565b6000602082019050818103600083015261562e816155f2565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615691602283613571565b915061569c82615635565b604082019050919050565b600060208201905081810360008301526156c081615684565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615723602283613571565b915061572e826156c7565b604082019050919050565b6000602082019050818103600083015261575281615716565b9050919050565b61576281615483565b82525050565b600060ff82169050919050565b61577e81615768565b82525050565b60006080820190506157996000830187615759565b6157a66020830186615775565b6157b36040830185615759565b6157c06060830184615759565b9594505050505056fea2646970667358221220fa2cfe1dd47a09972c8dfab84710ce3cf05c31f85e12737ddf1ff0e32670700764736f6c634300080f0033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.