Contract Overview
[ Download CSV Export ]
Contract Name:
PolypixelClan
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-01-08 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/utils/Strings.sol // 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); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/PolypixelClan.sol pragma solidity >=0.7.0 <0.9.0; contract PolypixelClan is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI = "ipfs://QmaQmi2hEH3mboBwyDoHh3Y2xA5pVQ9Cqb7fnzQr72Vbaf/"; bool public paused = false; constructor() ERC721("Polypixel Clan", "PPC") {} function mint() public payable { require(!paused); uint256 supply = totalSupply(); require(supply + 1 <= 6000); _safeMint(msg.sender, supply + 1); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return string(abi.encodePacked(baseURI, tokenId.toString(), ".json")); } function setBaseURI(string memory newBaseURI) public onlyOwner { baseURI = newBaseURI; } function pause() public onlyOwner { paused = true; } function unpause() public onlyOwner { paused = false; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180606001604052806036815260200162003c7d60369139600b908051906020019062000035929190620001f3565b506000600c60006101000a81548160ff0219169083151502179055503480156200005e57600080fd5b506040518060400160405280600e81526020017f506f6c79706978656c20436c616e0000000000000000000000000000000000008152506040518060400160405280600381526020017f50504300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e3929190620001f3565b508060019080519060200190620000fc929190620001f3565b5050506200011f620001136200012560201b60201c565b6200012d60201b60201c565b62000308565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020190620002a3565b90600052602060002090601f01602090048101928262000225576000855562000271565b82601f106200024057805160ff191683800117855562000271565b8280016001018555821562000271579182015b828111156200027057825182559160200191906001019062000253565b5b50905062000280919062000284565b5090565b5b808211156200029f57600081600090555060010162000285565b5090565b60006002820490506001821680620002bc57607f821691505b60208210811415620002d357620002d2620002d9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61396580620003186000396000f3fe6080604052600436106101665760003560e01c80635c975abb116100d15780638da5cb5b1161008a578063b88d4fde11610064578063b88d4fde146104f7578063c87b56dd14610520578063e985e9c51461055d578063f2fde38b1461059a57610166565b80638da5cb5b1461047857806395d89b41146104a3578063a22cb465146104ce57610166565b80635c975abb1461037a5780636352211e146103a55780636c0360eb146103e257806370a082311461040d578063715018a61461044a5780638456cb591461046157610166565b806323b872dd1161012357806323b872dd1461026e5780632f745c59146102975780633f4ba83a146102d457806342842e0e146102eb5780634f6ccce71461031457806355f804b31461035157610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b3146102105780631249c58b1461023957806318160ddd14610243575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612762565b6105c3565b60405161019f9190612cb0565b60405180910390f35b3480156101b457600080fd5b506101bd61063d565b6040516101ca9190612ccb565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190612805565b6106cf565b6040516102079190612c49565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612722565b610754565b005b61024161086c565b005b34801561024f57600080fd5b506102586108c6565b6040516102659190612f2d565b60405180910390f35b34801561027a57600080fd5b506102956004803603810190610290919061260c565b6108d3565b005b3480156102a357600080fd5b506102be60048036038101906102b99190612722565b610933565b6040516102cb9190612f2d565b60405180910390f35b3480156102e057600080fd5b506102e96109d8565b005b3480156102f757600080fd5b50610312600480360381019061030d919061260c565b610a71565b005b34801561032057600080fd5b5061033b60048036038101906103369190612805565b610a91565b6040516103489190612f2d565b60405180910390f35b34801561035d57600080fd5b50610378600480360381019061037391906127bc565b610b02565b005b34801561038657600080fd5b5061038f610b98565b60405161039c9190612cb0565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190612805565b610bab565b6040516103d99190612c49565b60405180910390f35b3480156103ee57600080fd5b506103f7610c5d565b6040516104049190612ccb565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f919061259f565b610ceb565b6040516104419190612f2d565b60405180910390f35b34801561045657600080fd5b5061045f610da3565b005b34801561046d57600080fd5b50610476610e2b565b005b34801561048457600080fd5b5061048d610ec4565b60405161049a9190612c49565b60405180910390f35b3480156104af57600080fd5b506104b8610eee565b6040516104c59190612ccb565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f091906126e2565b610f80565b005b34801561050357600080fd5b5061051e6004803603810190610519919061265f565b610f96565b005b34801561052c57600080fd5b5061054760048036038101906105429190612805565b610ff8565b6040516105549190612ccb565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f91906125cc565b611074565b6040516105919190612cb0565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc919061259f565b611108565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610636575061063582611200565b5b9050919050565b60606000805461064c90613198565b80601f016020809104026020016040519081016040528092919081815260200182805461067890613198565b80156106c55780601f1061069a576101008083540402835291602001916106c5565b820191906000526020600020905b8154815290600101906020018083116106a857829003601f168201915b5050505050905090565b60006106da826112e2565b610719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071090612e4d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061075f82610bab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c790612ecd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107ef61134e565b73ffffffffffffffffffffffffffffffffffffffff16148061081e575061081d8161081861134e565b611074565b5b61085d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085490612dcd565b60405180910390fd5b6108678383611356565b505050565b600c60009054906101000a900460ff161561088657600080fd5b60006108906108c6565b90506117706001826108a29190613027565b11156108ad57600080fd5b6108c3336001836108be9190613027565b61140f565b50565b6000600880549050905090565b6108e46108de61134e565b8261142d565b610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a90612eed565b60405180910390fd5b61092e83838361150b565b505050565b600061093e83610ceb565b821061097f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097690612ced565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6109e061134e565b73ffffffffffffffffffffffffffffffffffffffff166109fe610ec4565b73ffffffffffffffffffffffffffffffffffffffff1614610a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4b90612e6d565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b610a8c83838360405180602001604052806000815250610f96565b505050565b6000610a9b6108c6565b8210610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad390612f0d565b60405180910390fd5b60088281548110610af057610aef613331565b5b90600052602060002001549050919050565b610b0a61134e565b73ffffffffffffffffffffffffffffffffffffffff16610b28610ec4565b73ffffffffffffffffffffffffffffffffffffffff1614610b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7590612e6d565b60405180910390fd5b80600b9080519060200190610b949291906123b3565b5050565b600c60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90612e0d565b60405180910390fd5b80915050919050565b600b8054610c6a90613198565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9690613198565b8015610ce35780601f10610cb857610100808354040283529160200191610ce3565b820191906000526020600020905b815481529060010190602001808311610cc657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5390612ded565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dab61134e565b73ffffffffffffffffffffffffffffffffffffffff16610dc9610ec4565b73ffffffffffffffffffffffffffffffffffffffff1614610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1690612e6d565b60405180910390fd5b610e296000611767565b565b610e3361134e565b73ffffffffffffffffffffffffffffffffffffffff16610e51610ec4565b73ffffffffffffffffffffffffffffffffffffffff1614610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90612e6d565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610efd90613198565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2990613198565b8015610f765780601f10610f4b57610100808354040283529160200191610f76565b820191906000526020600020905b815481529060010190602001808311610f5957829003601f168201915b5050505050905090565b610f92610f8b61134e565b838361182d565b5050565b610fa7610fa161134e565b8361142d565b610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd90612eed565b60405180910390fd5b610ff28484848461199a565b50505050565b6060611003826112e2565b611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103990612ead565b60405180910390fd5b600b61104d836119f6565b60405160200161105e929190612c1a565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61111061134e565b73ffffffffffffffffffffffffffffffffffffffff1661112e610ec4565b73ffffffffffffffffffffffffffffffffffffffff1614611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b90612e6d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb90612d2d565b60405180910390fd5b6111fd81611767565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806112cb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806112db57506112da82611b57565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113c983610bab565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611429828260405180602001604052806000815250611bc1565b5050565b6000611438826112e2565b611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e90612dad565b60405180910390fd5b600061148283610bab565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114f157508373ffffffffffffffffffffffffffffffffffffffff166114d9846106cf565b73ffffffffffffffffffffffffffffffffffffffff16145b8061150257506115018185611074565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661152b82610bab565b73ffffffffffffffffffffffffffffffffffffffff1614611581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157890612e8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890612d6d565b60405180910390fd5b6115fc838383611c1c565b611607600082611356565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461165791906130ae565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ae9190613027565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189390612d8d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161198d9190612cb0565b60405180910390a3505050565b6119a584848461150b565b6119b184848484611d30565b6119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790612d0d565b60405180910390fd5b50505050565b60606000821415611a3e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b52565b600082905060005b60008214611a70578080611a59906131fb565b915050600a82611a69919061307d565b9150611a46565b60008167ffffffffffffffff811115611a8c57611a8b613360565b5b6040519080825280601f01601f191660200182016040528015611abe5781602001600182028036833780820191505090505b5090505b60008514611b4b57600182611ad791906130ae565b9150600a85611ae69190613244565b6030611af29190613027565b60f81b818381518110611b0857611b07613331565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611b44919061307d565b9450611ac2565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611bcb8383611ec7565b611bd86000848484611d30565b611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e90612d0d565b60405180910390fd5b505050565b611c27838383612095565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c6a57611c658161209a565b611ca9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611ca857611ca783826120e3565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cec57611ce781612250565b611d2b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611d2a57611d298282612321565b5b5b505050565b6000611d518473ffffffffffffffffffffffffffffffffffffffff166123a0565b15611eba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d7a61134e565b8786866040518563ffffffff1660e01b8152600401611d9c9493929190612c64565b602060405180830381600087803b158015611db657600080fd5b505af1925050508015611de757506040513d601f19601f82011682018060405250810190611de4919061278f565b60015b611e6a573d8060008114611e17576040519150601f19603f3d011682016040523d82523d6000602084013e611e1c565b606091505b50600081511415611e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5990612d0d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ebf565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90612e2d565b60405180910390fd5b611f40816112e2565b15611f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7790612d4d565b60405180910390fd5b611f8c60008383611c1c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fdc9190613027565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016120f084610ceb565b6120fa91906130ae565b90506000600760008481526020019081526020016000205490508181146121df576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061226491906130ae565b905060006009600084815260200190815260200160002054905060006008838154811061229457612293613331565b5b9060005260206000200154905080600883815481106122b6576122b5613331565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061230557612304613302565b5b6001900381819060005260206000200160009055905550505050565b600061232c83610ceb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b8280546123bf90613198565b90600052602060002090601f0160209004810192826123e15760008555612428565b82601f106123fa57805160ff1916838001178555612428565b82800160010185558215612428579182015b8281111561242757825182559160200191906001019061240c565b5b5090506124359190612439565b5090565b5b8082111561245257600081600090555060010161243a565b5090565b600061246961246484612f6d565b612f48565b90508281526020810184848401111561248557612484613394565b5b612490848285613156565b509392505050565b60006124ab6124a684612f9e565b612f48565b9050828152602081018484840111156124c7576124c6613394565b5b6124d2848285613156565b509392505050565b6000813590506124e9816138d3565b92915050565b6000813590506124fe816138ea565b92915050565b60008135905061251381613901565b92915050565b60008151905061252881613901565b92915050565b600082601f8301126125435761254261338f565b5b8135612553848260208601612456565b91505092915050565b600082601f8301126125715761257061338f565b5b8135612581848260208601612498565b91505092915050565b60008135905061259981613918565b92915050565b6000602082840312156125b5576125b461339e565b5b60006125c3848285016124da565b91505092915050565b600080604083850312156125e3576125e261339e565b5b60006125f1858286016124da565b9250506020612602858286016124da565b9150509250929050565b6000806000606084860312156126255761262461339e565b5b6000612633868287016124da565b9350506020612644868287016124da565b92505060406126558682870161258a565b9150509250925092565b600080600080608085870312156126795761267861339e565b5b6000612687878288016124da565b9450506020612698878288016124da565b93505060406126a98782880161258a565b925050606085013567ffffffffffffffff8111156126ca576126c9613399565b5b6126d68782880161252e565b91505092959194509250565b600080604083850312156126f9576126f861339e565b5b6000612707858286016124da565b9250506020612718858286016124ef565b9150509250929050565b600080604083850312156127395761273861339e565b5b6000612747858286016124da565b92505060206127588582860161258a565b9150509250929050565b6000602082840312156127785761277761339e565b5b600061278684828501612504565b91505092915050565b6000602082840312156127a5576127a461339e565b5b60006127b384828501612519565b91505092915050565b6000602082840312156127d2576127d161339e565b5b600082013567ffffffffffffffff8111156127f0576127ef613399565b5b6127fc8482850161255c565b91505092915050565b60006020828403121561281b5761281a61339e565b5b60006128298482850161258a565b91505092915050565b61283b816130e2565b82525050565b61284a816130f4565b82525050565b600061285b82612fe4565b6128658185612ffa565b9350612875818560208601613165565b61287e816133a3565b840191505092915050565b600061289482612fef565b61289e818561300b565b93506128ae818560208601613165565b6128b7816133a3565b840191505092915050565b60006128cd82612fef565b6128d7818561301c565b93506128e7818560208601613165565b80840191505092915050565b6000815461290081613198565b61290a818661301c565b94506001821660008114612925576001811461293657612969565b60ff19831686528186019350612969565b61293f85612fcf565b60005b8381101561296157815481890152600182019150602081019050612942565b838801955050505b50505092915050565b600061297f602b8361300b565b915061298a826133b4565b604082019050919050565b60006129a260328361300b565b91506129ad82613403565b604082019050919050565b60006129c560268361300b565b91506129d082613452565b604082019050919050565b60006129e8601c8361300b565b91506129f3826134a1565b602082019050919050565b6000612a0b60248361300b565b9150612a16826134ca565b604082019050919050565b6000612a2e60198361300b565b9150612a3982613519565b602082019050919050565b6000612a51602c8361300b565b9150612a5c82613542565b604082019050919050565b6000612a7460388361300b565b9150612a7f82613591565b604082019050919050565b6000612a97602a8361300b565b9150612aa2826135e0565b604082019050919050565b6000612aba60298361300b565b9150612ac58261362f565b604082019050919050565b6000612add60208361300b565b9150612ae88261367e565b602082019050919050565b6000612b00602c8361300b565b9150612b0b826136a7565b604082019050919050565b6000612b2360058361301c565b9150612b2e826136f6565b600582019050919050565b6000612b4660208361300b565b9150612b518261371f565b602082019050919050565b6000612b6960298361300b565b9150612b7482613748565b604082019050919050565b6000612b8c602f8361300b565b9150612b9782613797565b604082019050919050565b6000612baf60218361300b565b9150612bba826137e6565b604082019050919050565b6000612bd260318361300b565b9150612bdd82613835565b604082019050919050565b6000612bf5602c8361300b565b9150612c0082613884565b604082019050919050565b612c148161314c565b82525050565b6000612c2682856128f3565b9150612c3282846128c2565b9150612c3d82612b16565b91508190509392505050565b6000602082019050612c5e6000830184612832565b92915050565b6000608082019050612c796000830187612832565b612c866020830186612832565b612c936040830185612c0b565b8181036060830152612ca58184612850565b905095945050505050565b6000602082019050612cc56000830184612841565b92915050565b60006020820190508181036000830152612ce58184612889565b905092915050565b60006020820190508181036000830152612d0681612972565b9050919050565b60006020820190508181036000830152612d2681612995565b9050919050565b60006020820190508181036000830152612d46816129b8565b9050919050565b60006020820190508181036000830152612d66816129db565b9050919050565b60006020820190508181036000830152612d86816129fe565b9050919050565b60006020820190508181036000830152612da681612a21565b9050919050565b60006020820190508181036000830152612dc681612a44565b9050919050565b60006020820190508181036000830152612de681612a67565b9050919050565b60006020820190508181036000830152612e0681612a8a565b9050919050565b60006020820190508181036000830152612e2681612aad565b9050919050565b60006020820190508181036000830152612e4681612ad0565b9050919050565b60006020820190508181036000830152612e6681612af3565b9050919050565b60006020820190508181036000830152612e8681612b39565b9050919050565b60006020820190508181036000830152612ea681612b5c565b9050919050565b60006020820190508181036000830152612ec681612b7f565b9050919050565b60006020820190508181036000830152612ee681612ba2565b9050919050565b60006020820190508181036000830152612f0681612bc5565b9050919050565b60006020820190508181036000830152612f2681612be8565b9050919050565b6000602082019050612f426000830184612c0b565b92915050565b6000612f52612f63565b9050612f5e82826131ca565b919050565b6000604051905090565b600067ffffffffffffffff821115612f8857612f87613360565b5b612f91826133a3565b9050602081019050919050565b600067ffffffffffffffff821115612fb957612fb8613360565b5b612fc2826133a3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006130328261314c565b915061303d8361314c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561307257613071613275565b5b828201905092915050565b60006130888261314c565b91506130938361314c565b9250826130a3576130a26132a4565b5b828204905092915050565b60006130b98261314c565b91506130c48361314c565b9250828210156130d7576130d6613275565b5b828203905092915050565b60006130ed8261312c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613183578082015181840152602081019050613168565b83811115613192576000848401525b50505050565b600060028204905060018216806131b057607f821691505b602082108114156131c4576131c36132d3565b5b50919050565b6131d3826133a3565b810181811067ffffffffffffffff821117156131f2576131f1613360565b5b80604052505050565b60006132068261314c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561323957613238613275565b5b600182019050919050565b600061324f8261314c565b915061325a8361314c565b92508261326a576132696132a4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6138dc816130e2565b81146138e757600080fd5b50565b6138f3816130f4565b81146138fe57600080fd5b50565b61390a81613100565b811461391557600080fd5b50565b6139218161314c565b811461392c57600080fd5b5056fea2646970667358221220bb868c42c73ca218ecce50b0384e89d93d735076ccadf16e622bece18163724264736f6c63430008070033697066733a2f2f516d61516d6932684548336d626f427779446f48683359327841357056513943716237666e7a51723732566261662f
Deployed ByteCode Sourcemap
44524:928:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38301:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25795:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27354:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26877:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44789:177;;;:::i;:::-;;38941:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28104:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38609:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45394:55;;;;;;;;;;;;;:::i;:::-;;28514:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39131:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45236:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44698:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25489:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44613:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25219:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4765:103;;;;;;;;;;;;;:::i;:::-;;45338:52;;;;;;;;;;;;;:::i;:::-;;4114:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25964:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27647:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28770:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44972:258;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27873:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5023:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38301:224;38403:4;38442:35;38427:50;;;:11;:50;;;;:90;;;;38481:36;38505:11;38481:23;:36::i;:::-;38427:90;38420:97;;38301:224;;;:::o;25795:100::-;25849:13;25882:5;25875:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25795:100;:::o;27354:221::-;27430:7;27458:16;27466:7;27458;:16::i;:::-;27450:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27543:15;:24;27559:7;27543:24;;;;;;;;;;;;;;;;;;;;;27536:31;;27354:221;;;:::o;26877:411::-;26958:13;26974:23;26989:7;26974:14;:23::i;:::-;26958:39;;27022:5;27016:11;;:2;:11;;;;27008:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27116:5;27100:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27125:37;27142:5;27149:12;:10;:12::i;:::-;27125:16;:37::i;:::-;27100:62;27078:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27259:21;27268:2;27272:7;27259:8;:21::i;:::-;26947:341;26877:411;;:::o;44789:177::-;44836:6;;;;;;;;;;;44835:7;44827:16;;;;;;44850:14;44867:13;:11;:13::i;:::-;44850:30;;44909:4;44904:1;44895:6;:10;;;;:::i;:::-;:18;;44887:27;;;;;;44927:33;44937:10;44958:1;44949:6;:10;;;;:::i;:::-;44927:9;:33::i;:::-;44820:146;44789:177::o;38941:113::-;39002:7;39029:10;:17;;;;39022:24;;38941:113;:::o;28104:339::-;28299:41;28318:12;:10;:12::i;:::-;28332:7;28299:18;:41::i;:::-;28291:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28407:28;28417:4;28423:2;28427:7;28407:9;:28::i;:::-;28104:339;;;:::o;38609:256::-;38706:7;38742:23;38759:5;38742:16;:23::i;:::-;38734:5;:31;38726:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38831:12;:19;38844:5;38831:19;;;;;;;;;;;;;;;:26;38851:5;38831:26;;;;;;;;;;;;38824:33;;38609:256;;;;:::o;45394:55::-;4345:12;:10;:12::i;:::-;4334:23;;:7;:5;:7::i;:::-;:23;;;4326:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45441:5:::1;45432:6;;:14;;;;;;;;;;;;;;;;;;45394:55::o:0;28514:185::-;28652:39;28669:4;28675:2;28679:7;28652:39;;;;;;;;;;;;:16;:39::i;:::-;28514:185;;;:::o;39131:233::-;39206:7;39242:30;:28;:30::i;:::-;39234:5;:38;39226:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;39339:10;39350:5;39339:17;;;;;;;;:::i;:::-;;;;;;;;;;39332:24;;39131:233;;;:::o;45236:96::-;4345:12;:10;:12::i;:::-;4334:23;;:7;:5;:7::i;:::-;:23;;;4326:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45316:10:::1;45306:7;:20;;;;;;;;;;;;:::i;:::-;;45236:96:::0;:::o;44698:26::-;;;;;;;;;;;;;:::o;25489:239::-;25561:7;25581:13;25597:7;:16;25605:7;25597:16;;;;;;;;;;;;;;;;;;;;;25581:32;;25649:1;25632:19;;:5;:19;;;;25624:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25715:5;25708:12;;;25489:239;;;:::o;44613:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25219:208::-;25291:7;25336:1;25319:19;;:5;:19;;;;25311:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25403:9;:16;25413:5;25403:16;;;;;;;;;;;;;;;;25396:23;;25219:208;;;:::o;4765:103::-;4345:12;:10;:12::i;:::-;4334:23;;:7;:5;:7::i;:::-;:23;;;4326:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4830:30:::1;4857:1;4830:18;:30::i;:::-;4765:103::o:0;45338:52::-;4345:12;:10;:12::i;:::-;4334:23;;:7;:5;:7::i;:::-;:23;;;4326:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45383:4:::1;45374:6;;:13;;;;;;;;;;;;;;;;;;45338:52::o:0;4114:87::-;4160:7;4187:6;;;;;;;;;;;4180:13;;4114:87;:::o;25964:104::-;26020:13;26053:7;26046:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25964:104;:::o;27647:155::-;27742:52;27761:12;:10;:12::i;:::-;27775:8;27785;27742:18;:52::i;:::-;27647:155;;:::o;28770:328::-;28945:41;28964:12;:10;:12::i;:::-;28978:7;28945:18;:41::i;:::-;28937:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29051:39;29065:4;29071:2;29075:7;29084:5;29051:13;:39::i;:::-;28770:328;;;;:::o;44972:258::-;45045:13;45078:16;45086:7;45078;:16::i;:::-;45070:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;45186:7;45195:18;:7;:16;:18::i;:::-;45169:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45155:69;;44972:258;;;:::o;27873:164::-;27970:4;27994:18;:25;28013:5;27994:25;;;;;;;;;;;;;;;:35;28020:8;27994:35;;;;;;;;;;;;;;;;;;;;;;;;;27987:42;;27873:164;;;;:::o;5023:201::-;4345:12;:10;:12::i;:::-;4334:23;;:7;:5;:7::i;:::-;:23;;;4326:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5132:1:::1;5112:22;;:8;:22;;;;5104:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5188:28;5207:8;5188:18;:28::i;:::-;5023:201:::0;:::o;24850:305::-;24952:4;25004:25;24989:40;;;:11;:40;;;;:105;;;;25061:33;25046:48;;;:11;:48;;;;24989:105;:158;;;;25111:36;25135:11;25111:23;:36::i;:::-;24989:158;24969:178;;24850:305;;;:::o;30608:127::-;30673:4;30725:1;30697:30;;:7;:16;30705:7;30697:16;;;;;;;;;;;;;;;;;;;;;:30;;;;30690:37;;30608:127;;;:::o;2838:98::-;2891:7;2918:10;2911:17;;2838:98;:::o;34590:174::-;34692:2;34665:15;:24;34681:7;34665:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34748:7;34744:2;34710:46;;34719:23;34734:7;34719:14;:23::i;:::-;34710:46;;;;;;;;;;;;34590:174;;:::o;31592:110::-;31668:26;31678:2;31682:7;31668:26;;;;;;;;;;;;:9;:26::i;:::-;31592:110;;:::o;30902:348::-;30995:4;31020:16;31028:7;31020;:16::i;:::-;31012:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31096:13;31112:23;31127:7;31112:14;:23::i;:::-;31096:39;;31165:5;31154:16;;:7;:16;;;:51;;;;31198:7;31174:31;;:20;31186:7;31174:11;:20::i;:::-;:31;;;31154:51;:87;;;;31209:32;31226:5;31233:7;31209:16;:32::i;:::-;31154:87;31146:96;;;30902:348;;;;:::o;33894:578::-;34053:4;34026:31;;:23;34041:7;34026:14;:23::i;:::-;:31;;;34018:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34136:1;34122:16;;:2;:16;;;;34114:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34192:39;34213:4;34219:2;34223:7;34192:20;:39::i;:::-;34296:29;34313:1;34317:7;34296:8;:29::i;:::-;34357:1;34338:9;:15;34348:4;34338:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34386:1;34369:9;:13;34379:2;34369:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34417:2;34398:7;:16;34406:7;34398:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34456:7;34452:2;34437:27;;34446:4;34437:27;;;;;;;;;;;;33894:578;;;:::o;5384:191::-;5458:16;5477:6;;;;;;;;;;;5458:25;;5503:8;5494:6;;:17;;;;;;;;;;;;;;;;;;5558:8;5527:40;;5548:8;5527:40;;;;;;;;;;;;5447:128;5384:191;:::o;34906:315::-;35061:8;35052:17;;:5;:17;;;;35044:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35148:8;35110:18;:25;35129:5;35110:25;;;;;;;;;;;;;;;:35;35136:8;35110:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35194:8;35172:41;;35187:5;35172:41;;;35204:8;35172:41;;;;;;:::i;:::-;;;;;;;;34906:315;;;:::o;29980:::-;30137:28;30147:4;30153:2;30157:7;30137:9;:28::i;:::-;30184:48;30207:4;30213:2;30217:7;30226:5;30184:22;:48::i;:::-;30176:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29980:315;;;;:::o;400:723::-;456:13;686:1;677:5;:10;673:53;;;704:10;;;;;;;;;;;;;;;;;;;;;673:53;736:12;751:5;736:20;;767:14;792:78;807:1;799:4;:9;792:78;;825:8;;;;;:::i;:::-;;;;856:2;848:10;;;;;:::i;:::-;;;792:78;;;880:19;912:6;902:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;880:39;;930:154;946:1;937:5;:10;930:154;;974:1;964:11;;;;;:::i;:::-;;;1041:2;1033:5;:10;;;;:::i;:::-;1020:2;:24;;;;:::i;:::-;1007:39;;990:6;997;990:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1070:2;1061:11;;;;;:::i;:::-;;;930:154;;;1108:6;1094:21;;;;;400:723;;;;:::o;16546:157::-;16631:4;16670:25;16655:40;;;:11;:40;;;;16648:47;;16546:157;;;:::o;31929:321::-;32059:18;32065:2;32069:7;32059:5;:18::i;:::-;32110:54;32141:1;32145:2;32149:7;32158:5;32110:22;:54::i;:::-;32088:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31929:321;;;:::o;39977:589::-;40121:45;40148:4;40154:2;40158:7;40121:26;:45::i;:::-;40199:1;40183:18;;:4;:18;;;40179:187;;;40218:40;40250:7;40218:31;:40::i;:::-;40179:187;;;40288:2;40280:10;;:4;:10;;;40276:90;;40307:47;40340:4;40346:7;40307:32;:47::i;:::-;40276:90;40179:187;40394:1;40380:16;;:2;:16;;;40376:183;;;40413:45;40450:7;40413:36;:45::i;:::-;40376:183;;;40486:4;40480:10;;:2;:10;;;40476:83;;40507:40;40535:2;40539:7;40507:27;:40::i;:::-;40476:83;40376:183;39977:589;;;:::o;35786:799::-;35941:4;35962:15;:2;:13;;;:15::i;:::-;35958:620;;;36014:2;35998:36;;;36035:12;:10;:12::i;:::-;36049:4;36055:7;36064:5;35998:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35994:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36257:1;36240:6;:13;:18;36236:272;;;36283:60;;;;;;;;;;:::i;:::-;;;;;;;;36236:272;36458:6;36452:13;36443:6;36439:2;36435:15;36428:38;35994:529;36131:41;;;36121:51;;;:6;:51;;;;36114:58;;;;;35958:620;36562:4;36555:11;;35786:799;;;;;;;:::o;32586:382::-;32680:1;32666:16;;:2;:16;;;;32658:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;32739:16;32747:7;32739;:16::i;:::-;32738:17;32730:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32801:45;32830:1;32834:2;32838:7;32801:20;:45::i;:::-;32876:1;32859:9;:13;32869:2;32859:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32907:2;32888:7;:16;32896:7;32888:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32952:7;32948:2;32927:33;;32944:1;32927:33;;;;;;;;;;;;32586:382;;:::o;37157:126::-;;;;:::o;41289:164::-;41393:10;:17;;;;41366:15;:24;41382:7;41366:24;;;;;;;;;;;:44;;;;41421:10;41437:7;41421:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41289:164;:::o;42080:988::-;42346:22;42396:1;42371:22;42388:4;42371:16;:22::i;:::-;:26;;;;:::i;:::-;42346:51;;42408:18;42429:17;:26;42447:7;42429:26;;;;;;;;;;;;42408:47;;42576:14;42562:10;:28;42558:328;;42607:19;42629:12;:18;42642:4;42629:18;;;;;;;;;;;;;;;:34;42648:14;42629:34;;;;;;;;;;;;42607:56;;42713:11;42680:12;:18;42693:4;42680:18;;;;;;;;;;;;;;;:30;42699:10;42680:30;;;;;;;;;;;:44;;;;42830:10;42797:17;:30;42815:11;42797:30;;;;;;;;;;;:43;;;;42592:294;42558:328;42982:17;:26;43000:7;42982:26;;;;;;;;;;;42975:33;;;43026:12;:18;43039:4;43026:18;;;;;;;;;;;;;;;:34;43045:14;43026:34;;;;;;;;;;;43019:41;;;42161:907;;42080:988;;:::o;43363:1079::-;43616:22;43661:1;43641:10;:17;;;;:21;;;;:::i;:::-;43616:46;;43673:18;43694:15;:24;43710:7;43694:24;;;;;;;;;;;;43673:45;;44045:19;44067:10;44078:14;44067:26;;;;;;;;:::i;:::-;;;;;;;;;;44045:48;;44131:11;44106:10;44117;44106:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;44242:10;44211:15;:28;44227:11;44211:28;;;;;;;;;;;:41;;;;44383:15;:24;44399:7;44383:24;;;;;;;;;;;44376:31;;;44418:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43434:1008;;;43363:1079;:::o;40867:221::-;40952:14;40969:20;40986:2;40969:16;:20::i;:::-;40952:37;;41027:7;41000:12;:16;41013:2;41000:16;;;;;;;;;;;;;;;:24;41017:6;41000:24;;;;;;;;;;;:34;;;;41074:6;41045:17;:26;41063:7;41045:26;;;;;;;;;;;:35;;;;40941:147;40867:221;;:::o;6402:387::-;6462:4;6670:12;6737:7;6725:20;6717:28;;6780:1;6773:4;:8;6766:15;;;6402:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:::-;11021:3;11042:67;11106:2;11101:3;11042:67;:::i;:::-;11035:74;;11118:93;11207:3;11118:93;:::i;:::-;11236:2;11231:3;11227:12;11220:19;;10879:366;;;:::o;11251:::-;11393:3;11414:67;11478:2;11473:3;11414:67;:::i;:::-;11407:74;;11490:93;11579:3;11490:93;:::i;:::-;11608:2;11603:3;11599:12;11592:19;;11251:366;;;:::o;11623:::-;11765:3;11786:67;11850:2;11845:3;11786:67;:::i;:::-;11779:74;;11862:93;11951:3;11862:93;:::i;:::-;11980:2;11975:3;11971:12;11964:19;;11623:366;;;:::o;11995:::-;12137:3;12158:67;12222:2;12217:3;12158:67;:::i;:::-;12151:74;;12234:93;12323:3;12234:93;:::i;:::-;12352:2;12347:3;12343:12;12336:19;;11995:366;;;:::o;12367:::-;12509:3;12530:67;12594:2;12589:3;12530:67;:::i;:::-;12523:74;;12606:93;12695:3;12606:93;:::i;:::-;12724:2;12719:3;12715:12;12708:19;;12367:366;;;:::o;12739:::-;12881:3;12902:67;12966:2;12961:3;12902:67;:::i;:::-;12895:74;;12978:93;13067:3;12978:93;:::i;:::-;13096:2;13091:3;13087:12;13080:19;;12739:366;;;:::o;13111:::-;13253:3;13274:67;13338:2;13333:3;13274:67;:::i;:::-;13267:74;;13350:93;13439:3;13350:93;:::i;:::-;13468:2;13463:3;13459:12;13452:19;;13111:366;;;:::o;13483:::-;13625:3;13646:67;13710:2;13705:3;13646:67;:::i;:::-;13639:74;;13722:93;13811:3;13722:93;:::i;:::-;13840:2;13835:3;13831:12;13824:19;;13483:366;;;:::o;13855:400::-;14015:3;14036:84;14118:1;14113:3;14036:84;:::i;:::-;14029:91;;14129:93;14218:3;14129:93;:::i;:::-;14247:1;14242:3;14238:11;14231:18;;13855:400;;;:::o;14261:366::-;14403:3;14424:67;14488:2;14483:3;14424:67;:::i;:::-;14417:74;;14500:93;14589:3;14500:93;:::i;:::-;14618:2;14613:3;14609:12;14602:19;;14261:366;;;:::o;14633:::-;14775:3;14796:67;14860:2;14855:3;14796:67;:::i;:::-;14789:74;;14872:93;14961:3;14872:93;:::i;:::-;14990:2;14985:3;14981:12;14974:19;;14633:366;;;:::o;15005:::-;15147:3;15168:67;15232:2;15227:3;15168:67;:::i;:::-;15161:74;;15244:93;15333:3;15244:93;:::i;:::-;15362:2;15357:3;15353:12;15346:19;;15005:366;;;:::o;15377:::-;15519:3;15540:67;15604:2;15599:3;15540:67;:::i;:::-;15533:74;;15616:93;15705:3;15616:93;:::i;:::-;15734:2;15729:3;15725:12;15718:19;;15377:366;;;:::o;15749:::-;15891:3;15912:67;15976:2;15971:3;15912:67;:::i;:::-;15905:74;;15988:93;16077:3;15988:93;:::i;:::-;16106:2;16101:3;16097:12;16090:19;;15749:366;;;:::o;16121:::-;16263:3;16284:67;16348:2;16343:3;16284:67;:::i;:::-;16277:74;;16360:93;16449:3;16360:93;:::i;:::-;16478:2;16473:3;16469:12;16462:19;;16121:366;;;:::o;16493:118::-;16580:24;16598:5;16580:24;:::i;:::-;16575:3;16568:37;16493:118;;:::o;16617:695::-;16895:3;16917:92;17005:3;16996:6;16917:92;:::i;:::-;16910:99;;17026:95;17117:3;17108:6;17026:95;:::i;:::-;17019:102;;17138:148;17282:3;17138:148;:::i;:::-;17131:155;;17303:3;17296:10;;16617:695;;;;;:::o;17318:222::-;17411:4;17449:2;17438:9;17434:18;17426:26;;17462:71;17530:1;17519:9;17515:17;17506:6;17462:71;:::i;:::-;17318:222;;;;:::o;17546:640::-;17741:4;17779:3;17768:9;17764:19;17756:27;;17793:71;17861:1;17850:9;17846:17;17837:6;17793:71;:::i;:::-;17874:72;17942:2;17931:9;17927:18;17918:6;17874:72;:::i;:::-;17956;18024:2;18013:9;18009:18;18000:6;17956:72;:::i;:::-;18075:9;18069:4;18065:20;18060:2;18049:9;18045:18;18038:48;18103:76;18174:4;18165:6;18103:76;:::i;:::-;18095:84;;17546:640;;;;;;;:::o;18192:210::-;18279:4;18317:2;18306:9;18302:18;18294:26;;18330:65;18392:1;18381:9;18377:17;18368:6;18330:65;:::i;:::-;18192:210;;;;:::o;18408:313::-;18521:4;18559:2;18548:9;18544:18;18536:26;;18608:9;18602:4;18598:20;18594:1;18583:9;18579:17;18572:47;18636:78;18709:4;18700:6;18636:78;:::i;:::-;18628:86;;18408:313;;;;:::o;18727:419::-;18893:4;18931:2;18920:9;18916:18;18908:26;;18980:9;18974:4;18970:20;18966:1;18955:9;18951:17;18944:47;19008:131;19134:4;19008:131;:::i;:::-;19000:139;;18727:419;;;:::o;19152:::-;19318:4;19356:2;19345:9;19341:18;19333:26;;19405:9;19399:4;19395:20;19391:1;19380:9;19376:17;19369:47;19433:131;19559:4;19433:131;:::i;:::-;19425:139;;19152:419;;;:::o;19577:::-;19743:4;19781:2;19770:9;19766:18;19758:26;;19830:9;19824:4;19820:20;19816:1;19805:9;19801:17;19794:47;19858:131;19984:4;19858:131;:::i;:::-;19850:139;;19577:419;;;:::o;20002:::-;20168:4;20206:2;20195:9;20191:18;20183:26;;20255:9;20249:4;20245:20;20241:1;20230:9;20226:17;20219:47;20283:131;20409:4;20283:131;:::i;:::-;20275:139;;20002:419;;;:::o;20427:::-;20593:4;20631:2;20620:9;20616:18;20608:26;;20680:9;20674:4;20670:20;20666:1;20655:9;20651:17;20644:47;20708:131;20834:4;20708:131;:::i;:::-;20700:139;;20427:419;;;:::o;20852:::-;21018:4;21056:2;21045:9;21041:18;21033:26;;21105:9;21099:4;21095:20;21091:1;21080:9;21076:17;21069:47;21133:131;21259:4;21133:131;:::i;:::-;21125:139;;20852:419;;;:::o;21277:::-;21443:4;21481:2;21470:9;21466:18;21458:26;;21530:9;21524:4;21520:20;21516:1;21505:9;21501:17;21494:47;21558:131;21684:4;21558:131;:::i;:::-;21550:139;;21277:419;;;:::o;21702:::-;21868:4;21906:2;21895:9;21891:18;21883:26;;21955:9;21949:4;21945:20;21941:1;21930:9;21926:17;21919:47;21983:131;22109:4;21983:131;:::i;:::-;21975:139;;21702:419;;;:::o;22127:::-;22293:4;22331:2;22320:9;22316:18;22308:26;;22380:9;22374:4;22370:20;22366:1;22355:9;22351:17;22344:47;22408:131;22534:4;22408:131;:::i;:::-;22400:139;;22127:419;;;:::o;22552:::-;22718:4;22756:2;22745:9;22741:18;22733:26;;22805:9;22799:4;22795:20;22791:1;22780:9;22776:17;22769:47;22833:131;22959:4;22833:131;:::i;:::-;22825:139;;22552:419;;;:::o;22977:::-;23143:4;23181:2;23170:9;23166:18;23158:26;;23230:9;23224:4;23220:20;23216:1;23205:9;23201:17;23194:47;23258:131;23384:4;23258:131;:::i;:::-;23250:139;;22977:419;;;:::o;23402:::-;23568:4;23606:2;23595:9;23591:18;23583:26;;23655:9;23649:4;23645:20;23641:1;23630:9;23626:17;23619:47;23683:131;23809:4;23683:131;:::i;:::-;23675:139;;23402:419;;;:::o;23827:::-;23993:4;24031:2;24020:9;24016:18;24008:26;;24080:9;24074:4;24070:20;24066:1;24055:9;24051:17;24044:47;24108:131;24234:4;24108:131;:::i;:::-;24100:139;;23827:419;;;:::o;24252:::-;24418:4;24456:2;24445:9;24441:18;24433:26;;24505:9;24499:4;24495:20;24491:1;24480:9;24476:17;24469:47;24533:131;24659:4;24533:131;:::i;:::-;24525:139;;24252:419;;;:::o;24677:::-;24843:4;24881:2;24870:9;24866:18;24858:26;;24930:9;24924:4;24920:20;24916:1;24905:9;24901:17;24894:47;24958:131;25084:4;24958:131;:::i;:::-;24950:139;;24677:419;;;:::o;25102:::-;25268:4;25306:2;25295:9;25291:18;25283:26;;25355:9;25349:4;25345:20;25341:1;25330:9;25326:17;25319:47;25383:131;25509:4;25383:131;:::i;:::-;25375:139;;25102:419;;;:::o;25527:::-;25693:4;25731:2;25720:9;25716:18;25708:26;;25780:9;25774:4;25770:20;25766:1;25755:9;25751:17;25744:47;25808:131;25934:4;25808:131;:::i;:::-;25800:139;;25527:419;;;:::o;25952:::-;26118:4;26156:2;26145:9;26141:18;26133:26;;26205:9;26199:4;26195:20;26191:1;26180:9;26176:17;26169:47;26233:131;26359:4;26233:131;:::i;:::-;26225:139;;25952:419;;;:::o;26377:222::-;26470:4;26508:2;26497:9;26493:18;26485:26;;26521:71;26589:1;26578:9;26574:17;26565:6;26521:71;:::i;:::-;26377:222;;;;:::o;26605:129::-;26639:6;26666:20;;:::i;:::-;26656:30;;26695:33;26723:4;26715:6;26695:33;:::i;:::-;26605:129;;;:::o;26740:75::-;26773:6;26806:2;26800:9;26790:19;;26740:75;:::o;26821:307::-;26882:4;26972:18;26964:6;26961:30;26958:56;;;26994:18;;:::i;:::-;26958:56;27032:29;27054:6;27032:29;:::i;:::-;27024:37;;27116:4;27110;27106:15;27098:23;;26821:307;;;:::o;27134:308::-;27196:4;27286:18;27278:6;27275:30;27272:56;;;27308:18;;:::i;:::-;27272:56;27346:29;27368:6;27346:29;:::i;:::-;27338:37;;27430:4;27424;27420:15;27412:23;;27134:308;;;:::o;27448:141::-;27497:4;27520:3;27512:11;;27543:3;27540:1;27533:14;27577:4;27574:1;27564:18;27556:26;;27448:141;;;:::o;27595:98::-;27646:6;27680:5;27674:12;27664:22;;27595:98;;;:::o;27699:99::-;27751:6;27785:5;27779:12;27769:22;;27699:99;;;:::o;27804:168::-;27887:11;27921:6;27916:3;27909:19;27961:4;27956:3;27952:14;27937:29;;27804:168;;;;:::o;27978:169::-;28062:11;28096:6;28091:3;28084:19;28136:4;28131:3;28127:14;28112:29;;27978:169;;;;:::o;28153:148::-;28255:11;28292:3;28277:18;;28153:148;;;;:::o;28307:305::-;28347:3;28366:20;28384:1;28366:20;:::i;:::-;28361:25;;28400:20;28418:1;28400:20;:::i;:::-;28395:25;;28554:1;28486:66;28482:74;28479:1;28476:81;28473:107;;;28560:18;;:::i;:::-;28473:107;28604:1;28601;28597:9;28590:16;;28307:305;;;;:::o;28618:185::-;28658:1;28675:20;28693:1;28675:20;:::i;:::-;28670:25;;28709:20;28727:1;28709:20;:::i;:::-;28704:25;;28748:1;28738:35;;28753:18;;:::i;:::-;28738:35;28795:1;28792;28788:9;28783:14;;28618:185;;;;:::o;28809:191::-;28849:4;28869:20;28887:1;28869:20;:::i;:::-;28864:25;;28903:20;28921:1;28903:20;:::i;:::-;28898:25;;28942:1;28939;28936:8;28933:34;;;28947:18;;:::i;:::-;28933:34;28992:1;28989;28985:9;28977:17;;28809:191;;;;:::o;29006:96::-;29043:7;29072:24;29090:5;29072:24;:::i;:::-;29061:35;;29006:96;;;:::o;29108:90::-;29142:7;29185:5;29178:13;29171:21;29160:32;;29108:90;;;:::o;29204:149::-;29240:7;29280:66;29273:5;29269:78;29258:89;;29204:149;;;:::o;29359:126::-;29396:7;29436:42;29429:5;29425:54;29414:65;;29359:126;;;:::o;29491:77::-;29528:7;29557:5;29546:16;;29491:77;;;:::o;29574:154::-;29658:6;29653:3;29648;29635:30;29720:1;29711:6;29706:3;29702:16;29695:27;29574:154;;;:::o;29734:307::-;29802:1;29812:113;29826:6;29823:1;29820:13;29812:113;;;29911:1;29906:3;29902:11;29896:18;29892:1;29887:3;29883:11;29876:39;29848:2;29845:1;29841:10;29836:15;;29812:113;;;29943:6;29940:1;29937:13;29934:101;;;30023:1;30014:6;30009:3;30005:16;29998:27;29934:101;29783:258;29734:307;;;:::o;30047:320::-;30091:6;30128:1;30122:4;30118:12;30108:22;;30175:1;30169:4;30165:12;30196:18;30186:81;;30252:4;30244:6;30240:17;30230:27;;30186:81;30314:2;30306:6;30303:14;30283:18;30280:38;30277:84;;;30333:18;;:::i;:::-;30277:84;30098:269;30047:320;;;:::o;30373:281::-;30456:27;30478:4;30456:27;:::i;:::-;30448:6;30444:40;30586:6;30574:10;30571:22;30550:18;30538:10;30535:34;30532:62;30529:88;;;30597:18;;:::i;:::-;30529:88;30637:10;30633:2;30626:22;30416:238;30373:281;;:::o;30660:233::-;30699:3;30722:24;30740:5;30722:24;:::i;:::-;30713:33;;30768:66;30761:5;30758:77;30755:103;;;30838:18;;:::i;:::-;30755:103;30885:1;30878:5;30874:13;30867:20;;30660:233;;;:::o;30899:176::-;30931:1;30948:20;30966:1;30948:20;:::i;:::-;30943:25;;30982:20;31000:1;30982:20;:::i;:::-;30977:25;;31021:1;31011:35;;31026:18;;:::i;:::-;31011:35;31067:1;31064;31060:9;31055:14;;30899:176;;;;:::o;31081:180::-;31129:77;31126:1;31119:88;31226:4;31223:1;31216:15;31250:4;31247:1;31240:15;31267:180;31315:77;31312:1;31305:88;31412:4;31409:1;31402:15;31436:4;31433:1;31426:15;31453:180;31501:77;31498:1;31491:88;31598:4;31595:1;31588:15;31622:4;31619:1;31612:15;31639:180;31687:77;31684:1;31677:88;31784:4;31781:1;31774:15;31808:4;31805:1;31798:15;31825:180;31873:77;31870:1;31863:88;31970:4;31967:1;31960:15;31994:4;31991:1;31984:15;32011:180;32059:77;32056:1;32049:88;32156:4;32153:1;32146:15;32180:4;32177:1;32170:15;32197:117;32306:1;32303;32296:12;32320:117;32429:1;32426;32419:12;32443:117;32552:1;32549;32542:12;32566:117;32675:1;32672;32665:12;32689:102;32730:6;32781:2;32777:7;32772:2;32765:5;32761:14;32757:28;32747:38;;32689:102;;;:::o;32797:230::-;32937:34;32933:1;32925:6;32921:14;32914:58;33006:13;33001:2;32993:6;32989:15;32982:38;32797:230;:::o;33033:237::-;33173:34;33169:1;33161:6;33157:14;33150:58;33242:20;33237:2;33229:6;33225:15;33218:45;33033:237;:::o;33276:225::-;33416:34;33412:1;33404:6;33400:14;33393:58;33485:8;33480:2;33472:6;33468:15;33461:33;33276:225;:::o;33507:178::-;33647:30;33643:1;33635:6;33631:14;33624:54;33507:178;:::o;33691:223::-;33831:34;33827:1;33819:6;33815:14;33808:58;33900:6;33895:2;33887:6;33883:15;33876:31;33691:223;:::o;33920:175::-;34060:27;34056:1;34048:6;34044:14;34037:51;33920:175;:::o;34101:231::-;34241:34;34237:1;34229:6;34225:14;34218:58;34310:14;34305:2;34297:6;34293:15;34286:39;34101:231;:::o;34338:243::-;34478:34;34474:1;34466:6;34462:14;34455:58;34547:26;34542:2;34534:6;34530:15;34523:51;34338:243;:::o;34587:229::-;34727:34;34723:1;34715:6;34711:14;34704:58;34796:12;34791:2;34783:6;34779:15;34772:37;34587:229;:::o;34822:228::-;34962:34;34958:1;34950:6;34946:14;34939:58;35031:11;35026:2;35018:6;35014:15;35007:36;34822:228;:::o;35056:182::-;35196:34;35192:1;35184:6;35180:14;35173:58;35056:182;:::o;35244:231::-;35384:34;35380:1;35372:6;35368:14;35361:58;35453:14;35448:2;35440:6;35436:15;35429:39;35244:231;:::o;35481:155::-;35621:7;35617:1;35609:6;35605:14;35598:31;35481:155;:::o;35642:182::-;35782:34;35778:1;35770:6;35766:14;35759:58;35642:182;:::o;35830:228::-;35970:34;35966:1;35958:6;35954:14;35947:58;36039:11;36034:2;36026:6;36022:15;36015:36;35830:228;:::o;36064:234::-;36204:34;36200:1;36192:6;36188:14;36181:58;36273:17;36268:2;36260:6;36256:15;36249:42;36064:234;:::o;36304:220::-;36444:34;36440:1;36432:6;36428:14;36421:58;36513:3;36508:2;36500:6;36496:15;36489:28;36304:220;:::o;36530:236::-;36670:34;36666:1;36658:6;36654:14;36647:58;36739:19;36734:2;36726:6;36722:15;36715:44;36530:236;:::o;36772:231::-;36912:34;36908:1;36900:6;36896:14;36889:58;36981:14;36976:2;36968:6;36964:15;36957:39;36772:231;:::o;37009:122::-;37082:24;37100:5;37082:24;:::i;:::-;37075:5;37072:35;37062:63;;37121:1;37118;37111:12;37062:63;37009:122;:::o;37137:116::-;37207:21;37222:5;37207:21;:::i;:::-;37200:5;37197:32;37187:60;;37243:1;37240;37233:12;37187:60;37137:116;:::o;37259:120::-;37331:23;37348:5;37331:23;:::i;:::-;37324:5;37321:34;37311:62;;37369:1;37366;37359:12;37311:62;37259:120;:::o;37385:122::-;37458:24;37476:5;37458:24;:::i;:::-;37451:5;37448:35;37438:63;;37497:1;37494;37487:12;37438:63;37385:122;:::o
Swarm Source
ipfs://bb868c42c73ca218ecce50b0384e89d93d735076ccadf16e622bece181637242
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.