ERC-1155
Overview
Max Total Supply
500 FLBSP
Holders
230
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 Source Code Verified (Exact Match)
Contract Name:
FashionLeagueBackstagePass
Compiler Version
v0.8.7+commit.e28d00a7
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.4; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract FashionLeagueBackstagePass is ERC1155, Ownable, ERC1155Supply { // max supply per token uint256 constant maxGold = 50; uint256 constant maxSilver = 150; uint256 constant maxBronze = 300; // max sum of tokens uint256 constant totalTokenLimit = 500; // currently total minted tokens uint256 numTokens; // nonce for randomness uint256 internal nonce; // indices list for randomness uint256[totalTokenLimit] public indices; // token URI string baseURI; string URISuffix; // the address that minted an NFT cannot mint it again. You would need to send your tokens to another address to mint again mapping(address => bool) addressMinted; // allow list mapping(address => bool) allowlist; // minting phases uint256 allowlistBegin; uint256 publicBegin; // test name string public name = "FL Backstage Pass"; string public symbol = "FLBSP"; constructor() ERC1155("") { numTokens = 0; nonce = 0; allowlistBegin = 1666195200; //Oct 19 2022 18:00:00 CEST publicBegin = 1666197000; //Oct 19 2022 18:30:00 CEST URISuffix = ".json"; } // set new uri string without suffix function setURI(string memory newuri) public onlyOwner { _setURI(newuri); } function uri(uint256 _id) public view override returns (string memory) { require(exists(_id), "URI: nonexistent token"); return string(abi.encodePacked(super.uri(_id), Strings.toString(_id), _URISuffix())); } // returns uri suffix function _URISuffix() internal view returns (string memory) { return URISuffix; } // set new uri suffix function setURISuffix(string memory _suffix) public onlyOwner { URISuffix = _suffix; } // returns whether given address already minted function minted(address _address) public view returns (bool) { return addressMinted[_address]; } // returns whether given address is on allow list function allowlisted(address _address) public view returns (bool) { return allowlist[_address]; } // add addresses to allow list function addAddressesToAllowlist(address[] memory addrs) public onlyOwner{ for (uint256 i = 0; i < addrs.length; i++) { allowlist[addrs[i]] = true; } } // remove addresses from allow list function removeAddressesFromAllowlist(address[] memory addrs) public onlyOwner{ for (uint256 i = 0; i < addrs.length; i++) { allowlist[addrs[i]] = false; } } function mintGold(address _to) internal { _mint(_to, 1, 1, ""); } function mintSilver(address _to) internal { _mint(_to, 2, 1, ""); } function mintBronze(address _to) internal { _mint(_to, 3, 1, ""); } function mint() public { // maximum tokens should not be exceeded require(globalTotal() < totalTokenLimit, "mint exceeds max"); // only one mint per address require(!addressMinted[msg.sender], "already minted"); // check whether on allowlist during allowlist mint if(block.timestamp >= allowlistBegin && block.timestamp < publicBegin) { require(allowlist[msg.sender], "not on allowlist"); } // check whether public mint phase active if not allowlist else { require(block.timestamp >= publicBegin, "public mint not yet active"); } // get randomness uint256 value = randomIndex(); numTokens++; // based on randomness mint rarity if(value > 200) { mintBronze(msg.sender); } else if(value > 50) { mintSilver(msg.sender); } else { mintGold(msg.sender); } // add minter to adrress minted addressMinted[msg.sender] = true; } // batch mint function batchMint(uint256 _quantity) public onlyOwner { require(_quantity <= totalTokenLimit - globalTotal(), "batchMint exceeds max"); for(uint256 i = 0; i < _quantity; i++) { uint256 value = randomIndex(); numTokens++; if(value > 200) { mintBronze(msg.sender); } else if(value > 50) { mintSilver(msg.sender); } else { mintGold(msg.sender); } } } /* Specify an array of addresses (receivers) that will receive 1 token of specific token id: batchTransfer(["0x123...", "0xabc...", ...], id = 1) e.g. batchTransfer(["0x123...", "0xabc..."], 2); would transfer 1 token of id 2 to each address 0x123..., 0xabc... etc. */ function batchTransfer(address[] memory _addresses, uint256 _id) public { uint256 leng = _addresses.length; require(balanceOf(msg.sender, _id) >= leng, "insufficient type qantity"); for(uint256 i = 0; i < leng; i++) { address _address = _addresses[i]; safeTransferFrom(msg.sender, _address, _id, 1, ""); } } //sets the publicBegin time in unix time function setPublicBegin(uint256 publicBeginTime) public onlyOwner { publicBegin = publicBeginTime; } //sets the allowlistBegin time in unix time function setAllowlistBegin(uint256 allowlistBeginTime) public onlyOwner { allowlistBegin = allowlistBeginTime; } // returns public mint begin time function getPublicBegin() public view returns(uint256) { return publicBegin; } // returns public mint begin time function getAllowlistBegin() public view returns(uint256) { return allowlistBegin; } // returns total global of tokens minted function globalTotal() public view returns (uint256) { return (totalSupply(1) + totalSupply(2) + totalSupply(3)); } // logic behind randomness function randomIndex() internal returns (uint256) { uint256 totalSize = totalTokenLimit - numTokens; uint256 index = (uint256(keccak256(abi.encodePacked(nonce, msg.sender, block.difficulty, block.timestamp))) % totalSize); uint256 value = 0; if (indices[index] != 0) { value = indices[index]; } else { value = index; } // Move last value to selected position if (indices[totalSize - 1] == 0) { // Array position not initialized, so use position indices[index] = totalSize - 1; } else { // Array position holds a value so use that indices[index] = indices[totalSize - 1]; } nonce++; // Don’t allow a zero index, start counting at 1 return value + 1; } // The following functions are overrides required by Solidity. function _beforeTokenTransfer(address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal override(ERC1155, ERC1155Supply) { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol) pragma solidity ^0.8.0; import "../ERC1155.sol"; /** * @dev Extension of ERC1155 that adds tracking of total supply per id. * * Useful for scenarios where Fungible and Non-fungible tokens have to be * clearly identified. Note: While a totalSupply of 1 might mean the * corresponding is an NFT, there is no guarantees that no other token with the * same id are not going to be minted. */ abstract contract ERC1155Supply is ERC1155 { mapping(uint256 => uint256) private _totalSupply; /** * @dev Total amount of tokens in with a given id. */ function totalSupply(uint256 id) public view virtual returns (uint256) { return _totalSupply[id]; } /** * @dev Indicates whether any token exist with a given id, or not. */ function exists(uint256 id) public view virtual returns (bool) { return ERC1155Supply.totalSupply(id) > 0; } /** * @dev See {ERC1155-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); if (from == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] += amounts[i]; } } if (to == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 supply = _totalSupply[id]; require(supply >= amount, "ERC1155: burn amount exceeds totalSupply"); unchecked { _totalSupply[id] = supply - amount; } } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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 (last updated v4.7.0) (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: address zero is not a valid owner"); 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 token 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: caller is not token owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, to, ids, amounts, data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * 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 _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Emits a {TransferSingle} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {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 `ids` and `amounts` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// 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/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 (last updated v4.7.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 /// @solidity memory-safe-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 (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) (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 (last updated v4.7.0) (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 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 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" ] } } }
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":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"addAddressesToAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"allowlisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"batchTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllowlistBegin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPublicBegin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"globalTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"indices","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"minted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"removeAddressesFromAllowlist","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"allowlistBeginTime","type":"uint256"}],"name":"setAllowlistBegin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"publicBeginTime","type":"uint256"}],"name":"setPublicBegin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_suffix","type":"string"}],"name":"setURISuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526040518060400160405280601181526020017f464c204261636b7374616765205061737300000000000000000000000000000081525061020190805190602001906200005292919062000259565b506040518060400160405280600581526020017f464c4253500000000000000000000000000000000000000000000000000000008152506102029080519060200190620000a192919062000259565b50348015620000af57600080fd5b5060405180602001604052806000815250620000d1816200016f60201b60201c565b50620000f2620000e66200018b60201b60201c565b6200019360201b60201c565b600060058190555060006006819055506363501f006101ff819055506363502608610200819055506040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506101fc90805190602001906200016892919062000259565b506200036e565b80600290805190602001906200018792919062000259565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002679062000309565b90600052602060002090601f0160209004810192826200028b5760008555620002d7565b82601f10620002a657805160ff1916838001178555620002d7565b82800160010185558215620002d7579182015b82811115620002d6578251825591602001919060010190620002b9565b5b509050620002e69190620002ea565b5090565b5b8082111562000305576000816000905550600101620002eb565b5090565b600060028204905060018216806200032257607f821691505b602082108114156200033957620003386200033f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6144e3806200037e6000396000f3fe608060405234801561001057600080fd5b50600436106101d85760003560e01c8063715018a61161010457806395d89b41116100a2578063e441289411610071578063e44128941461054f578063e985e9c51461056d578063f242432a1461059d578063f2fde38b146105b9576101d8565b806395d89b41146104b5578063a1a953fd146104d3578063a22cb46514610503578063bd85b0391461051f576101d8565b806383f12fec116100de57806383f12fec146104435780638467be0d1461045f5780638da5cb5b1461047b5780638e218dd214610499576101d8565b8063715018a6146104015780637f17caa71461040b57806381b3e57514610427576101d8565b80631249c58b1161017c57806336a751f51161014b57806336a751f5146103675780634e1273f4146103855780634f558e79146103b55780636caacbe7146103e5576101d8565b80631249c58b146102f35780631548747b146102fd5780631e7269c51461031b5780632eb2c2d61461034b576101d8565b806302fe5305116101b857806302fe53051461025957806303f45d411461027557806306fdde03146102a55780630e89341c146102c3576101d8565b8062bb7d1d146101dd578062fdd58e146101f957806301ffc9a714610229575b600080fd5b6101f760048036038101906101f29190613075565b6105d5565b005b610213600480360381019061020e9190612e75565b6105e8565b6040516102209190613953565b60405180910390f35b610243600480360381019061023e9190612fd2565b6106b1565b6040516102509190613696565b60405180910390f35b610273600480360381019061026e919061302c565b610793565b005b61028f600480360381019061028a9190612c62565b6107a7565b60405161029c9190613696565b60405180910390f35b6102ad6107fe565b6040516102ba91906136b1565b60405180910390f35b6102dd60048036038101906102d89190613075565b61088d565b6040516102ea91906136b1565b60405180910390f35b6102fb610919565b005b610305610b9e565b6040516103129190613953565b60405180910390f35b61033560048036038101906103309190612c62565b610ba9565b6040516103429190613696565b60405180910390f35b61036560048036038101906103609190612ccf565b610c00565b005b61036f610ca1565b60405161037c9190613953565b60405180910390f35b61039f600480360381019061039a9190612efe565b610cda565b6040516103ac919061363d565b60405180910390f35b6103cf60048036038101906103ca9190613075565b610df3565b6040516103dc9190613696565b60405180910390f35b6103ff60048036038101906103fa9190612eb5565b610e07565b005b610409610ea5565b005b61042560048036038101906104209190612eb5565b610eb9565b005b610441600480360381019061043c919061302c565b610f57565b005b61045d60048036038101906104589190612f76565b610f7a565b005b61047960048036038101906104749190613075565b61102d565b005b61048361110c565b6040516104909190613560565b60405180910390f35b6104b360048036038101906104ae9190613075565b611136565b005b6104bd611149565b6040516104ca91906136b1565b60405180910390f35b6104ed60048036038101906104e89190613075565b6111d8565b6040516104fa9190613953565b60405180910390f35b61051d60048036038101906105189190612e35565b6111f4565b005b61053960048036038101906105349190613075565b61120a565b6040516105469190613953565b60405180910390f35b610557611227565b6040516105649190613953565b60405180910390f35b61058760048036038101906105829190612c8f565b611232565b6040516105949190613696565b60405180910390f35b6105b760048036038101906105b29190612d9e565b6112c6565b005b6105d360048036038101906105ce9190612c62565b611367565b005b6105dd6113eb565b806102008190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065090613753565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077c57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061078c575061078b82611469565b5b9050919050565b61079b6113eb565b6107a4816114d3565b50565b60006101fe60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610201805461080c90613c63565b80601f016020809104026020016040519081016040528092919081815260200182805461083890613c63565b80156108855780601f1061085a57610100808354040283529160200191610885565b820191906000526020600020905b81548152906001019060200180831161086857829003601f168201915b505050505081565b606061089882610df3565b6108d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ce90613833565b60405180910390fd5b6108e0826114ed565b6108e983611581565b6108f16116e2565b604051602001610903939291906134e1565b6040516020818303038152906040529050919050565b6101f4610924610ca1565b10610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b90613853565b60405180910390fd5b6101fd60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156109f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e990613933565b60405180910390fd5b6101ff544210158015610a0757506102005442105b15610a9e576101fe60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a90906137b3565b60405180910390fd5b610ae5565b61020054421015610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb90613913565b60405180910390fd5b5b6000610aef611775565b905060056000815480929190610b0490613cc6565b919050555060c8811115610b2057610b1b336118ce565b610b42565b6032811115610b3757610b32336118ee565b610b41565b610b403361190e565b5b5b60016101fd60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600061020054905090565b60006101fd60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610c0861192d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c4e5750610c4d85610c4861192d565b611232565b5b610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c84906136f3565b60405180910390fd5b610c9a8585858585611935565b5050505050565b6000610cad600361120a565b610cb7600261120a565b610cc1600161120a565b610ccb9190613af2565b610cd59190613af2565b905090565b60608151835114610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d17906138b3565b60405180910390fd5b6000835167ffffffffffffffff811115610d3d57610d3c613e2a565b5b604051908082528060200260200182016040528015610d6b5781602001602082028036833780820191505090505b50905060005b8451811015610de857610db8858281518110610d9057610d8f613dfb565b5b6020026020010151858381518110610dab57610daa613dfb565b5b60200260200101516105e8565b828281518110610dcb57610dca613dfb565b5b60200260200101818152505080610de190613cc6565b9050610d71565b508091505092915050565b600080610dff8361120a565b119050919050565b610e0f6113eb565b60005b8151811015610ea15760006101fe6000848481518110610e3557610e34613dfb565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e9990613cc6565b915050610e12565b5050565b610ead6113eb565b610eb76000611c57565b565b610ec16113eb565b60005b8151811015610f535760016101fe6000848481518110610ee757610ee6613dfb565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610f4b90613cc6565b915050610ec4565b5050565b610f5f6113eb565b806101fc9080519060200190610f7692919061293a565b5050565b60008251905080610f8b33846105e8565b1015610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390613773565b60405180910390fd5b60005b81811015611027576000848281518110610fec57610feb613dfb565b5b602002602001015190506110133382866001604051806020016040528060008152506112c6565b50808061101f90613cc6565b915050610fcf565b50505050565b6110356113eb565b61103d610ca1565b6101f461104a9190613b79565b81111561108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108390613873565b60405180910390fd5b60005b818110156111085760006110a1611775565b9050600560008154809291906110b690613cc6565b919050555060c88111156110d2576110cd336118ce565b6110f4565b60328111156110e9576110e4336118ee565b6110f3565b6110f23361190e565b5b5b50808061110090613cc6565b91505061108f565b5050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61113e6113eb565b806101ff8190555050565b610202805461115790613c63565b80601f016020809104026020016040519081016040528092919081815260200182805461118390613c63565b80156111d05780601f106111a5576101008083540402835291602001916111d0565b820191906000526020600020905b8154815290600101906020018083116111b357829003601f168201915b505050505081565b6007816101f481106111e957600080fd5b016000915090505481565b6112066111ff61192d565b8383611d1d565b5050565b600060046000838152602001908152602001600020549050919050565b60006101ff54905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112ce61192d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061131457506113138561130e61192d565b611232565b5b611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a906136f3565b60405180910390fd5b6113608585858585611e8a565b5050505050565b61136f6113eb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d690613733565b60405180910390fd5b6113e881611c57565b50565b6113f361192d565b73ffffffffffffffffffffffffffffffffffffffff1661141161110c565b73ffffffffffffffffffffffffffffffffffffffff1614611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e906137f3565b60405180910390fd5b565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b80600290805190602001906114e992919061293a565b5050565b6060600280546114fc90613c63565b80601f016020809104026020016040519081016040528092919081815260200182805461152890613c63565b80156115755780601f1061154a57610100808354040283529160200191611575565b820191906000526020600020905b81548152906001019060200180831161155857829003601f168201915b50505050509050919050565b606060008214156115c9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506116dd565b600082905060005b600082146115fb5780806115e490613cc6565b915050600a826115f49190613b48565b91506115d1565b60008167ffffffffffffffff81111561161757611616613e2a565b5b6040519080825280601f01601f1916602001820160405280156116495781602001600182028036833780820191505090505b5090505b600085146116d6576001826116629190613b79565b9150600a856116719190613d3d565b603061167d9190613af2565b60f81b81838151811061169357611692613dfb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856116cf9190613b48565b945061164d565b8093505050505b919050565b60606101fc80546116f290613c63565b80601f016020809104026020016040519081016040528092919081815260200182805461171e90613c63565b801561176b5780601f106117405761010080835404028352916020019161176b565b820191906000526020600020905b81548152906001019060200180831161174e57829003601f168201915b5050505050905090565b6000806005546101f46117889190613b79565b90506000816006543344426040516020016117a69493929190613512565b6040516020818303038152906040528051906020012060001c6117c99190613d3d565b90506000806007836101f481106117e3576117e2613dfb565b5b015414611808576007826101f481106117ff576117fe613dfb565b5b0154905061180c565b8190505b6000600760018561181d9190613b79565b6101f4811061182f5761182e613dfb565b5b01541415611863576001836118449190613b79565b6007836101f4811061185957611858613dfb565b5b01819055506118a1565b60076001846118729190613b79565b6101f4811061188457611883613dfb565b5b01546007836101f4811061189b5761189a613dfb565b5b01819055505b600660008154809291906118b490613cc6565b91905055506001816118c69190613af2565b935050505090565b6118eb816003600160405180602001604052806000815250612126565b50565b61190b816002600160405180602001604052806000815250612126565b50565b61192a8160018060405180602001604052806000815250612126565b50565b600033905090565b8151835114611979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611970906138d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090613793565b60405180910390fd5b60006119f361192d565b9050611a038187878787876122d7565b60005b8451811015611bb4576000858281518110611a2457611a23613dfb565b5b602002602001015190506000858381518110611a4357611a42613dfb565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb906137d3565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b999190613af2565b9250508190555050505080611bad90613cc6565b9050611a06565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611c2b92919061365f565b60405180910390a4611c418187878787876122ed565b611c4f8187878787876122f5565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8390613893565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e7d9190613696565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef190613793565b60405180910390fd5b6000611f0461192d565b90506000611f11856124dc565b90506000611f1e856124dc565b9050611f2e8389898585896122d7565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbc906137d3565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461207a9190613af2565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516120f792919061396e565b60405180910390a461210d848a8a86868a6122ed565b61211b848a8a8a8a8a612556565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218d906138f3565b60405180910390fd5b60006121a061192d565b905060006121ad856124dc565b905060006121ba856124dc565b90506121cb836000898585896122d7565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461222a9190613af2565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516122a892919061396e565b60405180910390a46122bf836000898585896122ed565b6122ce83600089898989612556565b50505050505050565b6122e586868686868661273d565b505050505050565b505050505050565b6123148473ffffffffffffffffffffffffffffffffffffffff1661290f565b156124d4578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161235a95949392919061357b565b602060405180830381600087803b15801561237457600080fd5b505af19250505080156123a557506040513d601f19601f820116820180604052508101906123a29190612fff565b60015b61244b576123b1613e59565b806308c379a0141561240e57506123c66143bb565b806123d15750612410565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240591906136b1565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612442906136d3565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c990613713565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156124fb576124fa613e2a565b5b6040519080825280602002602001820160405280156125295781602001602082028036833780820191505090505b509050828160008151811061254157612540613dfb565b5b60200260200101818152505080915050919050565b6125758473ffffffffffffffffffffffffffffffffffffffff1661290f565b15612735578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016125bb9594939291906135e3565b602060405180830381600087803b1580156125d557600080fd5b505af192505050801561260657506040513d601f19601f820116820180604052508101906126039190612fff565b60015b6126ac57612612613e59565b806308c379a0141561266f57506126276143bb565b806126325750612671565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266691906136b1565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a3906136d3565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272a90613713565b60405180910390fd5b505b505050505050565b61274b868686868686612932565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156127fd5760005b83518110156127fb5782818151811061279f5761279e613dfb565b5b6020026020010151600460008684815181106127be576127bd613dfb565b5b6020026020010151815260200190815260200160002060008282546127e39190613af2565b92505081905550806127f490613cc6565b9050612783565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129075760005b835181101561290557600084828151811061285357612852613dfb565b5b60200260200101519050600084838151811061287257612871613dfb565b5b60200260200101519050600060046000848152602001908152602001600020549050818110156128d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ce90613813565b60405180910390fd5b8181036004600085815260200190815260200160002081905550505050806128fe90613cc6565b9050612835565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b82805461294690613c63565b90600052602060002090601f01602090048101928261296857600085556129af565b82601f1061298157805160ff19168380011785556129af565b828001600101855582156129af579182015b828111156129ae578251825591602001919060010190612993565b5b5090506129bc91906129c0565b5090565b5b808211156129d95760008160009055506001016129c1565b5090565b60006129f06129eb846139bc565b613997565b90508083825260208201905082856020860282011115612a1357612a12613e80565b5b60005b85811015612a435781612a298882612b41565b845260208401935060208301925050600181019050612a16565b5050509392505050565b6000612a60612a5b846139e8565b613997565b90508083825260208201905082856020860282011115612a8357612a82613e80565b5b60005b85811015612ab35781612a998882612c4d565b845260208401935060208301925050600181019050612a86565b5050509392505050565b6000612ad0612acb84613a14565b613997565b905082815260208101848484011115612aec57612aeb613e85565b5b612af7848285613c21565b509392505050565b6000612b12612b0d84613a45565b613997565b905082815260208101848484011115612b2e57612b2d613e85565b5b612b39848285613c21565b509392505050565b600081359050612b5081614451565b92915050565b600082601f830112612b6b57612b6a613e7b565b5b8135612b7b8482602086016129dd565b91505092915050565b600082601f830112612b9957612b98613e7b565b5b8135612ba9848260208601612a4d565b91505092915050565b600081359050612bc181614468565b92915050565b600081359050612bd68161447f565b92915050565b600081519050612beb8161447f565b92915050565b600082601f830112612c0657612c05613e7b565b5b8135612c16848260208601612abd565b91505092915050565b600082601f830112612c3457612c33613e7b565b5b8135612c44848260208601612aff565b91505092915050565b600081359050612c5c81614496565b92915050565b600060208284031215612c7857612c77613e8f565b5b6000612c8684828501612b41565b91505092915050565b60008060408385031215612ca657612ca5613e8f565b5b6000612cb485828601612b41565b9250506020612cc585828601612b41565b9150509250929050565b600080600080600060a08688031215612ceb57612cea613e8f565b5b6000612cf988828901612b41565b9550506020612d0a88828901612b41565b945050604086013567ffffffffffffffff811115612d2b57612d2a613e8a565b5b612d3788828901612b84565b935050606086013567ffffffffffffffff811115612d5857612d57613e8a565b5b612d6488828901612b84565b925050608086013567ffffffffffffffff811115612d8557612d84613e8a565b5b612d9188828901612bf1565b9150509295509295909350565b600080600080600060a08688031215612dba57612db9613e8f565b5b6000612dc888828901612b41565b9550506020612dd988828901612b41565b9450506040612dea88828901612c4d565b9350506060612dfb88828901612c4d565b925050608086013567ffffffffffffffff811115612e1c57612e1b613e8a565b5b612e2888828901612bf1565b9150509295509295909350565b60008060408385031215612e4c57612e4b613e8f565b5b6000612e5a85828601612b41565b9250506020612e6b85828601612bb2565b9150509250929050565b60008060408385031215612e8c57612e8b613e8f565b5b6000612e9a85828601612b41565b9250506020612eab85828601612c4d565b9150509250929050565b600060208284031215612ecb57612eca613e8f565b5b600082013567ffffffffffffffff811115612ee957612ee8613e8a565b5b612ef584828501612b56565b91505092915050565b60008060408385031215612f1557612f14613e8f565b5b600083013567ffffffffffffffff811115612f3357612f32613e8a565b5b612f3f85828601612b56565b925050602083013567ffffffffffffffff811115612f6057612f5f613e8a565b5b612f6c85828601612b84565b9150509250929050565b60008060408385031215612f8d57612f8c613e8f565b5b600083013567ffffffffffffffff811115612fab57612faa613e8a565b5b612fb785828601612b56565b9250506020612fc885828601612c4d565b9150509250929050565b600060208284031215612fe857612fe7613e8f565b5b6000612ff684828501612bc7565b91505092915050565b60006020828403121561301557613014613e8f565b5b600061302384828501612bdc565b91505092915050565b60006020828403121561304257613041613e8f565b5b600082013567ffffffffffffffff8111156130605761305f613e8a565b5b61306c84828501612c1f565b91505092915050565b60006020828403121561308b5761308a613e8f565b5b600061309984828501612c4d565b91505092915050565b60006130ae83836134ac565b60208301905092915050565b6130c381613bad565b82525050565b6130da6130d582613bad565b613d0f565b82525050565b60006130eb82613a86565b6130f58185613ab4565b935061310083613a76565b8060005b8381101561313157815161311888826130a2565b975061312383613aa7565b925050600181019050613104565b5085935050505092915050565b61314781613bbf565b82525050565b600061315882613a91565b6131628185613ac5565b9350613172818560208601613c30565b61317b81613e94565b840191505092915050565b600061319182613a9c565b61319b8185613ad6565b93506131ab818560208601613c30565b6131b481613e94565b840191505092915050565b60006131ca82613a9c565b6131d48185613ae7565b93506131e4818560208601613c30565b80840191505092915050565b60006131fd603483613ad6565b915061320882613ebf565b604082019050919050565b6000613220602f83613ad6565b915061322b82613f0e565b604082019050919050565b6000613243602883613ad6565b915061324e82613f5d565b604082019050919050565b6000613266602683613ad6565b915061327182613fac565b604082019050919050565b6000613289602a83613ad6565b915061329482613ffb565b604082019050919050565b60006132ac601983613ad6565b91506132b78261404a565b602082019050919050565b60006132cf602583613ad6565b91506132da82614073565b604082019050919050565b60006132f2601083613ad6565b91506132fd826140c2565b602082019050919050565b6000613315602a83613ad6565b9150613320826140eb565b604082019050919050565b6000613338602083613ad6565b91506133438261413a565b602082019050919050565b600061335b602883613ad6565b915061336682614163565b604082019050919050565b600061337e601683613ad6565b9150613389826141b2565b602082019050919050565b60006133a1601083613ad6565b91506133ac826141db565b602082019050919050565b60006133c4601583613ad6565b91506133cf82614204565b602082019050919050565b60006133e7602983613ad6565b91506133f28261422d565b604082019050919050565b600061340a602983613ad6565b91506134158261427c565b604082019050919050565b600061342d602883613ad6565b9150613438826142cb565b604082019050919050565b6000613450602183613ad6565b915061345b8261431a565b604082019050919050565b6000613473601a83613ad6565b915061347e82614369565b602082019050919050565b6000613496600e83613ad6565b91506134a182614392565b602082019050919050565b6134b581613c17565b82525050565b6134c481613c17565b82525050565b6134db6134d682613c17565b613d33565b82525050565b60006134ed82866131bf565b91506134f982856131bf565b915061350582846131bf565b9150819050949350505050565b600061351e82876134ca565b60208201915061352e82866130c9565b60148201915061353e82856134ca565b60208201915061354e82846134ca565b60208201915081905095945050505050565b600060208201905061357560008301846130ba565b92915050565b600060a08201905061359060008301886130ba565b61359d60208301876130ba565b81810360408301526135af81866130e0565b905081810360608301526135c381856130e0565b905081810360808301526135d7818461314d565b90509695505050505050565b600060a0820190506135f860008301886130ba565b61360560208301876130ba565b61361260408301866134bb565b61361f60608301856134bb565b8181036080830152613631818461314d565b90509695505050505050565b6000602082019050818103600083015261365781846130e0565b905092915050565b6000604082019050818103600083015261367981856130e0565b9050818103602083015261368d81846130e0565b90509392505050565b60006020820190506136ab600083018461313e565b92915050565b600060208201905081810360008301526136cb8184613186565b905092915050565b600060208201905081810360008301526136ec816131f0565b9050919050565b6000602082019050818103600083015261370c81613213565b9050919050565b6000602082019050818103600083015261372c81613236565b9050919050565b6000602082019050818103600083015261374c81613259565b9050919050565b6000602082019050818103600083015261376c8161327c565b9050919050565b6000602082019050818103600083015261378c8161329f565b9050919050565b600060208201905081810360008301526137ac816132c2565b9050919050565b600060208201905081810360008301526137cc816132e5565b9050919050565b600060208201905081810360008301526137ec81613308565b9050919050565b6000602082019050818103600083015261380c8161332b565b9050919050565b6000602082019050818103600083015261382c8161334e565b9050919050565b6000602082019050818103600083015261384c81613371565b9050919050565b6000602082019050818103600083015261386c81613394565b9050919050565b6000602082019050818103600083015261388c816133b7565b9050919050565b600060208201905081810360008301526138ac816133da565b9050919050565b600060208201905081810360008301526138cc816133fd565b9050919050565b600060208201905081810360008301526138ec81613420565b9050919050565b6000602082019050818103600083015261390c81613443565b9050919050565b6000602082019050818103600083015261392c81613466565b9050919050565b6000602082019050818103600083015261394c81613489565b9050919050565b600060208201905061396860008301846134bb565b92915050565b600060408201905061398360008301856134bb565b61399060208301846134bb565b9392505050565b60006139a16139b2565b90506139ad8282613c95565b919050565b6000604051905090565b600067ffffffffffffffff8211156139d7576139d6613e2a565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613a0357613a02613e2a565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613a2f57613a2e613e2a565b5b613a3882613e94565b9050602081019050919050565b600067ffffffffffffffff821115613a6057613a5f613e2a565b5b613a6982613e94565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613afd82613c17565b9150613b0883613c17565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b3d57613b3c613d6e565b5b828201905092915050565b6000613b5382613c17565b9150613b5e83613c17565b925082613b6e57613b6d613d9d565b5b828204905092915050565b6000613b8482613c17565b9150613b8f83613c17565b925082821015613ba257613ba1613d6e565b5b828203905092915050565b6000613bb882613bf7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c4e578082015181840152602081019050613c33565b83811115613c5d576000848401525b50505050565b60006002820490506001821680613c7b57607f821691505b60208210811415613c8f57613c8e613dcc565b5b50919050565b613c9e82613e94565b810181811067ffffffffffffffff82111715613cbd57613cbc613e2a565b5b80604052505050565b6000613cd182613c17565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d0457613d03613d6e565b5b600182019050919050565b6000613d1a82613d21565b9050919050565b6000613d2c82613ea5565b9050919050565b6000819050919050565b6000613d4882613c17565b9150613d5383613c17565b925082613d6357613d62613d9d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115613e785760046000803e613e75600051613eb2565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e7420747970652071616e7469747900000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6e6f74206f6e20616c6c6f776c69737400000000000000000000000000000000600082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b7f5552493a206e6f6e6578697374656e7420746f6b656e00000000000000000000600082015250565b7f6d696e742065786365656473206d617800000000000000000000000000000000600082015250565b7f62617463684d696e742065786365656473206d61780000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f7075626c6963206d696e74206e6f742079657420616374697665000000000000600082015250565b7f616c7265616479206d696e746564000000000000000000000000000000000000600082015250565b600060443d10156143cb5761444e565b6143d36139b2565b60043d036004823e80513d602482011167ffffffffffffffff821117156143fb57505061444e565b808201805167ffffffffffffffff811115614419575050505061444e565b80602083010160043d03850181111561443657505050505061444e565b61444582602001850186613c95565b82955050505050505b90565b61445a81613bad565b811461446557600080fd5b50565b61447181613bbf565b811461447c57600080fd5b50565b61448881613bcb565b811461449357600080fd5b50565b61449f81613c17565b81146144aa57600080fd5b5056fea2646970667358221220776d0cc8d2cb3d4d83ef9d54b98f5b4a93692f4c27a3a2767d38eb317e82b39964736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101d85760003560e01c8063715018a61161010457806395d89b41116100a2578063e441289411610071578063e44128941461054f578063e985e9c51461056d578063f242432a1461059d578063f2fde38b146105b9576101d8565b806395d89b41146104b5578063a1a953fd146104d3578063a22cb46514610503578063bd85b0391461051f576101d8565b806383f12fec116100de57806383f12fec146104435780638467be0d1461045f5780638da5cb5b1461047b5780638e218dd214610499576101d8565b8063715018a6146104015780637f17caa71461040b57806381b3e57514610427576101d8565b80631249c58b1161017c57806336a751f51161014b57806336a751f5146103675780634e1273f4146103855780634f558e79146103b55780636caacbe7146103e5576101d8565b80631249c58b146102f35780631548747b146102fd5780631e7269c51461031b5780632eb2c2d61461034b576101d8565b806302fe5305116101b857806302fe53051461025957806303f45d411461027557806306fdde03146102a55780630e89341c146102c3576101d8565b8062bb7d1d146101dd578062fdd58e146101f957806301ffc9a714610229575b600080fd5b6101f760048036038101906101f29190613075565b6105d5565b005b610213600480360381019061020e9190612e75565b6105e8565b6040516102209190613953565b60405180910390f35b610243600480360381019061023e9190612fd2565b6106b1565b6040516102509190613696565b60405180910390f35b610273600480360381019061026e919061302c565b610793565b005b61028f600480360381019061028a9190612c62565b6107a7565b60405161029c9190613696565b60405180910390f35b6102ad6107fe565b6040516102ba91906136b1565b60405180910390f35b6102dd60048036038101906102d89190613075565b61088d565b6040516102ea91906136b1565b60405180910390f35b6102fb610919565b005b610305610b9e565b6040516103129190613953565b60405180910390f35b61033560048036038101906103309190612c62565b610ba9565b6040516103429190613696565b60405180910390f35b61036560048036038101906103609190612ccf565b610c00565b005b61036f610ca1565b60405161037c9190613953565b60405180910390f35b61039f600480360381019061039a9190612efe565b610cda565b6040516103ac919061363d565b60405180910390f35b6103cf60048036038101906103ca9190613075565b610df3565b6040516103dc9190613696565b60405180910390f35b6103ff60048036038101906103fa9190612eb5565b610e07565b005b610409610ea5565b005b61042560048036038101906104209190612eb5565b610eb9565b005b610441600480360381019061043c919061302c565b610f57565b005b61045d60048036038101906104589190612f76565b610f7a565b005b61047960048036038101906104749190613075565b61102d565b005b61048361110c565b6040516104909190613560565b60405180910390f35b6104b360048036038101906104ae9190613075565b611136565b005b6104bd611149565b6040516104ca91906136b1565b60405180910390f35b6104ed60048036038101906104e89190613075565b6111d8565b6040516104fa9190613953565b60405180910390f35b61051d60048036038101906105189190612e35565b6111f4565b005b61053960048036038101906105349190613075565b61120a565b6040516105469190613953565b60405180910390f35b610557611227565b6040516105649190613953565b60405180910390f35b61058760048036038101906105829190612c8f565b611232565b6040516105949190613696565b60405180910390f35b6105b760048036038101906105b29190612d9e565b6112c6565b005b6105d360048036038101906105ce9190612c62565b611367565b005b6105dd6113eb565b806102008190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065090613753565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077c57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061078c575061078b82611469565b5b9050919050565b61079b6113eb565b6107a4816114d3565b50565b60006101fe60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610201805461080c90613c63565b80601f016020809104026020016040519081016040528092919081815260200182805461083890613c63565b80156108855780601f1061085a57610100808354040283529160200191610885565b820191906000526020600020905b81548152906001019060200180831161086857829003601f168201915b505050505081565b606061089882610df3565b6108d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ce90613833565b60405180910390fd5b6108e0826114ed565b6108e983611581565b6108f16116e2565b604051602001610903939291906134e1565b6040516020818303038152906040529050919050565b6101f4610924610ca1565b10610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b90613853565b60405180910390fd5b6101fd60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156109f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e990613933565b60405180910390fd5b6101ff544210158015610a0757506102005442105b15610a9e576101fe60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a90906137b3565b60405180910390fd5b610ae5565b61020054421015610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb90613913565b60405180910390fd5b5b6000610aef611775565b905060056000815480929190610b0490613cc6565b919050555060c8811115610b2057610b1b336118ce565b610b42565b6032811115610b3757610b32336118ee565b610b41565b610b403361190e565b5b5b60016101fd60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600061020054905090565b60006101fd60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610c0861192d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c4e5750610c4d85610c4861192d565b611232565b5b610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c84906136f3565b60405180910390fd5b610c9a8585858585611935565b5050505050565b6000610cad600361120a565b610cb7600261120a565b610cc1600161120a565b610ccb9190613af2565b610cd59190613af2565b905090565b60608151835114610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d17906138b3565b60405180910390fd5b6000835167ffffffffffffffff811115610d3d57610d3c613e2a565b5b604051908082528060200260200182016040528015610d6b5781602001602082028036833780820191505090505b50905060005b8451811015610de857610db8858281518110610d9057610d8f613dfb565b5b6020026020010151858381518110610dab57610daa613dfb565b5b60200260200101516105e8565b828281518110610dcb57610dca613dfb565b5b60200260200101818152505080610de190613cc6565b9050610d71565b508091505092915050565b600080610dff8361120a565b119050919050565b610e0f6113eb565b60005b8151811015610ea15760006101fe6000848481518110610e3557610e34613dfb565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e9990613cc6565b915050610e12565b5050565b610ead6113eb565b610eb76000611c57565b565b610ec16113eb565b60005b8151811015610f535760016101fe6000848481518110610ee757610ee6613dfb565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610f4b90613cc6565b915050610ec4565b5050565b610f5f6113eb565b806101fc9080519060200190610f7692919061293a565b5050565b60008251905080610f8b33846105e8565b1015610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390613773565b60405180910390fd5b60005b81811015611027576000848281518110610fec57610feb613dfb565b5b602002602001015190506110133382866001604051806020016040528060008152506112c6565b50808061101f90613cc6565b915050610fcf565b50505050565b6110356113eb565b61103d610ca1565b6101f461104a9190613b79565b81111561108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108390613873565b60405180910390fd5b60005b818110156111085760006110a1611775565b9050600560008154809291906110b690613cc6565b919050555060c88111156110d2576110cd336118ce565b6110f4565b60328111156110e9576110e4336118ee565b6110f3565b6110f23361190e565b5b5b50808061110090613cc6565b91505061108f565b5050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61113e6113eb565b806101ff8190555050565b610202805461115790613c63565b80601f016020809104026020016040519081016040528092919081815260200182805461118390613c63565b80156111d05780601f106111a5576101008083540402835291602001916111d0565b820191906000526020600020905b8154815290600101906020018083116111b357829003601f168201915b505050505081565b6007816101f481106111e957600080fd5b016000915090505481565b6112066111ff61192d565b8383611d1d565b5050565b600060046000838152602001908152602001600020549050919050565b60006101ff54905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112ce61192d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061131457506113138561130e61192d565b611232565b5b611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a906136f3565b60405180910390fd5b6113608585858585611e8a565b5050505050565b61136f6113eb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d690613733565b60405180910390fd5b6113e881611c57565b50565b6113f361192d565b73ffffffffffffffffffffffffffffffffffffffff1661141161110c565b73ffffffffffffffffffffffffffffffffffffffff1614611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e906137f3565b60405180910390fd5b565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b80600290805190602001906114e992919061293a565b5050565b6060600280546114fc90613c63565b80601f016020809104026020016040519081016040528092919081815260200182805461152890613c63565b80156115755780601f1061154a57610100808354040283529160200191611575565b820191906000526020600020905b81548152906001019060200180831161155857829003601f168201915b50505050509050919050565b606060008214156115c9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506116dd565b600082905060005b600082146115fb5780806115e490613cc6565b915050600a826115f49190613b48565b91506115d1565b60008167ffffffffffffffff81111561161757611616613e2a565b5b6040519080825280601f01601f1916602001820160405280156116495781602001600182028036833780820191505090505b5090505b600085146116d6576001826116629190613b79565b9150600a856116719190613d3d565b603061167d9190613af2565b60f81b81838151811061169357611692613dfb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856116cf9190613b48565b945061164d565b8093505050505b919050565b60606101fc80546116f290613c63565b80601f016020809104026020016040519081016040528092919081815260200182805461171e90613c63565b801561176b5780601f106117405761010080835404028352916020019161176b565b820191906000526020600020905b81548152906001019060200180831161174e57829003601f168201915b5050505050905090565b6000806005546101f46117889190613b79565b90506000816006543344426040516020016117a69493929190613512565b6040516020818303038152906040528051906020012060001c6117c99190613d3d565b90506000806007836101f481106117e3576117e2613dfb565b5b015414611808576007826101f481106117ff576117fe613dfb565b5b0154905061180c565b8190505b6000600760018561181d9190613b79565b6101f4811061182f5761182e613dfb565b5b01541415611863576001836118449190613b79565b6007836101f4811061185957611858613dfb565b5b01819055506118a1565b60076001846118729190613b79565b6101f4811061188457611883613dfb565b5b01546007836101f4811061189b5761189a613dfb565b5b01819055505b600660008154809291906118b490613cc6565b91905055506001816118c69190613af2565b935050505090565b6118eb816003600160405180602001604052806000815250612126565b50565b61190b816002600160405180602001604052806000815250612126565b50565b61192a8160018060405180602001604052806000815250612126565b50565b600033905090565b8151835114611979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611970906138d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090613793565b60405180910390fd5b60006119f361192d565b9050611a038187878787876122d7565b60005b8451811015611bb4576000858281518110611a2457611a23613dfb565b5b602002602001015190506000858381518110611a4357611a42613dfb565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb906137d3565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b999190613af2565b9250508190555050505080611bad90613cc6565b9050611a06565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611c2b92919061365f565b60405180910390a4611c418187878787876122ed565b611c4f8187878787876122f5565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8390613893565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e7d9190613696565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef190613793565b60405180910390fd5b6000611f0461192d565b90506000611f11856124dc565b90506000611f1e856124dc565b9050611f2e8389898585896122d7565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbc906137d3565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461207a9190613af2565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516120f792919061396e565b60405180910390a461210d848a8a86868a6122ed565b61211b848a8a8a8a8a612556565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218d906138f3565b60405180910390fd5b60006121a061192d565b905060006121ad856124dc565b905060006121ba856124dc565b90506121cb836000898585896122d7565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461222a9190613af2565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516122a892919061396e565b60405180910390a46122bf836000898585896122ed565b6122ce83600089898989612556565b50505050505050565b6122e586868686868661273d565b505050505050565b505050505050565b6123148473ffffffffffffffffffffffffffffffffffffffff1661290f565b156124d4578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161235a95949392919061357b565b602060405180830381600087803b15801561237457600080fd5b505af19250505080156123a557506040513d601f19601f820116820180604052508101906123a29190612fff565b60015b61244b576123b1613e59565b806308c379a0141561240e57506123c66143bb565b806123d15750612410565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240591906136b1565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612442906136d3565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c990613713565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156124fb576124fa613e2a565b5b6040519080825280602002602001820160405280156125295781602001602082028036833780820191505090505b509050828160008151811061254157612540613dfb565b5b60200260200101818152505080915050919050565b6125758473ffffffffffffffffffffffffffffffffffffffff1661290f565b15612735578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016125bb9594939291906135e3565b602060405180830381600087803b1580156125d557600080fd5b505af192505050801561260657506040513d601f19601f820116820180604052508101906126039190612fff565b60015b6126ac57612612613e59565b806308c379a0141561266f57506126276143bb565b806126325750612671565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266691906136b1565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a3906136d3565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272a90613713565b60405180910390fd5b505b505050505050565b61274b868686868686612932565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156127fd5760005b83518110156127fb5782818151811061279f5761279e613dfb565b5b6020026020010151600460008684815181106127be576127bd613dfb565b5b6020026020010151815260200190815260200160002060008282546127e39190613af2565b92505081905550806127f490613cc6565b9050612783565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129075760005b835181101561290557600084828151811061285357612852613dfb565b5b60200260200101519050600084838151811061287257612871613dfb565b5b60200260200101519050600060046000848152602001908152602001600020549050818110156128d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ce90613813565b60405180910390fd5b8181036004600085815260200190815260200160002081905550505050806128fe90613cc6565b9050612835565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b82805461294690613c63565b90600052602060002090601f01602090048101928261296857600085556129af565b82601f1061298157805160ff19168380011785556129af565b828001600101855582156129af579182015b828111156129ae578251825591602001919060010190612993565b5b5090506129bc91906129c0565b5090565b5b808211156129d95760008160009055506001016129c1565b5090565b60006129f06129eb846139bc565b613997565b90508083825260208201905082856020860282011115612a1357612a12613e80565b5b60005b85811015612a435781612a298882612b41565b845260208401935060208301925050600181019050612a16565b5050509392505050565b6000612a60612a5b846139e8565b613997565b90508083825260208201905082856020860282011115612a8357612a82613e80565b5b60005b85811015612ab35781612a998882612c4d565b845260208401935060208301925050600181019050612a86565b5050509392505050565b6000612ad0612acb84613a14565b613997565b905082815260208101848484011115612aec57612aeb613e85565b5b612af7848285613c21565b509392505050565b6000612b12612b0d84613a45565b613997565b905082815260208101848484011115612b2e57612b2d613e85565b5b612b39848285613c21565b509392505050565b600081359050612b5081614451565b92915050565b600082601f830112612b6b57612b6a613e7b565b5b8135612b7b8482602086016129dd565b91505092915050565b600082601f830112612b9957612b98613e7b565b5b8135612ba9848260208601612a4d565b91505092915050565b600081359050612bc181614468565b92915050565b600081359050612bd68161447f565b92915050565b600081519050612beb8161447f565b92915050565b600082601f830112612c0657612c05613e7b565b5b8135612c16848260208601612abd565b91505092915050565b600082601f830112612c3457612c33613e7b565b5b8135612c44848260208601612aff565b91505092915050565b600081359050612c5c81614496565b92915050565b600060208284031215612c7857612c77613e8f565b5b6000612c8684828501612b41565b91505092915050565b60008060408385031215612ca657612ca5613e8f565b5b6000612cb485828601612b41565b9250506020612cc585828601612b41565b9150509250929050565b600080600080600060a08688031215612ceb57612cea613e8f565b5b6000612cf988828901612b41565b9550506020612d0a88828901612b41565b945050604086013567ffffffffffffffff811115612d2b57612d2a613e8a565b5b612d3788828901612b84565b935050606086013567ffffffffffffffff811115612d5857612d57613e8a565b5b612d6488828901612b84565b925050608086013567ffffffffffffffff811115612d8557612d84613e8a565b5b612d9188828901612bf1565b9150509295509295909350565b600080600080600060a08688031215612dba57612db9613e8f565b5b6000612dc888828901612b41565b9550506020612dd988828901612b41565b9450506040612dea88828901612c4d565b9350506060612dfb88828901612c4d565b925050608086013567ffffffffffffffff811115612e1c57612e1b613e8a565b5b612e2888828901612bf1565b9150509295509295909350565b60008060408385031215612e4c57612e4b613e8f565b5b6000612e5a85828601612b41565b9250506020612e6b85828601612bb2565b9150509250929050565b60008060408385031215612e8c57612e8b613e8f565b5b6000612e9a85828601612b41565b9250506020612eab85828601612c4d565b9150509250929050565b600060208284031215612ecb57612eca613e8f565b5b600082013567ffffffffffffffff811115612ee957612ee8613e8a565b5b612ef584828501612b56565b91505092915050565b60008060408385031215612f1557612f14613e8f565b5b600083013567ffffffffffffffff811115612f3357612f32613e8a565b5b612f3f85828601612b56565b925050602083013567ffffffffffffffff811115612f6057612f5f613e8a565b5b612f6c85828601612b84565b9150509250929050565b60008060408385031215612f8d57612f8c613e8f565b5b600083013567ffffffffffffffff811115612fab57612faa613e8a565b5b612fb785828601612b56565b9250506020612fc885828601612c4d565b9150509250929050565b600060208284031215612fe857612fe7613e8f565b5b6000612ff684828501612bc7565b91505092915050565b60006020828403121561301557613014613e8f565b5b600061302384828501612bdc565b91505092915050565b60006020828403121561304257613041613e8f565b5b600082013567ffffffffffffffff8111156130605761305f613e8a565b5b61306c84828501612c1f565b91505092915050565b60006020828403121561308b5761308a613e8f565b5b600061309984828501612c4d565b91505092915050565b60006130ae83836134ac565b60208301905092915050565b6130c381613bad565b82525050565b6130da6130d582613bad565b613d0f565b82525050565b60006130eb82613a86565b6130f58185613ab4565b935061310083613a76565b8060005b8381101561313157815161311888826130a2565b975061312383613aa7565b925050600181019050613104565b5085935050505092915050565b61314781613bbf565b82525050565b600061315882613a91565b6131628185613ac5565b9350613172818560208601613c30565b61317b81613e94565b840191505092915050565b600061319182613a9c565b61319b8185613ad6565b93506131ab818560208601613c30565b6131b481613e94565b840191505092915050565b60006131ca82613a9c565b6131d48185613ae7565b93506131e4818560208601613c30565b80840191505092915050565b60006131fd603483613ad6565b915061320882613ebf565b604082019050919050565b6000613220602f83613ad6565b915061322b82613f0e565b604082019050919050565b6000613243602883613ad6565b915061324e82613f5d565b604082019050919050565b6000613266602683613ad6565b915061327182613fac565b604082019050919050565b6000613289602a83613ad6565b915061329482613ffb565b604082019050919050565b60006132ac601983613ad6565b91506132b78261404a565b602082019050919050565b60006132cf602583613ad6565b91506132da82614073565b604082019050919050565b60006132f2601083613ad6565b91506132fd826140c2565b602082019050919050565b6000613315602a83613ad6565b9150613320826140eb565b604082019050919050565b6000613338602083613ad6565b91506133438261413a565b602082019050919050565b600061335b602883613ad6565b915061336682614163565b604082019050919050565b600061337e601683613ad6565b9150613389826141b2565b602082019050919050565b60006133a1601083613ad6565b91506133ac826141db565b602082019050919050565b60006133c4601583613ad6565b91506133cf82614204565b602082019050919050565b60006133e7602983613ad6565b91506133f28261422d565b604082019050919050565b600061340a602983613ad6565b91506134158261427c565b604082019050919050565b600061342d602883613ad6565b9150613438826142cb565b604082019050919050565b6000613450602183613ad6565b915061345b8261431a565b604082019050919050565b6000613473601a83613ad6565b915061347e82614369565b602082019050919050565b6000613496600e83613ad6565b91506134a182614392565b602082019050919050565b6134b581613c17565b82525050565b6134c481613c17565b82525050565b6134db6134d682613c17565b613d33565b82525050565b60006134ed82866131bf565b91506134f982856131bf565b915061350582846131bf565b9150819050949350505050565b600061351e82876134ca565b60208201915061352e82866130c9565b60148201915061353e82856134ca565b60208201915061354e82846134ca565b60208201915081905095945050505050565b600060208201905061357560008301846130ba565b92915050565b600060a08201905061359060008301886130ba565b61359d60208301876130ba565b81810360408301526135af81866130e0565b905081810360608301526135c381856130e0565b905081810360808301526135d7818461314d565b90509695505050505050565b600060a0820190506135f860008301886130ba565b61360560208301876130ba565b61361260408301866134bb565b61361f60608301856134bb565b8181036080830152613631818461314d565b90509695505050505050565b6000602082019050818103600083015261365781846130e0565b905092915050565b6000604082019050818103600083015261367981856130e0565b9050818103602083015261368d81846130e0565b90509392505050565b60006020820190506136ab600083018461313e565b92915050565b600060208201905081810360008301526136cb8184613186565b905092915050565b600060208201905081810360008301526136ec816131f0565b9050919050565b6000602082019050818103600083015261370c81613213565b9050919050565b6000602082019050818103600083015261372c81613236565b9050919050565b6000602082019050818103600083015261374c81613259565b9050919050565b6000602082019050818103600083015261376c8161327c565b9050919050565b6000602082019050818103600083015261378c8161329f565b9050919050565b600060208201905081810360008301526137ac816132c2565b9050919050565b600060208201905081810360008301526137cc816132e5565b9050919050565b600060208201905081810360008301526137ec81613308565b9050919050565b6000602082019050818103600083015261380c8161332b565b9050919050565b6000602082019050818103600083015261382c8161334e565b9050919050565b6000602082019050818103600083015261384c81613371565b9050919050565b6000602082019050818103600083015261386c81613394565b9050919050565b6000602082019050818103600083015261388c816133b7565b9050919050565b600060208201905081810360008301526138ac816133da565b9050919050565b600060208201905081810360008301526138cc816133fd565b9050919050565b600060208201905081810360008301526138ec81613420565b9050919050565b6000602082019050818103600083015261390c81613443565b9050919050565b6000602082019050818103600083015261392c81613466565b9050919050565b6000602082019050818103600083015261394c81613489565b9050919050565b600060208201905061396860008301846134bb565b92915050565b600060408201905061398360008301856134bb565b61399060208301846134bb565b9392505050565b60006139a16139b2565b90506139ad8282613c95565b919050565b6000604051905090565b600067ffffffffffffffff8211156139d7576139d6613e2a565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613a0357613a02613e2a565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613a2f57613a2e613e2a565b5b613a3882613e94565b9050602081019050919050565b600067ffffffffffffffff821115613a6057613a5f613e2a565b5b613a6982613e94565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613afd82613c17565b9150613b0883613c17565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b3d57613b3c613d6e565b5b828201905092915050565b6000613b5382613c17565b9150613b5e83613c17565b925082613b6e57613b6d613d9d565b5b828204905092915050565b6000613b8482613c17565b9150613b8f83613c17565b925082821015613ba257613ba1613d6e565b5b828203905092915050565b6000613bb882613bf7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c4e578082015181840152602081019050613c33565b83811115613c5d576000848401525b50505050565b60006002820490506001821680613c7b57607f821691505b60208210811415613c8f57613c8e613dcc565b5b50919050565b613c9e82613e94565b810181811067ffffffffffffffff82111715613cbd57613cbc613e2a565b5b80604052505050565b6000613cd182613c17565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d0457613d03613d6e565b5b600182019050919050565b6000613d1a82613d21565b9050919050565b6000613d2c82613ea5565b9050919050565b6000819050919050565b6000613d4882613c17565b9150613d5383613c17565b925082613d6357613d62613d9d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115613e785760046000803e613e75600051613eb2565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e7420747970652071616e7469747900000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6e6f74206f6e20616c6c6f776c69737400000000000000000000000000000000600082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b7f5552493a206e6f6e6578697374656e7420746f6b656e00000000000000000000600082015250565b7f6d696e742065786365656473206d617800000000000000000000000000000000600082015250565b7f62617463684d696e742065786365656473206d61780000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f7075626c6963206d696e74206e6f742079657420616374697665000000000000600082015250565b7f616c7265616479206d696e746564000000000000000000000000000000000000600082015250565b600060443d10156143cb5761444e565b6143d36139b2565b60043d036004823e80513d602482011167ffffffffffffffff821117156143fb57505061444e565b808201805167ffffffffffffffff811115614419575050505061444e565b80602083010160043d03850181111561443657505050505061444e565b61444582602001850186613c95565b82955050505050505b90565b61445a81613bad565b811461446557600080fd5b50565b61447181613bbf565b811461447c57600080fd5b50565b61448881613bcb565b811461449357600080fd5b50565b61449f81613c17565b81146144aa57600080fd5b5056fea2646970667358221220776d0cc8d2cb3d4d83ef9d54b98f5b4a93692f4c27a3a2767d38eb317e82b39964736f6c63430008070033
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.