ERC-1155
Overview
Max Total Supply
23
Holders
16
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RescueToadz
Compiler Version
v0.8.12+commit.f00d7308
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* SPDX-License-Identifier: MIT @**********@ @*********** @*********** @*********** #***@ @***( *********** @**********# @*********** @*********** @*******@ .*********** @***@@@@***@ @***@@@@@@@@ @***@@@@@@@@ @***@@@@@@@@ #***@ @***( ****@@@@@@@ @@@@****@@@@ @***@@@@**** @***@@@@**** @***@@@@@@@@ .@@@@@@@%*** @*** ***@ @***@ @***@ @***@ #***@ @***( **** **** @***@ **** @***@ **** @***@ (*** @*** @******* @******* @*********** @***@ #***@ @***( *******@ **** @***@ **** @*********** @***@ (*** %***@ @***@@@@@@@@ @***@@@@ @@@@@@@@**** @***@ #***@ @***( ****@@@@ **** @***@ **** @***@@@@**** @***@ (*** .@@@@@@@@ @*** ***@ @***@ **** @***@ #***@ @***( **** **** @***@ **** @***@ **** @***@ (*** .***& @*** ***@ @*********** @*********** @*********** #***********( *********** **** @*********** @***@ **** @*******@ .*********** @@@@ @@@@ @@@@@@@@@@@@ @@@@@@@@@@@@ @@@@@@@@@@@@ #@@@@@@@@@@@( @@@@@@@@@@@ @@@@ @@@@@@@@@@@@ @@@@@ @@@@ @@@@@@@@@ .@@@@@@@@@@@ */ /** * @title Rescue Toadz * @author Vladimir Haltakov (@haltakov) * @notice ERC1155 contract for a collection of Ukrainian themed Rescue Toadz * @notice All proceeds from minting and capturing tokens are donated for humanitarian help for Ukraine via Unchain (0x10E1439455BD2624878b243819E31CfEE9eb721C). * @notice The contract represents two types of tokens: single edition tokens (id <= SINGLE_EDITIONS_SUPPLY) and multiple edition POAP tokens (id > SINGLE_EDITIONS_SUPPLY) * @notice Only the single edition tokens are allowed to be minted or captured. * @notice The contract implements a special function capture, that allows anybody to transfer a single edition token to their wallet by matching or increasing the last donation. */ pragma solidity ^0.8.12; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract RescueToadz is ERC1155, Ownable, Pausable, ERC1155Supply { using Strings for uint256; // Number of single edition tokens. For each single edition token, there will be a corresponding multiple edition token. uint256 public constant SINGLE_EDITIONS_SUPPLY = 18; // Mint price uint256 public constant MINT_PRICE = 10000000 gwei; // Address of Unchain Ukraine where all funds will be donated for humanitarian help (see https://unchain.fund/ for details) address public constant CHARITY_ADDRESS = 0x10E1439455BD2624878b243819E31CfEE9eb721C; // The last price a token was minted or captured for mapping(uint256 => uint256) private _lastPrice; // The last owner of a token. This applies only for single edition tokens mapping(uint256 => address) private _ownerOf; /** * @dev Default constructor */ constructor() ERC1155("ipfs://QmXRvBcDGpGYVKa7DpshY4UJQrSHH4ArN2AotHHjDS3BHo/") {} /** * @dev Name of the token */ function name() external pure returns (string memory) { return "Rescue Toadz"; } /** * @notice Only allowed for tokens with id <= SINGLE_EDITIONS_SUPPLY * @notice Only one token for every id <= SINGLE_EDITIONS_SUPPLY is allowed to be minted (similar to an ERC721 token) * @dev Mint a token * @param tokenId id of the token to be minted */ function mint(uint256 tokenId) external payable whenNotPaused { require( tokenId <= SINGLE_EDITIONS_SUPPLY, "Cannot mint token with id greater than SINGLE_EDITIONS_SUPPLY" ); require(tokenId > 0, "Cannot mint token 0"); require(!exists(tokenId), "Token already minted"); require(msg.value >= MINT_PRICE, "Not enough funds to mint token"); _ownerOf[tokenId] = msg.sender; _lastPrice[tokenId] = msg.value; _mint(msg.sender, tokenId, 1, ""); (bool sent, ) = payable(CHARITY_ADDRESS).call{value: msg.value}(""); require(sent, "Failed to send Ether"); } /** * @notice Only allowed for tokens with id <= SINGLE_EDITIONS_SUPPLY * @notice This function allows transferring a token from another wallet by paying more than the last price paid * @notice This function will mint a POAP token (id > SINGLE_EDITIONS_SUPPLY) in the wallet from which the token is captured * @dev Capture a token from another wallet * @param tokenId id of the token to be captured */ function capture(uint256 tokenId) external payable whenNotPaused { require( tokenId <= SINGLE_EDITIONS_SUPPLY, "Cannot capture a token with id greater than SINGLE_EDITIONS_SUPPLY" ); require(exists(tokenId), "Cannot capture a token that is not minted"); require( msg.value >= _lastPrice[tokenId], "Cannot capture a token without paying at least the last price" ); address lastOwner = _ownerOf[tokenId]; _ownerOf[tokenId] = msg.sender; _lastPrice[tokenId] = msg.value; _safeTransferFrom(lastOwner, msg.sender, tokenId, 1, ""); _mint(lastOwner, SINGLE_EDITIONS_SUPPLY + tokenId, 1, ""); (bool sent, ) = payable(CHARITY_ADDRESS).call{value: msg.value}(""); require(sent, "Failed to send Ether"); } /** * @notice Only allowed for tokens with id <= SINGLE_EDITIONS_SUPPLY * @dev Get the last price a token was minted or captured * @param tokenId id of the token to check */ function lastPrice(uint256 tokenId) external view returns (uint256) { require( tokenId <= SINGLE_EDITIONS_SUPPLY, "Cannot get the last price of a token with id greater than SINGLE_EDITIONS_SUPPLY" ); if (!exists(tokenId)) { return 0; } return _lastPrice[tokenId]; } /** * @notice Only allowed for tokens with id <= SINGLE_EDITIONS_SUPPLY, because they are guaranteed to have a single edition * @dev Get the owner of a token with an id <= SINGLE_EDITIONS_SUPPLY * @param tokenId id of the token to get the owner of */ function ownerOf(uint256 tokenId) external view returns (address) { require( tokenId <= SINGLE_EDITIONS_SUPPLY, "Cannot get the owner for token with id greater than SINGLE_EDITIONS_SUPPLY" ); if (!exists(tokenId)) { return address(0); } return _ownerOf[tokenId]; } /** * @notice Override the setApprovalForAll function to prevent selling the NFT on exchanges */ function setApprovalForAll(address, bool) public virtual override { revert("setApprovalForAll is not supported"); } /** * @dev Get the URI of a token * @param tokenId id of the token */ function uri(uint256 tokenId) public view virtual override returns (string memory) { require(exists(tokenId), "URI query for nonexistent token"); string memory baseURI = super.uri(tokenId); return string(abi.encodePacked(baseURI, tokenId.toString())); } /** * @dev Change the base URI * @param newuri the new URI */ function setURI(string memory newuri) external onlyOwner { _setURI(newuri); } /** * @dev Pause the contract */ function pause() external onlyOwner { _pause(); } /** * @dev Unpause the contract */ function unpause() external onlyOwner { _unpause(); } function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal override(ERC1155, ERC1155Supply) whenNotPaused { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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) { _totalSupply[ids[i]] -= amounts[i]; } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"CHARITY_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SINGLE_EDITIONS_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"tokenId","type":"uint256"}],"name":"capture","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"lastPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bool","name":"","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060600160405280603681526020016200487e603691396200003d816200007f60201b60201c565b506200005e620000526200009b60201b60201c565b620000a360201b60201c565b6000600360146101000a81548160ff0219169083151502179055506200027e565b80600290805190602001906200009792919062000169565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001779062000248565b90600052602060002090601f0160209004810192826200019b5760008555620001e7565b82601f10620001b657805160ff1916838001178555620001e7565b82800160010185558215620001e7579182015b82811115620001e6578251825591602001919060010190620001c9565b5b509050620001f69190620001fa565b5090565b5b8082111562000215576000816000905550600101620001fb565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200026157607f821691505b6020821081141562000278576200027762000219565b5b50919050565b6145f0806200028e6000396000f3fe6080604052600436106101645760003560e01c8063715018a6116100d1578063b5c3e81a1161008a578063c9330fdc11610064578063c9330fdc14610520578063e985e9c51461054b578063f242432a14610588578063f2fde38b146105b157610164565b8063b5c3e81a1461049c578063bd85b039146104b8578063c002d23d146104f557610164565b8063715018a6146103d35780638456cb59146103ea5780638da5cb5b14610401578063a0712d681461042c578063a22cb46514610448578063a84ce51c1461047157610164565b80632eb2c2d6116101235780632eb2c2d6146102b15780633f4ba83a146102da5780634e1273f4146102f15780634f558e791461032e5780635c975abb1461036b5780636352211e1461039657610164565b8062fd94cb14610169578062fdd58e146101a657806301ffc9a7146101e357806302fe53051461022057806306fdde03146102495780630e89341c14610274575b600080fd5b34801561017557600080fd5b50610190600480360381019061018b9190612887565b6105da565b60405161019d91906128c3565b60405180910390f35b3480156101b257600080fd5b506101cd60048036038101906101c8919061293c565b610652565b6040516101da91906128c3565b60405180910390f35b3480156101ef57600080fd5b5061020a600480360381019061020591906129d4565b61071b565b6040516102179190612a1c565b60405180910390f35b34801561022c57600080fd5b5061024760048036038101906102429190612b7d565b6107fd565b005b34801561025557600080fd5b5061025e610885565b60405161026b9190612c4e565b60405180910390f35b34801561028057600080fd5b5061029b60048036038101906102969190612887565b6108c2565b6040516102a89190612c4e565b60405180910390f35b3480156102bd57600080fd5b506102d860048036038101906102d39190612dd9565b61094b565b005b3480156102e657600080fd5b506102ef6109ec565b005b3480156102fd57600080fd5b5061031860048036038101906103139190612f6b565b610a72565b60405161032591906130a1565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190612887565b610b8b565b6040516103629190612a1c565b60405180910390f35b34801561037757600080fd5b50610380610b9f565b60405161038d9190612a1c565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190612887565b610bb6565b6040516103ca91906130d2565b60405180910390f35b3480156103df57600080fd5b506103e8610c4e565b005b3480156103f657600080fd5b506103ff610cd6565b005b34801561040d57600080fd5b50610416610d5c565b60405161042391906130d2565b60405180910390f35b61044660048036038101906104419190612887565b610d86565b005b34801561045457600080fd5b5061046f600480360381019061046a9190613119565b611032565b005b34801561047d57600080fd5b5061048661106d565b60405161049391906128c3565b60405180910390f35b6104b660048036038101906104b19190612887565b611072565b005b3480156104c457600080fd5b506104df60048036038101906104da9190612887565b611348565b6040516104ec91906128c3565b60405180910390f35b34801561050157600080fd5b5061050a611365565b60405161051791906128c3565b60405180910390f35b34801561052c57600080fd5b50610535611370565b60405161054291906130d2565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190613159565b611388565b60405161057f9190612a1c565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613199565b61141c565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190613230565b6114bd565b005b60006012821115610620576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610617906132f5565b60405180910390fd5b61062982610b8b565b610636576000905061064d565b600560008381526020019081526020016000205490505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ba90613387565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e657507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f657506107f5826115b5565b5b9050919050565b61080561161f565b73ffffffffffffffffffffffffffffffffffffffff16610823610d5c565b73ffffffffffffffffffffffffffffffffffffffff1614610879576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610870906133f3565b60405180910390fd5b61088281611627565b50565b60606040518060400160405280600c81526020017f52657363756520546f61647a0000000000000000000000000000000000000000815250905090565b60606108cd82610b8b565b61090c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109039061345f565b60405180910390fd5b600061091783611641565b905080610923846116d5565b6040516020016109349291906134bb565b604051602081830303815290604052915050919050565b61095361161f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061099957506109988561099361161f565b611388565b5b6109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf90613551565b60405180910390fd5b6109e58585858585611836565b5050505050565b6109f461161f565b73ffffffffffffffffffffffffffffffffffffffff16610a12610d5c565b73ffffffffffffffffffffffffffffffffffffffff1614610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f906133f3565b60405180910390fd5b610a70611b4a565b565b60608151835114610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf906135e3565b60405180910390fd5b6000835167ffffffffffffffff811115610ad557610ad4612a52565b5b604051908082528060200260200182016040528015610b035781602001602082028036833780820191505090505b50905060005b8451811015610b8057610b50858281518110610b2857610b27613603565b5b6020026020010151858381518110610b4357610b42613603565b5b6020026020010151610652565b828281518110610b6357610b62613603565b5b60200260200101818152505080610b7990613661565b9050610b09565b508091505092915050565b600080610b9783611348565b119050919050565b6000600360149054906101000a900460ff16905090565b60006012821115610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf390613742565b60405180910390fd5b610c0582610b8b565b610c125760009050610c49565b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505b919050565b610c5661161f565b73ffffffffffffffffffffffffffffffffffffffff16610c74610d5c565b73ffffffffffffffffffffffffffffffffffffffff1614610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc1906133f3565b60405180910390fd5b610cd46000611bec565b565b610cde61161f565b73ffffffffffffffffffffffffffffffffffffffff16610cfc610d5c565b73ffffffffffffffffffffffffffffffffffffffff1614610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d49906133f3565b60405180910390fd5b610d5a611cb2565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d8e610b9f565b15610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc5906137ae565b60405180910390fd5b6012811115610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0990613840565b60405180910390fd5b60008111610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c906138ac565b60405180910390fd5b610e5e81610b8b565b15610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590613918565b60405180910390fd5b662386f26fc10000341015610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90613984565b60405180910390fd5b336006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550346005600083815260200190815260200160002081905550610f6e3382600160405180602001604052806000815250611d55565b60007310e1439455bd2624878b243819e31cfee9eb721c73ffffffffffffffffffffffffffffffffffffffff1634604051610fa8906139d5565b60006040518083038185875af1925050503d8060008114610fe5576040519150601f19603f3d011682016040523d82523d6000602084013e610fea565b606091505b505090508061102e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102590613a36565b60405180910390fd5b5050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106490613ac8565b60405180910390fd5b601281565b61107a610b9f565b156110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b1906137ae565b60405180910390fd5b60128111156110fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f590613b80565b60405180910390fd5b61110781610b8b565b611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90613c12565b60405180910390fd5b600560008281526020019081526020016000205434101561119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390613ca4565b60405180910390fd5b60006006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050336006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034600560008481526020019081526020016000208190555061125b813384600160405180602001604052806000815250611eeb565b6112838183601261126c9190613cc4565b600160405180602001604052806000815250611d55565b60007310e1439455bd2624878b243819e31cfee9eb721c73ffffffffffffffffffffffffffffffffffffffff16346040516112bd906139d5565b60006040518083038185875af1925050503d80600081146112fa576040519150601f19603f3d011682016040523d82523d6000602084013e6112ff565b606091505b5050905080611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a90613a36565b60405180910390fd5b505050565b600060046000838152602001908152602001600020549050919050565b662386f26fc1000081565b7310e1439455bd2624878b243819e31cfee9eb721c81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61142461161f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061146a57506114698561146461161f565b611388565b5b6114a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a090613d8c565b60405180910390fd5b6114b68585858585611eeb565b5050505050565b6114c561161f565b73ffffffffffffffffffffffffffffffffffffffff166114e3610d5c565b73ffffffffffffffffffffffffffffffffffffffff1614611539576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611530906133f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a090613e1e565b60405180910390fd5b6115b281611bec565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b806002908051906020019061163d92919061279a565b5050565b60606002805461165090613e6d565b80601f016020809104026020016040519081016040528092919081815260200182805461167c90613e6d565b80156116c95780601f1061169e576101008083540402835291602001916116c9565b820191906000526020600020905b8154815290600101906020018083116116ac57829003601f168201915b50505050509050919050565b6060600082141561171d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611831565b600082905060005b6000821461174f57808061173890613661565b915050600a826117489190613ece565b9150611725565b60008167ffffffffffffffff81111561176b5761176a612a52565b5b6040519080825280601f01601f19166020018201604052801561179d5781602001600182028036833780820191505090505b5090505b6000851461182a576001826117b69190613eff565b9150600a856117c59190613f33565b60306117d19190613cc4565b60f81b8183815181106117e7576117e6613603565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856118239190613ece565b94506117a1565b8093505050505b919050565b815183511461187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190613fd6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e190614068565b60405180910390fd5b60006118f461161f565b905061190481878787878761216d565b60005b8451811015611ab557600085828151811061192557611924613603565b5b60200260200101519050600085838151811061194457611943613603565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc906140fa565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a9a9190613cc4565b9250508190555050505080611aae90613661565b9050611907565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b2c92919061411a565b60405180910390a4611b428187878787876121cb565b505050505050565b611b52610b9f565b611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b889061419d565b60405180910390fd5b6000600360146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611bd561161f565b604051611be291906130d2565b60405180910390a1565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611cba610b9f565b15611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf1906137ae565b60405180910390fd5b6001600360146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d3e61161f565b604051611d4b91906130d2565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbc9061422f565b60405180910390fd5b6000611dcf61161f565b9050611df081600087611de1886123a3565b611dea886123a3565b8761216d565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e4f9190613cc4565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611ecd92919061424f565b60405180910390a4611ee48160008787878761241d565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5290614068565b60405180910390fd5b6000611f6561161f565b9050611f85818787611f76886123a3565b611f7f886123a3565b8761216d565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561201c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612013906140fa565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120d19190613cc4565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161214e92919061424f565b60405180910390a461216482888888888861241d565b50505050505050565b612175610b9f565b156121b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ac906137ae565b60405180910390fd5b6121c38686868686866125f5565b505050505050565b6121ea8473ffffffffffffffffffffffffffffffffffffffff1661276f565b1561239b578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016122309594939291906142cd565b6020604051808303816000875af192505050801561226c57506040513d601f19601f82011682018060405250810190612269919061434a565b60015b61231257612278614384565b806308c379a014156122d5575061228d6143a6565b8061229857506122d7565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cc9190612c4e565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612309906144ae565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239090614540565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156123c2576123c1612a52565b5b6040519080825280602002602001820160405280156123f05781602001602082028036833780820191505090505b509050828160008151811061240857612407613603565b5b60200260200101818152505080915050919050565b61243c8473ffffffffffffffffffffffffffffffffffffffff1661276f565b156125ed578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612482959493929190614560565b6020604051808303816000875af19250505080156124be57506040513d601f19601f820116820180604052508101906124bb919061434a565b60015b612564576124ca614384565b806308c379a0141561252757506124df6143a6565b806124ea5750612529565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251e9190612c4e565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255b906144ae565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146125eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e290614540565b60405180910390fd5b505b505050505050565b612603868686868686612792565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156126b55760005b83518110156126b35782818151811061265757612656613603565b5b60200260200101516004600086848151811061267657612675613603565b5b60200260200101518152602001908152602001600020600082825461269b9190613cc4565b92505081905550806126ac90613661565b905061263b565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127675760005b83518110156127655782818151811061270957612708613603565b5b60200260200101516004600086848151811061272857612727613603565b5b60200260200101518152602001908152602001600020600082825461274d9190613eff565b925050819055508061275e90613661565b90506126ed565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b8280546127a690613e6d565b90600052602060002090601f0160209004810192826127c8576000855561280f565b82601f106127e157805160ff191683800117855561280f565b8280016001018555821561280f579182015b8281111561280e5782518255916020019190600101906127f3565b5b50905061281c9190612820565b5090565b5b80821115612839576000816000905550600101612821565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61286481612851565b811461286f57600080fd5b50565b6000813590506128818161285b565b92915050565b60006020828403121561289d5761289c612847565b5b60006128ab84828501612872565b91505092915050565b6128bd81612851565b82525050565b60006020820190506128d860008301846128b4565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612909826128de565b9050919050565b612919816128fe565b811461292457600080fd5b50565b60008135905061293681612910565b92915050565b6000806040838503121561295357612952612847565b5b600061296185828601612927565b925050602061297285828601612872565b9150509250929050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129b18161297c565b81146129bc57600080fd5b50565b6000813590506129ce816129a8565b92915050565b6000602082840312156129ea576129e9612847565b5b60006129f8848285016129bf565b91505092915050565b60008115159050919050565b612a1681612a01565b82525050565b6000602082019050612a316000830184612a0d565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a8a82612a41565b810181811067ffffffffffffffff82111715612aa957612aa8612a52565b5b80604052505050565b6000612abc61283d565b9050612ac88282612a81565b919050565b600067ffffffffffffffff821115612ae857612ae7612a52565b5b612af182612a41565b9050602081019050919050565b82818337600083830152505050565b6000612b20612b1b84612acd565b612ab2565b905082815260208101848484011115612b3c57612b3b612a3c565b5b612b47848285612afe565b509392505050565b600082601f830112612b6457612b63612a37565b5b8135612b74848260208601612b0d565b91505092915050565b600060208284031215612b9357612b92612847565b5b600082013567ffffffffffffffff811115612bb157612bb061284c565b5b612bbd84828501612b4f565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c00578082015181840152602081019050612be5565b83811115612c0f576000848401525b50505050565b6000612c2082612bc6565b612c2a8185612bd1565b9350612c3a818560208601612be2565b612c4381612a41565b840191505092915050565b60006020820190508181036000830152612c688184612c15565b905092915050565b600067ffffffffffffffff821115612c8b57612c8a612a52565b5b602082029050602081019050919050565b600080fd5b6000612cb4612caf84612c70565b612ab2565b90508083825260208201905060208402830185811115612cd757612cd6612c9c565b5b835b81811015612d005780612cec8882612872565b845260208401935050602081019050612cd9565b5050509392505050565b600082601f830112612d1f57612d1e612a37565b5b8135612d2f848260208601612ca1565b91505092915050565b600067ffffffffffffffff821115612d5357612d52612a52565b5b612d5c82612a41565b9050602081019050919050565b6000612d7c612d7784612d38565b612ab2565b905082815260208101848484011115612d9857612d97612a3c565b5b612da3848285612afe565b509392505050565b600082601f830112612dc057612dbf612a37565b5b8135612dd0848260208601612d69565b91505092915050565b600080600080600060a08688031215612df557612df4612847565b5b6000612e0388828901612927565b9550506020612e1488828901612927565b945050604086013567ffffffffffffffff811115612e3557612e3461284c565b5b612e4188828901612d0a565b935050606086013567ffffffffffffffff811115612e6257612e6161284c565b5b612e6e88828901612d0a565b925050608086013567ffffffffffffffff811115612e8f57612e8e61284c565b5b612e9b88828901612dab565b9150509295509295909350565b600067ffffffffffffffff821115612ec357612ec2612a52565b5b602082029050602081019050919050565b6000612ee7612ee284612ea8565b612ab2565b90508083825260208201905060208402830185811115612f0a57612f09612c9c565b5b835b81811015612f335780612f1f8882612927565b845260208401935050602081019050612f0c565b5050509392505050565b600082601f830112612f5257612f51612a37565b5b8135612f62848260208601612ed4565b91505092915050565b60008060408385031215612f8257612f81612847565b5b600083013567ffffffffffffffff811115612fa057612f9f61284c565b5b612fac85828601612f3d565b925050602083013567ffffffffffffffff811115612fcd57612fcc61284c565b5b612fd985828601612d0a565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61301881612851565b82525050565b600061302a838361300f565b60208301905092915050565b6000602082019050919050565b600061304e82612fe3565b6130588185612fee565b935061306383612fff565b8060005b8381101561309457815161307b888261301e565b975061308683613036565b925050600181019050613067565b5085935050505092915050565b600060208201905081810360008301526130bb8184613043565b905092915050565b6130cc816128fe565b82525050565b60006020820190506130e760008301846130c3565b92915050565b6130f681612a01565b811461310157600080fd5b50565b600081359050613113816130ed565b92915050565b600080604083850312156131305761312f612847565b5b600061313e85828601612927565b925050602061314f85828601613104565b9150509250929050565b600080604083850312156131705761316f612847565b5b600061317e85828601612927565b925050602061318f85828601612927565b9150509250929050565b600080600080600060a086880312156131b5576131b4612847565b5b60006131c388828901612927565b95505060206131d488828901612927565b94505060406131e588828901612872565b93505060606131f688828901612872565b925050608086013567ffffffffffffffff8111156132175761321661284c565b5b61322388828901612dab565b9150509295509295909350565b60006020828403121561324657613245612847565b5b600061325484828501612927565b91505092915050565b7f43616e6e6f742067657420746865206c617374207072696365206f662061207460008201527f6f6b656e20776974682069642067726561746572207468616e2053494e474c4560208201527f5f45444954494f4e535f535550504c5900000000000000000000000000000000604082015250565b60006132df605083612bd1565b91506132ea8261325d565b606082019050919050565b6000602082019050818103600083015261330e816132d2565b9050919050565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613371602b83612bd1565b915061337c82613315565b604082019050919050565b600060208201905081810360008301526133a081613364565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133dd602083612bd1565b91506133e8826133a7565b602082019050919050565b6000602082019050818103600083015261340c816133d0565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000613449601f83612bd1565b915061345482613413565b602082019050919050565b600060208201905081810360008301526134788161343c565b9050919050565b600081905092915050565b600061349582612bc6565b61349f818561347f565b93506134af818560208601612be2565b80840191505092915050565b60006134c7828561348a565b91506134d3828461348a565b91508190509392505050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061353b603283612bd1565b9150613546826134df565b604082019050919050565b6000602082019050818103600083015261356a8161352e565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006135cd602983612bd1565b91506135d882613571565b604082019050919050565b600060208201905081810360008301526135fc816135c0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061366c82612851565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561369f5761369e613632565b5b600182019050919050565b7f43616e6e6f742067657420746865206f776e657220666f7220746f6b656e207760008201527f6974682069642067726561746572207468616e2053494e474c455f454449544960208201527f4f4e535f535550504c5900000000000000000000000000000000000000000000604082015250565b600061372c604a83612bd1565b9150613737826136aa565b606082019050919050565b6000602082019050818103600083015261375b8161371f565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613798601083612bd1565b91506137a382613762565b602082019050919050565b600060208201905081810360008301526137c78161378b565b9050919050565b7f43616e6e6f74206d696e7420746f6b656e20776974682069642067726561746560008201527f72207468616e2053494e474c455f45444954494f4e535f535550504c59000000602082015250565b600061382a603d83612bd1565b9150613835826137ce565b604082019050919050565b600060208201905081810360008301526138598161381d565b9050919050565b7f43616e6e6f74206d696e7420746f6b656e203000000000000000000000000000600082015250565b6000613896601383612bd1565b91506138a182613860565b602082019050919050565b600060208201905081810360008301526138c581613889565b9050919050565b7f546f6b656e20616c7265616479206d696e746564000000000000000000000000600082015250565b6000613902601483612bd1565b915061390d826138cc565b602082019050919050565b60006020820190508181036000830152613931816138f5565b9050919050565b7f4e6f7420656e6f7567682066756e647320746f206d696e7420746f6b656e0000600082015250565b600061396e601e83612bd1565b915061397982613938565b602082019050919050565b6000602082019050818103600083015261399d81613961565b9050919050565b600081905092915050565b50565b60006139bf6000836139a4565b91506139ca826139af565b600082019050919050565b60006139e0826139b2565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b6000613a20601483612bd1565b9150613a2b826139ea565b602082019050919050565b60006020820190508181036000830152613a4f81613a13565b9050919050565b7f736574417070726f76616c466f72416c6c206973206e6f7420737570706f727460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ab2602283612bd1565b9150613abd82613a56565b604082019050919050565b60006020820190508181036000830152613ae181613aa5565b9050919050565b7f43616e6e6f742063617074757265206120746f6b656e2077697468206964206760008201527f726561746572207468616e2053494e474c455f45444954494f4e535f5355505060208201527f4c59000000000000000000000000000000000000000000000000000000000000604082015250565b6000613b6a604283612bd1565b9150613b7582613ae8565b606082019050919050565b60006020820190508181036000830152613b9981613b5d565b9050919050565b7f43616e6e6f742063617074757265206120746f6b656e2074686174206973206e60008201527f6f74206d696e7465640000000000000000000000000000000000000000000000602082015250565b6000613bfc602983612bd1565b9150613c0782613ba0565b604082019050919050565b60006020820190508181036000830152613c2b81613bef565b9050919050565b7f43616e6e6f742063617074757265206120746f6b656e20776974686f7574207060008201527f6179696e67206174206c6561737420746865206c617374207072696365000000602082015250565b6000613c8e603d83612bd1565b9150613c9982613c32565b604082019050919050565b60006020820190508181036000830152613cbd81613c81565b9050919050565b6000613ccf82612851565b9150613cda83612851565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d0f57613d0e613632565b5b828201905092915050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000613d76602983612bd1565b9150613d8182613d1a565b604082019050919050565b60006020820190508181036000830152613da581613d69565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e08602683612bd1565b9150613e1382613dac565b604082019050919050565b60006020820190508181036000830152613e3781613dfb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e8557607f821691505b60208210811415613e9957613e98613e3e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ed982612851565b9150613ee483612851565b925082613ef457613ef3613e9f565b5b828204905092915050565b6000613f0a82612851565b9150613f1583612851565b925082821015613f2857613f27613632565b5b828203905092915050565b6000613f3e82612851565b9150613f4983612851565b925082613f5957613f58613e9f565b5b828206905092915050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000613fc0602883612bd1565b9150613fcb82613f64565b604082019050919050565b60006020820190508181036000830152613fef81613fb3565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614052602583612bd1565b915061405d82613ff6565b604082019050919050565b6000602082019050818103600083015261408181614045565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006140e4602a83612bd1565b91506140ef82614088565b604082019050919050565b60006020820190508181036000830152614113816140d7565b9050919050565b600060408201905081810360008301526141348185613043565b905081810360208301526141488184613043565b90509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614187601483612bd1565b915061419282614151565b602082019050919050565b600060208201905081810360008301526141b68161417a565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614219602183612bd1565b9150614224826141bd565b604082019050919050565b600060208201905081810360008301526142488161420c565b9050919050565b600060408201905061426460008301856128b4565b61427160208301846128b4565b9392505050565b600081519050919050565b600082825260208201905092915050565b600061429f82614278565b6142a98185614283565b93506142b9818560208601612be2565b6142c281612a41565b840191505092915050565b600060a0820190506142e260008301886130c3565b6142ef60208301876130c3565b81810360408301526143018186613043565b905081810360608301526143158185613043565b905081810360808301526143298184614294565b90509695505050505050565b600081519050614344816129a8565b92915050565b6000602082840312156143605761435f612847565b5b600061436e84828501614335565b91505092915050565b60008160e01c9050919050565b600060033d11156143a35760046000803e6143a0600051614377565b90505b90565b600060443d10156143b657614439565b6143be61283d565b60043d036004823e80513d602482011167ffffffffffffffff821117156143e6575050614439565b808201805167ffffffffffffffff8111156144045750505050614439565b80602083010160043d038501811115614421575050505050614439565b61443082602001850186612a81565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614498603483612bd1565b91506144a38261443c565b604082019050919050565b600060208201905081810360008301526144c78161448b565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600061452a602883612bd1565b9150614535826144ce565b604082019050919050565b600060208201905081810360008301526145598161451d565b9050919050565b600060a08201905061457560008301886130c3565b61458260208301876130c3565b61458f60408301866128b4565b61459c60608301856128b4565b81810360808301526145ae8184614294565b9050969550505050505056fea26469706673582212203b45960805267b084ef0325e27bb573833e6a3f87695ba3cc63404d8fd7e1f1964736f6c634300080c0033697066733a2f2f516d58527642634447704759564b6137447073685934554a51725348483441724e32416f7448486a44533342486f2f
Deployed Bytecode
0x6080604052600436106101645760003560e01c8063715018a6116100d1578063b5c3e81a1161008a578063c9330fdc11610064578063c9330fdc14610520578063e985e9c51461054b578063f242432a14610588578063f2fde38b146105b157610164565b8063b5c3e81a1461049c578063bd85b039146104b8578063c002d23d146104f557610164565b8063715018a6146103d35780638456cb59146103ea5780638da5cb5b14610401578063a0712d681461042c578063a22cb46514610448578063a84ce51c1461047157610164565b80632eb2c2d6116101235780632eb2c2d6146102b15780633f4ba83a146102da5780634e1273f4146102f15780634f558e791461032e5780635c975abb1461036b5780636352211e1461039657610164565b8062fd94cb14610169578062fdd58e146101a657806301ffc9a7146101e357806302fe53051461022057806306fdde03146102495780630e89341c14610274575b600080fd5b34801561017557600080fd5b50610190600480360381019061018b9190612887565b6105da565b60405161019d91906128c3565b60405180910390f35b3480156101b257600080fd5b506101cd60048036038101906101c8919061293c565b610652565b6040516101da91906128c3565b60405180910390f35b3480156101ef57600080fd5b5061020a600480360381019061020591906129d4565b61071b565b6040516102179190612a1c565b60405180910390f35b34801561022c57600080fd5b5061024760048036038101906102429190612b7d565b6107fd565b005b34801561025557600080fd5b5061025e610885565b60405161026b9190612c4e565b60405180910390f35b34801561028057600080fd5b5061029b60048036038101906102969190612887565b6108c2565b6040516102a89190612c4e565b60405180910390f35b3480156102bd57600080fd5b506102d860048036038101906102d39190612dd9565b61094b565b005b3480156102e657600080fd5b506102ef6109ec565b005b3480156102fd57600080fd5b5061031860048036038101906103139190612f6b565b610a72565b60405161032591906130a1565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190612887565b610b8b565b6040516103629190612a1c565b60405180910390f35b34801561037757600080fd5b50610380610b9f565b60405161038d9190612a1c565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190612887565b610bb6565b6040516103ca91906130d2565b60405180910390f35b3480156103df57600080fd5b506103e8610c4e565b005b3480156103f657600080fd5b506103ff610cd6565b005b34801561040d57600080fd5b50610416610d5c565b60405161042391906130d2565b60405180910390f35b61044660048036038101906104419190612887565b610d86565b005b34801561045457600080fd5b5061046f600480360381019061046a9190613119565b611032565b005b34801561047d57600080fd5b5061048661106d565b60405161049391906128c3565b60405180910390f35b6104b660048036038101906104b19190612887565b611072565b005b3480156104c457600080fd5b506104df60048036038101906104da9190612887565b611348565b6040516104ec91906128c3565b60405180910390f35b34801561050157600080fd5b5061050a611365565b60405161051791906128c3565b60405180910390f35b34801561052c57600080fd5b50610535611370565b60405161054291906130d2565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190613159565b611388565b60405161057f9190612a1c565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613199565b61141c565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190613230565b6114bd565b005b60006012821115610620576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610617906132f5565b60405180910390fd5b61062982610b8b565b610636576000905061064d565b600560008381526020019081526020016000205490505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ba90613387565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e657507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f657506107f5826115b5565b5b9050919050565b61080561161f565b73ffffffffffffffffffffffffffffffffffffffff16610823610d5c565b73ffffffffffffffffffffffffffffffffffffffff1614610879576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610870906133f3565b60405180910390fd5b61088281611627565b50565b60606040518060400160405280600c81526020017f52657363756520546f61647a0000000000000000000000000000000000000000815250905090565b60606108cd82610b8b565b61090c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109039061345f565b60405180910390fd5b600061091783611641565b905080610923846116d5565b6040516020016109349291906134bb565b604051602081830303815290604052915050919050565b61095361161f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061099957506109988561099361161f565b611388565b5b6109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf90613551565b60405180910390fd5b6109e58585858585611836565b5050505050565b6109f461161f565b73ffffffffffffffffffffffffffffffffffffffff16610a12610d5c565b73ffffffffffffffffffffffffffffffffffffffff1614610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f906133f3565b60405180910390fd5b610a70611b4a565b565b60608151835114610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf906135e3565b60405180910390fd5b6000835167ffffffffffffffff811115610ad557610ad4612a52565b5b604051908082528060200260200182016040528015610b035781602001602082028036833780820191505090505b50905060005b8451811015610b8057610b50858281518110610b2857610b27613603565b5b6020026020010151858381518110610b4357610b42613603565b5b6020026020010151610652565b828281518110610b6357610b62613603565b5b60200260200101818152505080610b7990613661565b9050610b09565b508091505092915050565b600080610b9783611348565b119050919050565b6000600360149054906101000a900460ff16905090565b60006012821115610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf390613742565b60405180910390fd5b610c0582610b8b565b610c125760009050610c49565b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505b919050565b610c5661161f565b73ffffffffffffffffffffffffffffffffffffffff16610c74610d5c565b73ffffffffffffffffffffffffffffffffffffffff1614610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc1906133f3565b60405180910390fd5b610cd46000611bec565b565b610cde61161f565b73ffffffffffffffffffffffffffffffffffffffff16610cfc610d5c565b73ffffffffffffffffffffffffffffffffffffffff1614610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d49906133f3565b60405180910390fd5b610d5a611cb2565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d8e610b9f565b15610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc5906137ae565b60405180910390fd5b6012811115610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0990613840565b60405180910390fd5b60008111610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c906138ac565b60405180910390fd5b610e5e81610b8b565b15610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590613918565b60405180910390fd5b662386f26fc10000341015610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90613984565b60405180910390fd5b336006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550346005600083815260200190815260200160002081905550610f6e3382600160405180602001604052806000815250611d55565b60007310e1439455bd2624878b243819e31cfee9eb721c73ffffffffffffffffffffffffffffffffffffffff1634604051610fa8906139d5565b60006040518083038185875af1925050503d8060008114610fe5576040519150601f19603f3d011682016040523d82523d6000602084013e610fea565b606091505b505090508061102e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102590613a36565b60405180910390fd5b5050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106490613ac8565b60405180910390fd5b601281565b61107a610b9f565b156110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b1906137ae565b60405180910390fd5b60128111156110fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f590613b80565b60405180910390fd5b61110781610b8b565b611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90613c12565b60405180910390fd5b600560008281526020019081526020016000205434101561119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390613ca4565b60405180910390fd5b60006006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050336006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034600560008481526020019081526020016000208190555061125b813384600160405180602001604052806000815250611eeb565b6112838183601261126c9190613cc4565b600160405180602001604052806000815250611d55565b60007310e1439455bd2624878b243819e31cfee9eb721c73ffffffffffffffffffffffffffffffffffffffff16346040516112bd906139d5565b60006040518083038185875af1925050503d80600081146112fa576040519150601f19603f3d011682016040523d82523d6000602084013e6112ff565b606091505b5050905080611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a90613a36565b60405180910390fd5b505050565b600060046000838152602001908152602001600020549050919050565b662386f26fc1000081565b7310e1439455bd2624878b243819e31cfee9eb721c81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61142461161f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061146a57506114698561146461161f565b611388565b5b6114a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a090613d8c565b60405180910390fd5b6114b68585858585611eeb565b5050505050565b6114c561161f565b73ffffffffffffffffffffffffffffffffffffffff166114e3610d5c565b73ffffffffffffffffffffffffffffffffffffffff1614611539576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611530906133f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a090613e1e565b60405180910390fd5b6115b281611bec565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b806002908051906020019061163d92919061279a565b5050565b60606002805461165090613e6d565b80601f016020809104026020016040519081016040528092919081815260200182805461167c90613e6d565b80156116c95780601f1061169e576101008083540402835291602001916116c9565b820191906000526020600020905b8154815290600101906020018083116116ac57829003601f168201915b50505050509050919050565b6060600082141561171d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611831565b600082905060005b6000821461174f57808061173890613661565b915050600a826117489190613ece565b9150611725565b60008167ffffffffffffffff81111561176b5761176a612a52565b5b6040519080825280601f01601f19166020018201604052801561179d5781602001600182028036833780820191505090505b5090505b6000851461182a576001826117b69190613eff565b9150600a856117c59190613f33565b60306117d19190613cc4565b60f81b8183815181106117e7576117e6613603565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856118239190613ece565b94506117a1565b8093505050505b919050565b815183511461187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190613fd6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e190614068565b60405180910390fd5b60006118f461161f565b905061190481878787878761216d565b60005b8451811015611ab557600085828151811061192557611924613603565b5b60200260200101519050600085838151811061194457611943613603565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc906140fa565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a9a9190613cc4565b9250508190555050505080611aae90613661565b9050611907565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b2c92919061411a565b60405180910390a4611b428187878787876121cb565b505050505050565b611b52610b9f565b611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b889061419d565b60405180910390fd5b6000600360146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611bd561161f565b604051611be291906130d2565b60405180910390a1565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611cba610b9f565b15611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf1906137ae565b60405180910390fd5b6001600360146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d3e61161f565b604051611d4b91906130d2565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbc9061422f565b60405180910390fd5b6000611dcf61161f565b9050611df081600087611de1886123a3565b611dea886123a3565b8761216d565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e4f9190613cc4565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611ecd92919061424f565b60405180910390a4611ee48160008787878761241d565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5290614068565b60405180910390fd5b6000611f6561161f565b9050611f85818787611f76886123a3565b611f7f886123a3565b8761216d565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561201c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612013906140fa565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120d19190613cc4565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161214e92919061424f565b60405180910390a461216482888888888861241d565b50505050505050565b612175610b9f565b156121b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ac906137ae565b60405180910390fd5b6121c38686868686866125f5565b505050505050565b6121ea8473ffffffffffffffffffffffffffffffffffffffff1661276f565b1561239b578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016122309594939291906142cd565b6020604051808303816000875af192505050801561226c57506040513d601f19601f82011682018060405250810190612269919061434a565b60015b61231257612278614384565b806308c379a014156122d5575061228d6143a6565b8061229857506122d7565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cc9190612c4e565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612309906144ae565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239090614540565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156123c2576123c1612a52565b5b6040519080825280602002602001820160405280156123f05781602001602082028036833780820191505090505b509050828160008151811061240857612407613603565b5b60200260200101818152505080915050919050565b61243c8473ffffffffffffffffffffffffffffffffffffffff1661276f565b156125ed578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612482959493929190614560565b6020604051808303816000875af19250505080156124be57506040513d601f19601f820116820180604052508101906124bb919061434a565b60015b612564576124ca614384565b806308c379a0141561252757506124df6143a6565b806124ea5750612529565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251e9190612c4e565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255b906144ae565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146125eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e290614540565b60405180910390fd5b505b505050505050565b612603868686868686612792565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156126b55760005b83518110156126b35782818151811061265757612656613603565b5b60200260200101516004600086848151811061267657612675613603565b5b60200260200101518152602001908152602001600020600082825461269b9190613cc4565b92505081905550806126ac90613661565b905061263b565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127675760005b83518110156127655782818151811061270957612708613603565b5b60200260200101516004600086848151811061272857612727613603565b5b60200260200101518152602001908152602001600020600082825461274d9190613eff565b925050819055508061275e90613661565b90506126ed565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b8280546127a690613e6d565b90600052602060002090601f0160209004810192826127c8576000855561280f565b82601f106127e157805160ff191683800117855561280f565b8280016001018555821561280f579182015b8281111561280e5782518255916020019190600101906127f3565b5b50905061281c9190612820565b5090565b5b80821115612839576000816000905550600101612821565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61286481612851565b811461286f57600080fd5b50565b6000813590506128818161285b565b92915050565b60006020828403121561289d5761289c612847565b5b60006128ab84828501612872565b91505092915050565b6128bd81612851565b82525050565b60006020820190506128d860008301846128b4565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612909826128de565b9050919050565b612919816128fe565b811461292457600080fd5b50565b60008135905061293681612910565b92915050565b6000806040838503121561295357612952612847565b5b600061296185828601612927565b925050602061297285828601612872565b9150509250929050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129b18161297c565b81146129bc57600080fd5b50565b6000813590506129ce816129a8565b92915050565b6000602082840312156129ea576129e9612847565b5b60006129f8848285016129bf565b91505092915050565b60008115159050919050565b612a1681612a01565b82525050565b6000602082019050612a316000830184612a0d565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a8a82612a41565b810181811067ffffffffffffffff82111715612aa957612aa8612a52565b5b80604052505050565b6000612abc61283d565b9050612ac88282612a81565b919050565b600067ffffffffffffffff821115612ae857612ae7612a52565b5b612af182612a41565b9050602081019050919050565b82818337600083830152505050565b6000612b20612b1b84612acd565b612ab2565b905082815260208101848484011115612b3c57612b3b612a3c565b5b612b47848285612afe565b509392505050565b600082601f830112612b6457612b63612a37565b5b8135612b74848260208601612b0d565b91505092915050565b600060208284031215612b9357612b92612847565b5b600082013567ffffffffffffffff811115612bb157612bb061284c565b5b612bbd84828501612b4f565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c00578082015181840152602081019050612be5565b83811115612c0f576000848401525b50505050565b6000612c2082612bc6565b612c2a8185612bd1565b9350612c3a818560208601612be2565b612c4381612a41565b840191505092915050565b60006020820190508181036000830152612c688184612c15565b905092915050565b600067ffffffffffffffff821115612c8b57612c8a612a52565b5b602082029050602081019050919050565b600080fd5b6000612cb4612caf84612c70565b612ab2565b90508083825260208201905060208402830185811115612cd757612cd6612c9c565b5b835b81811015612d005780612cec8882612872565b845260208401935050602081019050612cd9565b5050509392505050565b600082601f830112612d1f57612d1e612a37565b5b8135612d2f848260208601612ca1565b91505092915050565b600067ffffffffffffffff821115612d5357612d52612a52565b5b612d5c82612a41565b9050602081019050919050565b6000612d7c612d7784612d38565b612ab2565b905082815260208101848484011115612d9857612d97612a3c565b5b612da3848285612afe565b509392505050565b600082601f830112612dc057612dbf612a37565b5b8135612dd0848260208601612d69565b91505092915050565b600080600080600060a08688031215612df557612df4612847565b5b6000612e0388828901612927565b9550506020612e1488828901612927565b945050604086013567ffffffffffffffff811115612e3557612e3461284c565b5b612e4188828901612d0a565b935050606086013567ffffffffffffffff811115612e6257612e6161284c565b5b612e6e88828901612d0a565b925050608086013567ffffffffffffffff811115612e8f57612e8e61284c565b5b612e9b88828901612dab565b9150509295509295909350565b600067ffffffffffffffff821115612ec357612ec2612a52565b5b602082029050602081019050919050565b6000612ee7612ee284612ea8565b612ab2565b90508083825260208201905060208402830185811115612f0a57612f09612c9c565b5b835b81811015612f335780612f1f8882612927565b845260208401935050602081019050612f0c565b5050509392505050565b600082601f830112612f5257612f51612a37565b5b8135612f62848260208601612ed4565b91505092915050565b60008060408385031215612f8257612f81612847565b5b600083013567ffffffffffffffff811115612fa057612f9f61284c565b5b612fac85828601612f3d565b925050602083013567ffffffffffffffff811115612fcd57612fcc61284c565b5b612fd985828601612d0a565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61301881612851565b82525050565b600061302a838361300f565b60208301905092915050565b6000602082019050919050565b600061304e82612fe3565b6130588185612fee565b935061306383612fff565b8060005b8381101561309457815161307b888261301e565b975061308683613036565b925050600181019050613067565b5085935050505092915050565b600060208201905081810360008301526130bb8184613043565b905092915050565b6130cc816128fe565b82525050565b60006020820190506130e760008301846130c3565b92915050565b6130f681612a01565b811461310157600080fd5b50565b600081359050613113816130ed565b92915050565b600080604083850312156131305761312f612847565b5b600061313e85828601612927565b925050602061314f85828601613104565b9150509250929050565b600080604083850312156131705761316f612847565b5b600061317e85828601612927565b925050602061318f85828601612927565b9150509250929050565b600080600080600060a086880312156131b5576131b4612847565b5b60006131c388828901612927565b95505060206131d488828901612927565b94505060406131e588828901612872565b93505060606131f688828901612872565b925050608086013567ffffffffffffffff8111156132175761321661284c565b5b61322388828901612dab565b9150509295509295909350565b60006020828403121561324657613245612847565b5b600061325484828501612927565b91505092915050565b7f43616e6e6f742067657420746865206c617374207072696365206f662061207460008201527f6f6b656e20776974682069642067726561746572207468616e2053494e474c4560208201527f5f45444954494f4e535f535550504c5900000000000000000000000000000000604082015250565b60006132df605083612bd1565b91506132ea8261325d565b606082019050919050565b6000602082019050818103600083015261330e816132d2565b9050919050565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613371602b83612bd1565b915061337c82613315565b604082019050919050565b600060208201905081810360008301526133a081613364565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133dd602083612bd1565b91506133e8826133a7565b602082019050919050565b6000602082019050818103600083015261340c816133d0565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000613449601f83612bd1565b915061345482613413565b602082019050919050565b600060208201905081810360008301526134788161343c565b9050919050565b600081905092915050565b600061349582612bc6565b61349f818561347f565b93506134af818560208601612be2565b80840191505092915050565b60006134c7828561348a565b91506134d3828461348a565b91508190509392505050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061353b603283612bd1565b9150613546826134df565b604082019050919050565b6000602082019050818103600083015261356a8161352e565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006135cd602983612bd1565b91506135d882613571565b604082019050919050565b600060208201905081810360008301526135fc816135c0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061366c82612851565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561369f5761369e613632565b5b600182019050919050565b7f43616e6e6f742067657420746865206f776e657220666f7220746f6b656e207760008201527f6974682069642067726561746572207468616e2053494e474c455f454449544960208201527f4f4e535f535550504c5900000000000000000000000000000000000000000000604082015250565b600061372c604a83612bd1565b9150613737826136aa565b606082019050919050565b6000602082019050818103600083015261375b8161371f565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613798601083612bd1565b91506137a382613762565b602082019050919050565b600060208201905081810360008301526137c78161378b565b9050919050565b7f43616e6e6f74206d696e7420746f6b656e20776974682069642067726561746560008201527f72207468616e2053494e474c455f45444954494f4e535f535550504c59000000602082015250565b600061382a603d83612bd1565b9150613835826137ce565b604082019050919050565b600060208201905081810360008301526138598161381d565b9050919050565b7f43616e6e6f74206d696e7420746f6b656e203000000000000000000000000000600082015250565b6000613896601383612bd1565b91506138a182613860565b602082019050919050565b600060208201905081810360008301526138c581613889565b9050919050565b7f546f6b656e20616c7265616479206d696e746564000000000000000000000000600082015250565b6000613902601483612bd1565b915061390d826138cc565b602082019050919050565b60006020820190508181036000830152613931816138f5565b9050919050565b7f4e6f7420656e6f7567682066756e647320746f206d696e7420746f6b656e0000600082015250565b600061396e601e83612bd1565b915061397982613938565b602082019050919050565b6000602082019050818103600083015261399d81613961565b9050919050565b600081905092915050565b50565b60006139bf6000836139a4565b91506139ca826139af565b600082019050919050565b60006139e0826139b2565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b6000613a20601483612bd1565b9150613a2b826139ea565b602082019050919050565b60006020820190508181036000830152613a4f81613a13565b9050919050565b7f736574417070726f76616c466f72416c6c206973206e6f7420737570706f727460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ab2602283612bd1565b9150613abd82613a56565b604082019050919050565b60006020820190508181036000830152613ae181613aa5565b9050919050565b7f43616e6e6f742063617074757265206120746f6b656e2077697468206964206760008201527f726561746572207468616e2053494e474c455f45444954494f4e535f5355505060208201527f4c59000000000000000000000000000000000000000000000000000000000000604082015250565b6000613b6a604283612bd1565b9150613b7582613ae8565b606082019050919050565b60006020820190508181036000830152613b9981613b5d565b9050919050565b7f43616e6e6f742063617074757265206120746f6b656e2074686174206973206e60008201527f6f74206d696e7465640000000000000000000000000000000000000000000000602082015250565b6000613bfc602983612bd1565b9150613c0782613ba0565b604082019050919050565b60006020820190508181036000830152613c2b81613bef565b9050919050565b7f43616e6e6f742063617074757265206120746f6b656e20776974686f7574207060008201527f6179696e67206174206c6561737420746865206c617374207072696365000000602082015250565b6000613c8e603d83612bd1565b9150613c9982613c32565b604082019050919050565b60006020820190508181036000830152613cbd81613c81565b9050919050565b6000613ccf82612851565b9150613cda83612851565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d0f57613d0e613632565b5b828201905092915050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000613d76602983612bd1565b9150613d8182613d1a565b604082019050919050565b60006020820190508181036000830152613da581613d69565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e08602683612bd1565b9150613e1382613dac565b604082019050919050565b60006020820190508181036000830152613e3781613dfb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e8557607f821691505b60208210811415613e9957613e98613e3e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ed982612851565b9150613ee483612851565b925082613ef457613ef3613e9f565b5b828204905092915050565b6000613f0a82612851565b9150613f1583612851565b925082821015613f2857613f27613632565b5b828203905092915050565b6000613f3e82612851565b9150613f4983612851565b925082613f5957613f58613e9f565b5b828206905092915050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000613fc0602883612bd1565b9150613fcb82613f64565b604082019050919050565b60006020820190508181036000830152613fef81613fb3565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614052602583612bd1565b915061405d82613ff6565b604082019050919050565b6000602082019050818103600083015261408181614045565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006140e4602a83612bd1565b91506140ef82614088565b604082019050919050565b60006020820190508181036000830152614113816140d7565b9050919050565b600060408201905081810360008301526141348185613043565b905081810360208301526141488184613043565b90509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614187601483612bd1565b915061419282614151565b602082019050919050565b600060208201905081810360008301526141b68161417a565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614219602183612bd1565b9150614224826141bd565b604082019050919050565b600060208201905081810360008301526142488161420c565b9050919050565b600060408201905061426460008301856128b4565b61427160208301846128b4565b9392505050565b600081519050919050565b600082825260208201905092915050565b600061429f82614278565b6142a98185614283565b93506142b9818560208601612be2565b6142c281612a41565b840191505092915050565b600060a0820190506142e260008301886130c3565b6142ef60208301876130c3565b81810360408301526143018186613043565b905081810360608301526143158185613043565b905081810360808301526143298184614294565b90509695505050505050565b600081519050614344816129a8565b92915050565b6000602082840312156143605761435f612847565b5b600061436e84828501614335565b91505092915050565b60008160e01c9050919050565b600060033d11156143a35760046000803e6143a0600051614377565b90505b90565b600060443d10156143b657614439565b6143be61283d565b60043d036004823e80513d602482011167ffffffffffffffff821117156143e6575050614439565b808201805167ffffffffffffffff8111156144045750505050614439565b80602083010160043d038501811115614421575050505050614439565b61443082602001850186612a81565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614498603483612bd1565b91506144a38261443c565b604082019050919050565b600060208201905081810360008301526144c78161448b565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600061452a602883612bd1565b9150614535826144ce565b604082019050919050565b600060208201905081810360008301526145598161451d565b9050919050565b600060a08201905061457560008301886130c3565b61458260208301876130c3565b61458f60408301866128b4565b61459c60608301856128b4565b81810360808301526145ae8184614294565b9050969550505050505056fea26469706673582212203b45960805267b084ef0325e27bb573833e6a3f87695ba3cc63404d8fd7e1f1964736f6c634300080c0033
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.