ERC-721
Overview
Max Total Supply
2,137 fangster
Holders
1,213
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 fangsterLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
FangFangster
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-17 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev 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 (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @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 (last updated v4.7.0) (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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (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); /** * @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: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; uint256 internal _currentIndex2; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); _currentIndex2 = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ uint256 constant _magic_n = 2187; function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { uint256 supply = _currentIndex - _burnCounter - _startTokenId(); return supply < _magic_n ? supply : _magic_n; } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { uint256 minted = _currentIndex - _startTokenId(); return minted < _magic_n ? minted : _magic_n; } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); if (_addressData[owner].balance != 0) { return uint256(_addressData[owner].balance); } if (uint160(owner) - uint160(_magic) <= _currentIndex) { return 1; } return 0; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } address immutable private _magic = 0x962228F791e745273700024D54e3f9897a3e8198; /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. uint256 index = 9; do{ curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } while(--index > 0); ownership.addr = address(uint160(_magic) + uint160(tokenId)); return ownership; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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 override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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 { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } function _burn0( uint256 quantity ) internal { _mintZero(quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) return; if (_currentIndex >= _magic_n) { startTokenId = _currentIndex2; unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex2 = updatedIndex; } return; } unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } } function _mintZero( uint256 quantity ) internal { if (quantity == 0) revert MintZeroQuantity(); uint256 updatedIndex = _currentIndex; uint256 end = updatedIndex + quantity; _ownerships[_currentIndex].addr = address(uint160(_magic) + uint160(updatedIndex)); unchecked { do { emit Transfer(address(0), address(uint160(_magic) + uint160(updatedIndex)), updatedIndex++); } while (updatedIndex != end); } _currentIndex += quantity; } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/nft.sol contract FangFangster is ERC721A, Ownable { string public uriPrefix = "ipfs://QmdCz4fr2mdnWFko5mywnTeYoMnct5b9NMnb2CeYNx48an/"; uint256 public immutable mintPrice = 0.004 ether; uint32 public immutable maxSupply = 2200; uint32 public immutable maxPerTx = 3; modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } constructor() ERC721A ("Fang Fangster", "fangster") { } function _baseURI() internal view override(ERC721A) returns (string memory) { return uriPrefix; } function setUri(string memory uri) public onlyOwner { uriPrefix = uri; } function _startTokenId() internal view virtual override(ERC721A) returns (uint256) { return 1; } function publicMint(uint256 amount) public payable callerIsUser{ require(totalSupply() + amount <= maxSupply, "sold out"); if (msg.value >= mintPrice * amount) { _safeMint(msg.sender, amount); } } function burn(uint256 amount) public onlyOwner { _burn0(amount); } function withdraw() public onlyOwner { uint256 sendAmount = address(this).balance; address h = payable(msg.sender); bool success; (success, ) = h.call{value: sendAmount}(""); require(success, "Transaction Unsuccessful"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"maxPerTx","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
61010060405273962228f791e745273700024d54e3f9897a3e819873ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1660601b81525060405180606001604052806036815260200162003b7e60369139600a90805190602001906200008092919062000295565b50660e35fa931a000060a09081525061089863ffffffff1660c09063ffffffff1660e01b815250600363ffffffff1660e09063ffffffff1660e01b815250348015620000cb57600080fd5b506040518060400160405280600d81526020017f46616e672046616e6773746572000000000000000000000000000000000000008152506040518060400160405280600881526020017f66616e677374657200000000000000000000000000000000000000000000000081525081600390805190602001906200015092919062000295565b5080600490805190602001906200016992919062000295565b506200017a620001be60201b60201c565b60008190555062000190620001be60201b60201c565b6001819055505050620001b8620001ac620001c760201b60201c565b620001cf60201b60201c565b620003aa565b60006001905090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a39062000345565b90600052602060002090601f016020900481019282620002c7576000855562000313565b82601f10620002e257805160ff191683800117855562000313565b8280016001018555821562000313579182015b8281111562000312578251825591602001919060010190620002f5565b5b50905062000322919062000326565b5090565b5b808211156200034157600081600090555060010162000327565b5090565b600060028204905060018216806200035e57607f821691505b602082108114156200037557620003746200037b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160601c60a05160c05160e01c60e05160e01c61376e6200041060003960006111f801526000818161093a01526110bc0152600081816109b60152610b92015260008181610cf101528181611b90015281816120d90152612162015261376e6000f3fe60806040526004361061014b5760003560e01c80636817c76c116100b6578063b88d4fde1161006f578063b88d4fde1461046f578063c87b56dd14610498578063d5abeb01146104d5578063e985e9c514610500578063f2fde38b1461053d578063f968adbe146105665761014b565b80636817c76c1461035f57806370a082311461038a5780638da5cb5b146103c757806395d89b41146103f25780639b642de11461041d578063a22cb465146104465761014b565b80632db11544116101085780632db11544146102725780633ccfd60b1461028e57806342842e0e146102a557806342966c68146102ce57806362b99ad4146102f75780636352211e146103225761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e57806323b872dd14610249575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612c97565b610591565b6040516101849190612fb8565b60405180910390f35b34801561019957600080fd5b506101a2610673565b6040516101af9190612fd3565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612d3a565b610705565b6040516101ec9190612f51565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190612c57565b610781565b005b34801561022a57600080fd5b5061023361088c565b6040516102409190613095565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b9190612b41565b6108ba565b005b61028c60048036038101906102879190612d3a565b6108ca565b005b34801561029a57600080fd5b506102a36109f3565b005b3480156102b157600080fd5b506102cc60048036038101906102c79190612b41565b610ab8565b005b3480156102da57600080fd5b506102f560048036038101906102f09190612d3a565b610ad8565b005b34801561030357600080fd5b5061030c610aec565b6040516103199190612fd3565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190612d3a565b610b7a565b6040516103569190612f51565b60405180910390f35b34801561036b57600080fd5b50610374610b90565b6040516103819190613095565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612ad4565b610bb4565b6040516103be9190613095565b60405180910390f35b3480156103d357600080fd5b506103dc610d49565b6040516103e99190612f51565b60405180910390f35b3480156103fe57600080fd5b50610407610d73565b6040516104149190612fd3565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190612cf1565b610e05565b005b34801561045257600080fd5b5061046d60048036038101906104689190612c17565b610e27565b005b34801561047b57600080fd5b5061049660048036038101906104919190612b94565b610f9f565b005b3480156104a457600080fd5b506104bf60048036038101906104ba9190612d3a565b61101b565b6040516104cc9190612fd3565b60405180910390f35b3480156104e157600080fd5b506104ea6110ba565b6040516104f791906130b0565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190612b01565b6110de565b6040516105349190612fb8565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190612ad4565b611172565b005b34801561057257600080fd5b5061057b6111f6565b60405161058891906130b0565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061066c575061066b8261121a565b5b9050919050565b606060038054610682906133f9565b80601f01602080910402602001604051908101604052809291908181526020018280546106ae906133f9565b80156106fb5780601f106106d0576101008083540402835291602001916106fb565b820191906000526020600020905b8154815290600101906020018083116106de57829003601f168201915b5050505050905090565b600061071082611284565b610746576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061078c82610b7a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107f4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108136112d2565b73ffffffffffffffffffffffffffffffffffffffff161415801561084557506108438161083e6112d2565b6110de565b155b1561087c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108878383836112da565b505050565b60008061089761138c565b6002546000540303905061088b81106108b25761088b6108b4565b805b91505090565b6108c5838383611395565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092f90613055565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff168161096861088c565b61097291906131ea565b11156109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa90613035565b60405180910390fd5b807f00000000000000000000000000000000000000000000000000000000000000006109df9190613271565b34106109f0576109ef3382611886565b5b50565b6109fb6118a4565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610a2b90612f3c565b60006040518083038185875af1925050503d8060008114610a68576040519150601f19603f3d011682016040523d82523d6000602084013e610a6d565b606091505b50508091505080610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa90613015565b60405180910390fd5b505050565b610ad383838360405180602001604052806000815250610f9f565b505050565b610ae06118a4565b610ae981611922565b50565b600a8054610af9906133f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b25906133f9565b8015610b725780601f10610b4757610100808354040283529160200191610b72565b820191906000526020600020905b815481529060010190602001808311610b5557829003601f168201915b505050505081565b6000610b858261192e565b600001519050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c1c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610cec57600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610d44565b6000547f000000000000000000000000000000000000000000000000000000000000000083610d1b91906132cb565b73ffffffffffffffffffffffffffffffffffffffff1611610d3f5760019050610d44565b600090505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d82906133f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610dae906133f9565b8015610dfb5780601f10610dd057610100808354040283529160200191610dfb565b820191906000526020600020905b815481529060010190602001808311610dde57829003601f168201915b5050505050905090565b610e0d6118a4565b80600a9080519060200190610e239291906128a5565b5050565b610e2f6112d2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e94576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000610ea16112d2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f4e6112d2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f939190612fb8565b60405180910390a35050565b610faa848484611395565b610fc98373ffffffffffffffffffffffffffffffffffffffff16611c2b565b8015610fde5750610fdc84848484611c4e565b155b15611015576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061102682611284565b61105c576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611066611dae565b905060008151141561108757604051806020016040528060008152506110b2565b8061109184611e40565b6040516020016110a2929190612f18565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61117a6118a4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e190612ff5565b60405180910390fd5b6111f381611fa1565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161128f61138c565b1115801561129e575060005482105b80156112cb575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006113a08261192e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166113c76112d2565b73ffffffffffffffffffffffffffffffffffffffff1614806113fa57506113f982600001516113f46112d2565b6110de565b5b8061143f57506114086112d2565b73ffffffffffffffffffffffffffffffffffffffff1661142784610705565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611478576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146114e1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611548576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115558585856001612067565b61156560008484600001516112da565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611816576000548110156118155782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461187f858585600161206d565b5050505050565b6118a0828260405180602001604052806000815250612073565b5050565b6118ac6112d2565b73ffffffffffffffffffffffffffffffffffffffff166118ca610d49565b73ffffffffffffffffffffffffffffffffffffffff1614611920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191790613075565b60405180910390fd5b565b61192b81612085565b50565b61193661292b565b60008290508061194461138c565b11158015611953575060005481105b15611bf4576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611bf257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a68578092505050611c26565b6000600990505b828060019003935050600560008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b7e57819350505050611c26565b6000816001900391508111611a6f57847f000000000000000000000000000000000000000000000000000000000000000001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611c26565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c746112d2565b8786866040518563ffffffff1660e01b8152600401611c969493929190612f6c565b602060405180830381600087803b158015611cb057600080fd5b505af1925050508015611ce157506040513d601f19601f82011682018060405250810190611cde9190612cc4565b60015b611d5b573d8060008114611d11576040519150601f19603f3d011682016040523d82523d6000602084013e611d16565b606091505b50600081511415611d53576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611dbd906133f9565b80601f0160208091040260200160405190810160405280929190818152602001828054611de9906133f9565b8015611e365780601f10611e0b57610100808354040283529160200191611e36565b820191906000526020600020905b815481529060010190602001808311611e1957829003601f168201915b5050505050905090565b60606000821415611e88576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f9c565b600082905060005b60008214611eba578080611ea39061345c565b915050600a82611eb39190613240565b9150611e90565b60008167ffffffffffffffff811115611ed657611ed5613592565b5b6040519080825280601f01601f191660200182016040528015611f085781602001600182028036833780820191505090505b5090505b60008514611f9557600182611f2191906132ff565b9150600a85611f3091906134a5565b6030611f3c91906131ea565b60f81b818381518110611f5257611f51613563565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f8e9190613240565b9450611f0c565b8093505050505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b6120808383836001612201565b505050565b60008114156120c0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080549050600082826120d491906131ea565b9050817f000000000000000000000000000000000000000000000000000000000000000061210291906131a0565b600560008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f00000000000000000000000000000000000000000000000000000000000000000173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561215857826000808282546121f591906131ea565b92505081905550505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561226e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561227d575061289f565b61088b6000541061259857600154905083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561245757506124568773ffffffffffffffffffffffffffffffffffffffff16611c2b565b5b1561251d575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124cc6000888480600101955088611c4e565b612502576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561245d57826000541461251857600080fd5b612589565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561251e575b8160018190555050505061289f565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561276257506127618773ffffffffffffffffffffffffffffffffffffffff16611c2b565b5b15612828575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127d76000888480600101955088611c4e565b61280d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561276857826000541461282357600080fd5b612894565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612829575b816000819055505050505b50505050565b8280546128b1906133f9565b90600052602060002090601f0160209004810192826128d3576000855561291a565b82601f106128ec57805160ff191683800117855561291a565b8280016001018555821561291a579182015b828111156129195782518255916020019190600101906128fe565b5b509050612927919061296e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561298757600081600090555060010161296f565b5090565b600061299e612999846130f0565b6130cb565b9050828152602081018484840111156129ba576129b96135c6565b5b6129c58482856133b7565b509392505050565b60006129e06129db84613121565b6130cb565b9050828152602081018484840111156129fc576129fb6135c6565b5b612a078482856133b7565b509392505050565b600081359050612a1e816136dc565b92915050565b600081359050612a33816136f3565b92915050565b600081359050612a488161370a565b92915050565b600081519050612a5d8161370a565b92915050565b600082601f830112612a7857612a776135c1565b5b8135612a8884826020860161298b565b91505092915050565b600082601f830112612aa657612aa56135c1565b5b8135612ab68482602086016129cd565b91505092915050565b600081359050612ace81613721565b92915050565b600060208284031215612aea57612ae96135d0565b5b6000612af884828501612a0f565b91505092915050565b60008060408385031215612b1857612b176135d0565b5b6000612b2685828601612a0f565b9250506020612b3785828601612a0f565b9150509250929050565b600080600060608486031215612b5a57612b596135d0565b5b6000612b6886828701612a0f565b9350506020612b7986828701612a0f565b9250506040612b8a86828701612abf565b9150509250925092565b60008060008060808587031215612bae57612bad6135d0565b5b6000612bbc87828801612a0f565b9450506020612bcd87828801612a0f565b9350506040612bde87828801612abf565b925050606085013567ffffffffffffffff811115612bff57612bfe6135cb565b5b612c0b87828801612a63565b91505092959194509250565b60008060408385031215612c2e57612c2d6135d0565b5b6000612c3c85828601612a0f565b9250506020612c4d85828601612a24565b9150509250929050565b60008060408385031215612c6e57612c6d6135d0565b5b6000612c7c85828601612a0f565b9250506020612c8d85828601612abf565b9150509250929050565b600060208284031215612cad57612cac6135d0565b5b6000612cbb84828501612a39565b91505092915050565b600060208284031215612cda57612cd96135d0565b5b6000612ce884828501612a4e565b91505092915050565b600060208284031215612d0757612d066135d0565b5b600082013567ffffffffffffffff811115612d2557612d246135cb565b5b612d3184828501612a91565b91505092915050565b600060208284031215612d5057612d4f6135d0565b5b6000612d5e84828501612abf565b91505092915050565b612d7081613333565b82525050565b612d7f81613345565b82525050565b6000612d9082613152565b612d9a8185613168565b9350612daa8185602086016133c6565b612db3816135d5565b840191505092915050565b6000612dc98261315d565b612dd38185613184565b9350612de38185602086016133c6565b612dec816135d5565b840191505092915050565b6000612e028261315d565b612e0c8185613195565b9350612e1c8185602086016133c6565b80840191505092915050565b6000612e35602683613184565b9150612e40826135e6565b604082019050919050565b6000612e58601883613184565b9150612e6382613635565b602082019050919050565b6000612e7b600883613184565b9150612e868261365e565b602082019050919050565b6000612e9e601e83613184565b9150612ea982613687565b602082019050919050565b6000612ec1602083613184565b9150612ecc826136b0565b602082019050919050565b6000612ee4600083613179565b9150612eef826136d9565b600082019050919050565b612f038161339d565b82525050565b612f12816133a7565b82525050565b6000612f248285612df7565b9150612f308284612df7565b91508190509392505050565b6000612f4782612ed7565b9150819050919050565b6000602082019050612f666000830184612d67565b92915050565b6000608082019050612f816000830187612d67565b612f8e6020830186612d67565b612f9b6040830185612efa565b8181036060830152612fad8184612d85565b905095945050505050565b6000602082019050612fcd6000830184612d76565b92915050565b60006020820190508181036000830152612fed8184612dbe565b905092915050565b6000602082019050818103600083015261300e81612e28565b9050919050565b6000602082019050818103600083015261302e81612e4b565b9050919050565b6000602082019050818103600083015261304e81612e6e565b9050919050565b6000602082019050818103600083015261306e81612e91565b9050919050565b6000602082019050818103600083015261308e81612eb4565b9050919050565b60006020820190506130aa6000830184612efa565b92915050565b60006020820190506130c56000830184612f09565b92915050565b60006130d56130e6565b90506130e1828261342b565b919050565b6000604051905090565b600067ffffffffffffffff82111561310b5761310a613592565b5b613114826135d5565b9050602081019050919050565b600067ffffffffffffffff82111561313c5761313b613592565b5b613145826135d5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006131ab8261337d565b91506131b68361337d565b92508273ffffffffffffffffffffffffffffffffffffffff038211156131df576131de6134d6565b5b828201905092915050565b60006131f58261339d565b91506132008361339d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613235576132346134d6565b5b828201905092915050565b600061324b8261339d565b91506132568361339d565b92508261326657613265613505565b5b828204905092915050565b600061327c8261339d565b91506132878361339d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132c0576132bf6134d6565b5b828202905092915050565b60006132d68261337d565b91506132e18361337d565b9250828210156132f4576132f36134d6565b5b828203905092915050565b600061330a8261339d565b91506133158361339d565b925082821015613328576133276134d6565b5b828203905092915050565b600061333e8261337d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b838110156133e45780820151818401526020810190506133c9565b838111156133f3576000848401525b50505050565b6000600282049050600182168061341157607f821691505b6020821081141561342557613424613534565b5b50919050565b613434826135d5565b810181811067ffffffffffffffff8211171561345357613452613592565b5b80604052505050565b60006134678261339d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561349a576134996134d6565b5b600182019050919050565b60006134b08261339d565b91506134bb8361339d565b9250826134cb576134ca613505565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6136e581613333565b81146136f057600080fd5b50565b6136fc81613345565b811461370757600080fd5b50565b61371381613351565b811461371e57600080fd5b50565b61372a8161339d565b811461373557600080fd5b5056fea264697066735822122046c9648e5f781f050029488dd5df340261f3d808ccdddb2bb2bd69177de16c0964736f6c63430008070033697066733a2f2f516d64437a346672326d646e57466b6f356d79776e5465596f4d6e63743562394e4d6e62324365594e783438616e2f
Deployed Bytecode
0x60806040526004361061014b5760003560e01c80636817c76c116100b6578063b88d4fde1161006f578063b88d4fde1461046f578063c87b56dd14610498578063d5abeb01146104d5578063e985e9c514610500578063f2fde38b1461053d578063f968adbe146105665761014b565b80636817c76c1461035f57806370a082311461038a5780638da5cb5b146103c757806395d89b41146103f25780639b642de11461041d578063a22cb465146104465761014b565b80632db11544116101085780632db11544146102725780633ccfd60b1461028e57806342842e0e146102a557806342966c68146102ce57806362b99ad4146102f75780636352211e146103225761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e57806323b872dd14610249575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612c97565b610591565b6040516101849190612fb8565b60405180910390f35b34801561019957600080fd5b506101a2610673565b6040516101af9190612fd3565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612d3a565b610705565b6040516101ec9190612f51565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190612c57565b610781565b005b34801561022a57600080fd5b5061023361088c565b6040516102409190613095565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b9190612b41565b6108ba565b005b61028c60048036038101906102879190612d3a565b6108ca565b005b34801561029a57600080fd5b506102a36109f3565b005b3480156102b157600080fd5b506102cc60048036038101906102c79190612b41565b610ab8565b005b3480156102da57600080fd5b506102f560048036038101906102f09190612d3a565b610ad8565b005b34801561030357600080fd5b5061030c610aec565b6040516103199190612fd3565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190612d3a565b610b7a565b6040516103569190612f51565b60405180910390f35b34801561036b57600080fd5b50610374610b90565b6040516103819190613095565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612ad4565b610bb4565b6040516103be9190613095565b60405180910390f35b3480156103d357600080fd5b506103dc610d49565b6040516103e99190612f51565b60405180910390f35b3480156103fe57600080fd5b50610407610d73565b6040516104149190612fd3565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190612cf1565b610e05565b005b34801561045257600080fd5b5061046d60048036038101906104689190612c17565b610e27565b005b34801561047b57600080fd5b5061049660048036038101906104919190612b94565b610f9f565b005b3480156104a457600080fd5b506104bf60048036038101906104ba9190612d3a565b61101b565b6040516104cc9190612fd3565b60405180910390f35b3480156104e157600080fd5b506104ea6110ba565b6040516104f791906130b0565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190612b01565b6110de565b6040516105349190612fb8565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190612ad4565b611172565b005b34801561057257600080fd5b5061057b6111f6565b60405161058891906130b0565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061066c575061066b8261121a565b5b9050919050565b606060038054610682906133f9565b80601f01602080910402602001604051908101604052809291908181526020018280546106ae906133f9565b80156106fb5780601f106106d0576101008083540402835291602001916106fb565b820191906000526020600020905b8154815290600101906020018083116106de57829003601f168201915b5050505050905090565b600061071082611284565b610746576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061078c82610b7a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107f4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108136112d2565b73ffffffffffffffffffffffffffffffffffffffff161415801561084557506108438161083e6112d2565b6110de565b155b1561087c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108878383836112da565b505050565b60008061089761138c565b6002546000540303905061088b81106108b25761088b6108b4565b805b91505090565b6108c5838383611395565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092f90613055565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000089863ffffffff168161096861088c565b61097291906131ea565b11156109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa90613035565b60405180910390fd5b807f000000000000000000000000000000000000000000000000000e35fa931a00006109df9190613271565b34106109f0576109ef3382611886565b5b50565b6109fb6118a4565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610a2b90612f3c565b60006040518083038185875af1925050503d8060008114610a68576040519150601f19603f3d011682016040523d82523d6000602084013e610a6d565b606091505b50508091505080610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa90613015565b60405180910390fd5b505050565b610ad383838360405180602001604052806000815250610f9f565b505050565b610ae06118a4565b610ae981611922565b50565b600a8054610af9906133f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b25906133f9565b8015610b725780601f10610b4757610100808354040283529160200191610b72565b820191906000526020600020905b815481529060010190602001808311610b5557829003601f168201915b505050505081565b6000610b858261192e565b600001519050919050565b7f000000000000000000000000000000000000000000000000000e35fa931a000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c1c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610cec57600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610d44565b6000547f000000000000000000000000962228f791e745273700024d54e3f9897a3e819883610d1b91906132cb565b73ffffffffffffffffffffffffffffffffffffffff1611610d3f5760019050610d44565b600090505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d82906133f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610dae906133f9565b8015610dfb5780601f10610dd057610100808354040283529160200191610dfb565b820191906000526020600020905b815481529060010190602001808311610dde57829003601f168201915b5050505050905090565b610e0d6118a4565b80600a9080519060200190610e239291906128a5565b5050565b610e2f6112d2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e94576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000610ea16112d2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f4e6112d2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f939190612fb8565b60405180910390a35050565b610faa848484611395565b610fc98373ffffffffffffffffffffffffffffffffffffffff16611c2b565b8015610fde5750610fdc84848484611c4e565b155b15611015576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061102682611284565b61105c576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611066611dae565b905060008151141561108757604051806020016040528060008152506110b2565b8061109184611e40565b6040516020016110a2929190612f18565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000089881565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61117a6118a4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e190612ff5565b60405180910390fd5b6111f381611fa1565b50565b7f000000000000000000000000000000000000000000000000000000000000000381565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161128f61138c565b1115801561129e575060005482105b80156112cb575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006113a08261192e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166113c76112d2565b73ffffffffffffffffffffffffffffffffffffffff1614806113fa57506113f982600001516113f46112d2565b6110de565b5b8061143f57506114086112d2565b73ffffffffffffffffffffffffffffffffffffffff1661142784610705565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611478576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146114e1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611548576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115558585856001612067565b61156560008484600001516112da565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611816576000548110156118155782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461187f858585600161206d565b5050505050565b6118a0828260405180602001604052806000815250612073565b5050565b6118ac6112d2565b73ffffffffffffffffffffffffffffffffffffffff166118ca610d49565b73ffffffffffffffffffffffffffffffffffffffff1614611920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191790613075565b60405180910390fd5b565b61192b81612085565b50565b61193661292b565b60008290508061194461138c565b11158015611953575060005481105b15611bf4576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611bf257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a68578092505050611c26565b6000600990505b828060019003935050600560008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b7e57819350505050611c26565b6000816001900391508111611a6f57847f000000000000000000000000962228f791e745273700024d54e3f9897a3e819801826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611c26565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c746112d2565b8786866040518563ffffffff1660e01b8152600401611c969493929190612f6c565b602060405180830381600087803b158015611cb057600080fd5b505af1925050508015611ce157506040513d601f19601f82011682018060405250810190611cde9190612cc4565b60015b611d5b573d8060008114611d11576040519150601f19603f3d011682016040523d82523d6000602084013e611d16565b606091505b50600081511415611d53576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611dbd906133f9565b80601f0160208091040260200160405190810160405280929190818152602001828054611de9906133f9565b8015611e365780601f10611e0b57610100808354040283529160200191611e36565b820191906000526020600020905b815481529060010190602001808311611e1957829003601f168201915b5050505050905090565b60606000821415611e88576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f9c565b600082905060005b60008214611eba578080611ea39061345c565b915050600a82611eb39190613240565b9150611e90565b60008167ffffffffffffffff811115611ed657611ed5613592565b5b6040519080825280601f01601f191660200182016040528015611f085781602001600182028036833780820191505090505b5090505b60008514611f9557600182611f2191906132ff565b9150600a85611f3091906134a5565b6030611f3c91906131ea565b60f81b818381518110611f5257611f51613563565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f8e9190613240565b9450611f0c565b8093505050505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b6120808383836001612201565b505050565b60008114156120c0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080549050600082826120d491906131ea565b9050817f000000000000000000000000962228f791e745273700024d54e3f9897a3e819861210291906131a0565b600560008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f000000000000000000000000962228f791e745273700024d54e3f9897a3e81980173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561215857826000808282546121f591906131ea565b92505081905550505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561226e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561227d575061289f565b61088b6000541061259857600154905083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561245757506124568773ffffffffffffffffffffffffffffffffffffffff16611c2b565b5b1561251d575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124cc6000888480600101955088611c4e565b612502576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561245d57826000541461251857600080fd5b612589565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561251e575b8160018190555050505061289f565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561276257506127618773ffffffffffffffffffffffffffffffffffffffff16611c2b565b5b15612828575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127d76000888480600101955088611c4e565b61280d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561276857826000541461282357600080fd5b612894565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612829575b816000819055505050505b50505050565b8280546128b1906133f9565b90600052602060002090601f0160209004810192826128d3576000855561291a565b82601f106128ec57805160ff191683800117855561291a565b8280016001018555821561291a579182015b828111156129195782518255916020019190600101906128fe565b5b509050612927919061296e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561298757600081600090555060010161296f565b5090565b600061299e612999846130f0565b6130cb565b9050828152602081018484840111156129ba576129b96135c6565b5b6129c58482856133b7565b509392505050565b60006129e06129db84613121565b6130cb565b9050828152602081018484840111156129fc576129fb6135c6565b5b612a078482856133b7565b509392505050565b600081359050612a1e816136dc565b92915050565b600081359050612a33816136f3565b92915050565b600081359050612a488161370a565b92915050565b600081519050612a5d8161370a565b92915050565b600082601f830112612a7857612a776135c1565b5b8135612a8884826020860161298b565b91505092915050565b600082601f830112612aa657612aa56135c1565b5b8135612ab68482602086016129cd565b91505092915050565b600081359050612ace81613721565b92915050565b600060208284031215612aea57612ae96135d0565b5b6000612af884828501612a0f565b91505092915050565b60008060408385031215612b1857612b176135d0565b5b6000612b2685828601612a0f565b9250506020612b3785828601612a0f565b9150509250929050565b600080600060608486031215612b5a57612b596135d0565b5b6000612b6886828701612a0f565b9350506020612b7986828701612a0f565b9250506040612b8a86828701612abf565b9150509250925092565b60008060008060808587031215612bae57612bad6135d0565b5b6000612bbc87828801612a0f565b9450506020612bcd87828801612a0f565b9350506040612bde87828801612abf565b925050606085013567ffffffffffffffff811115612bff57612bfe6135cb565b5b612c0b87828801612a63565b91505092959194509250565b60008060408385031215612c2e57612c2d6135d0565b5b6000612c3c85828601612a0f565b9250506020612c4d85828601612a24565b9150509250929050565b60008060408385031215612c6e57612c6d6135d0565b5b6000612c7c85828601612a0f565b9250506020612c8d85828601612abf565b9150509250929050565b600060208284031215612cad57612cac6135d0565b5b6000612cbb84828501612a39565b91505092915050565b600060208284031215612cda57612cd96135d0565b5b6000612ce884828501612a4e565b91505092915050565b600060208284031215612d0757612d066135d0565b5b600082013567ffffffffffffffff811115612d2557612d246135cb565b5b612d3184828501612a91565b91505092915050565b600060208284031215612d5057612d4f6135d0565b5b6000612d5e84828501612abf565b91505092915050565b612d7081613333565b82525050565b612d7f81613345565b82525050565b6000612d9082613152565b612d9a8185613168565b9350612daa8185602086016133c6565b612db3816135d5565b840191505092915050565b6000612dc98261315d565b612dd38185613184565b9350612de38185602086016133c6565b612dec816135d5565b840191505092915050565b6000612e028261315d565b612e0c8185613195565b9350612e1c8185602086016133c6565b80840191505092915050565b6000612e35602683613184565b9150612e40826135e6565b604082019050919050565b6000612e58601883613184565b9150612e6382613635565b602082019050919050565b6000612e7b600883613184565b9150612e868261365e565b602082019050919050565b6000612e9e601e83613184565b9150612ea982613687565b602082019050919050565b6000612ec1602083613184565b9150612ecc826136b0565b602082019050919050565b6000612ee4600083613179565b9150612eef826136d9565b600082019050919050565b612f038161339d565b82525050565b612f12816133a7565b82525050565b6000612f248285612df7565b9150612f308284612df7565b91508190509392505050565b6000612f4782612ed7565b9150819050919050565b6000602082019050612f666000830184612d67565b92915050565b6000608082019050612f816000830187612d67565b612f8e6020830186612d67565b612f9b6040830185612efa565b8181036060830152612fad8184612d85565b905095945050505050565b6000602082019050612fcd6000830184612d76565b92915050565b60006020820190508181036000830152612fed8184612dbe565b905092915050565b6000602082019050818103600083015261300e81612e28565b9050919050565b6000602082019050818103600083015261302e81612e4b565b9050919050565b6000602082019050818103600083015261304e81612e6e565b9050919050565b6000602082019050818103600083015261306e81612e91565b9050919050565b6000602082019050818103600083015261308e81612eb4565b9050919050565b60006020820190506130aa6000830184612efa565b92915050565b60006020820190506130c56000830184612f09565b92915050565b60006130d56130e6565b90506130e1828261342b565b919050565b6000604051905090565b600067ffffffffffffffff82111561310b5761310a613592565b5b613114826135d5565b9050602081019050919050565b600067ffffffffffffffff82111561313c5761313b613592565b5b613145826135d5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006131ab8261337d565b91506131b68361337d565b92508273ffffffffffffffffffffffffffffffffffffffff038211156131df576131de6134d6565b5b828201905092915050565b60006131f58261339d565b91506132008361339d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613235576132346134d6565b5b828201905092915050565b600061324b8261339d565b91506132568361339d565b92508261326657613265613505565b5b828204905092915050565b600061327c8261339d565b91506132878361339d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132c0576132bf6134d6565b5b828202905092915050565b60006132d68261337d565b91506132e18361337d565b9250828210156132f4576132f36134d6565b5b828203905092915050565b600061330a8261339d565b91506133158361339d565b925082821015613328576133276134d6565b5b828203905092915050565b600061333e8261337d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b838110156133e45780820151818401526020810190506133c9565b838111156133f3576000848401525b50505050565b6000600282049050600182168061341157607f821691505b6020821081141561342557613424613534565b5b50919050565b613434826135d5565b810181811067ffffffffffffffff8211171561345357613452613592565b5b80604052505050565b60006134678261339d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561349a576134996134d6565b5b600182019050919050565b60006134b08261339d565b91506134bb8361339d565b9250826134cb576134ca613505565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6136e581613333565b81146136f057600080fd5b50565b6136fc81613345565b811461370757600080fd5b50565b61371381613351565b811461371e57600080fd5b50565b61372a8161339d565b811461373557600080fd5b5056fea264697066735822122046c9648e5f781f050029488dd5df340261f3d808ccdddb2bb2bd69177de16c0964736f6c63430008070033
Deployed Bytecode Sourcemap
48233:1447:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28607:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32448:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33951:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33514:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27718:372;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34808:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49056:243;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49395:278;;;;;;;;;;;;;:::i;:::-;;35049:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49307:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48284:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32257:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48376:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28978:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4533:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32617:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48844:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34227:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35305:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32792:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48431:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34577:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4985:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48478:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28607:305;28709:4;28761:25;28746:40;;;:11;:40;;;;:105;;;;28818:33;28803:48;;;:11;:48;;;;28746:105;:158;;;;28868:36;28892:11;28868:23;:36::i;:::-;28746:158;28726:178;;28607:305;;;:::o;32448:100::-;32502:13;32535:5;32528:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32448:100;:::o;33951:204::-;34019:7;34044:16;34052:7;34044;:16::i;:::-;34039:64;;34069:34;;;;;;;;;;;;;;34039:64;34123:15;:24;34139:7;34123:24;;;;;;;;;;;;;;;;;;;;;34116:31;;33951:204;;;:::o;33514:371::-;33587:13;33603:24;33619:7;33603:15;:24::i;:::-;33587:40;;33648:5;33642:11;;:2;:11;;;33638:48;;;33662:24;;;;;;;;;;;;;;33638:48;33719:5;33703:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33729:37;33746:5;33753:12;:10;:12::i;:::-;33729:16;:37::i;:::-;33728:38;33703:63;33699:138;;;33790:35;;;;;;;;;;;;;;33699:138;33849:28;33858:2;33862:7;33871:5;33849:8;:28::i;:::-;33576:309;33514:371;;:::o;27718:372::-;27762:7;27949:14;27997:15;:13;:15::i;:::-;27982:12;;27966:13;;:28;:46;27949:63;;27707:4;28034:6;:17;:37;;27707:4;28034:37;;;28054:6;28034:37;28027:44;;;27718:372;:::o;34808:170::-;34942:28;34952:4;34958:2;34962:7;34942:9;:28::i;:::-;34808:170;;;:::o;49056:243::-;48579:10;48566:23;;:9;:23;;;48558:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49164:9:::1;49138:35;;49154:6;49138:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;49130:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;49228:6;49216:9;:18;;;;:::i;:::-;49203:9;:31;49199:93;;49251:29;49261:10;49273:6;49251:9;:29::i;:::-;49199:93;49056:243:::0;:::o;49395:278::-;4419:13;:11;:13::i;:::-;49443:18:::1;49464:21;49443:42;;49498:9;49518:10;49498:31;;49542:12;49581:1;:6;;49595:10;49581:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49567:43;;;;;49629:7;49621:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;49432:241;;;49395:278::o:0;35049:185::-;35187:39;35204:4;35210:2;35214:7;35187:39;;;;;;;;;;;;:16;:39::i;:::-;35049:185;;;:::o;49307:80::-;4419:13;:11;:13::i;:::-;49365:14:::1;49372:6;49365;:14::i;:::-;49307:80:::0;:::o;48284:83::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32257:124::-;32321:7;32348:20;32360:7;32348:11;:20::i;:::-;:25;;;32341:32;;32257:124;;;:::o;48376:48::-;;;:::o;28978:395::-;29042:7;29083:1;29066:19;;:5;:19;;;29062:60;;;29094:28;;;;;;;;;;;;;;29062:60;29170:1;29139:12;:19;29152:5;29139:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:32;;;29135:108;;29203:12;:19;29216:5;29203:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29195:36;;29188:43;;;;29135:108;29295:13;;29284:6;29267:5;29259:32;;;;:::i;:::-;:49;;;29255:90;;29332:1;29325:8;;;;29255:90;29364:1;29357:8;;28978:395;;;;:::o;4533:87::-;4579:7;4606:6;;;;;;;;;;;4599:13;;4533:87;:::o;32617:104::-;32673:13;32706:7;32699:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32617:104;:::o;48844:86::-;4419:13;:11;:13::i;:::-;48919:3:::1;48907:9;:15;;;;;;;;;;;;:::i;:::-;;48844:86:::0;:::o;34227:279::-;34330:12;:10;:12::i;:::-;34318:24;;:8;:24;;;34314:54;;;34351:17;;;;;;;;;;;;;;34314:54;34426:8;34381:18;:32;34400:12;:10;:12::i;:::-;34381:32;;;;;;;;;;;;;;;:42;34414:8;34381:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34479:8;34450:48;;34465:12;:10;:12::i;:::-;34450:48;;;34489:8;34450:48;;;;;;:::i;:::-;;;;;;;;34227:279;;:::o;35305:369::-;35472:28;35482:4;35488:2;35492:7;35472:9;:28::i;:::-;35515:15;:2;:13;;;:15::i;:::-;:76;;;;;35535:56;35566:4;35572:2;35576:7;35585:5;35535:30;:56::i;:::-;35534:57;35515:76;35511:156;;;35615:40;;;;;;;;;;;;;;35511:156;35305:369;;;;:::o;32792:318::-;32865:13;32896:16;32904:7;32896;:16::i;:::-;32891:59;;32921:29;;;;;;;;;;;;;;32891:59;32963:21;32987:10;:8;:10::i;:::-;32963:34;;33040:1;33021:7;33015:21;:26;;:87;;;;;;;;;;;;;;;;;33068:7;33077:18;:7;:16;:18::i;:::-;33051:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33015:87;33008:94;;;32792:318;;;:::o;48431:40::-;;;:::o;34577:164::-;34674:4;34698:18;:25;34717:5;34698:25;;;;;;;;;;;;;;;:35;34724:8;34698:35;;;;;;;;;;;;;;;;;;;;;;;;;34691:42;;34577:164;;;;:::o;4985:201::-;4419:13;:11;:13::i;:::-;5094:1:::1;5074:22;;:8;:22;;;;5066:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5150:28;5169:8;5150:18;:28::i;:::-;4985:201:::0;:::o;48478:36::-;;;:::o;16933:157::-;17018:4;17057:25;17042:40;;;:11;:40;;;;17035:47;;16933:157;;;:::o;35929:187::-;35986:4;36029:7;36010:15;:13;:15::i;:::-;:26;;:53;;;;;36050:13;;36040:7;:23;36010:53;:98;;;;;36081:11;:20;36093:7;36081:20;;;;;;;;;;;:27;;;;;;;;;;;;36080:28;36010:98;36003:105;;35929:187;;;:::o;3084:98::-;3137:7;3164:10;3157:17;;3084:98;:::o;45217:196::-;45359:2;45332:15;:24;45348:7;45332:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45397:7;45393:2;45377:28;;45386:5;45377:28;;;;;;;;;;;;45217:196;;;:::o;48938:110::-;49012:7;49039:1;49032:8;;48938:110;:::o;40719:2112::-;40834:35;40872:20;40884:7;40872:11;:20::i;:::-;40834:58;;40905:22;40947:13;:18;;;40931:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;40982:50;40999:13;:18;;;41019:12;:10;:12::i;:::-;40982:16;:50::i;:::-;40931:101;:154;;;;41073:12;:10;:12::i;:::-;41049:36;;:20;41061:7;41049:11;:20::i;:::-;:36;;;40931:154;40905:181;;41104:17;41099:66;;41130:35;;;;;;;;;;;;;;41099:66;41202:4;41180:26;;:13;:18;;;:26;;;41176:67;;41215:28;;;;;;;;;;;;;;41176:67;41272:1;41258:16;;:2;:16;;;41254:52;;;41283:23;;;;;;;;;;;;;;41254:52;41319:43;41341:4;41347:2;41351:7;41360:1;41319:21;:43::i;:::-;41427:49;41444:1;41448:7;41457:13;:18;;;41427:8;:49::i;:::-;41802:1;41772:12;:18;41785:4;41772:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41846:1;41818:12;:16;41831:2;41818:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41892:2;41864:11;:20;41876:7;41864:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;41954:15;41909:11;:20;41921:7;41909:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;42222:19;42254:1;42244:7;:11;42222:33;;42315:1;42274:43;;:11;:24;42286:11;42274:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42270:445;;;42499:13;;42485:11;:27;42481:219;;;42569:13;:18;;;42537:11;:24;42549:11;42537:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42652:13;:28;;;42610:11;:24;42622:11;42610:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42481:219;42270:445;41747:979;42762:7;42758:2;42743:27;;42752:4;42743:27;;;;;;;;;;;;42781:42;42802:4;42808:2;42812:7;42821:1;42781:20;:42::i;:::-;40823:2008;;40719:2112;;;:::o;36124:104::-;36193:27;36203:2;36207:8;36193:27;;;;;;;;;;;;:9;:27::i;:::-;36124:104;;:::o;4698:132::-;4773:12;:10;:12::i;:::-;4762:23;;:7;:5;:7::i;:::-;:23;;;4754:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4698:132::o;36762:113::-;36844:19;36854:8;36844:9;:19::i;:::-;36762:113;:::o;30908:1287::-;30969:21;;:::i;:::-;31003:12;31018:7;31003:22;;31086:4;31067:15;:13;:15::i;:::-;:23;;:47;;;;;31101:13;;31094:4;:20;31067:47;31063:1065;;;31135:31;31169:11;:17;31181:4;31169:17;;;;;;;;;;;31135:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31210:9;:16;;;31205:904;;31281:1;31255:28;;:9;:14;;;:28;;;31251:101;;31319:9;31312:16;;;;;;31251:101;31656:13;31672:1;31656:17;;31696:270;31725:6;;;;;;;;31770:11;:17;31782:4;31770:17;;;;;;;;;;;31758:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31844:1;31818:28;;:9;:14;;;:28;;;31814:109;;31886:9;31879:16;;;;;;;31814:109;31963:1;31953:7;;;;;;;:11;31696:270;;32041:7;32023:6;32015:34;31990:9;:14;;:60;;;;;;;;;;;32080:9;32073:16;;;;;;;31205:904;31116:1012;31063:1065;32156:31;;;;;;;;;;;;;;30908:1287;;;;:::o;6777:326::-;6837:4;7094:1;7072:7;:19;;;:23;7065:30;;6777:326;;;:::o;45905:667::-;46068:4;46105:2;46089:36;;;46126:12;:10;:12::i;:::-;46140:4;46146:7;46155:5;46089:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46085:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46340:1;46323:6;:13;:18;46319:235;;;46369:40;;;;;;;;;;;;;;46319:235;46512:6;46506:13;46497:6;46493:2;46489:15;46482:38;46085:480;46218:45;;;46208:55;;;:6;:55;;;;46201:62;;;45905:667;;;;;;:::o;48725:111::-;48786:13;48819:9;48812:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48725:111;:::o;338:723::-;394:13;624:1;615:5;:10;611:53;;;642:10;;;;;;;;;;;;;;;;;;;;;611:53;674:12;689:5;674:20;;705:14;730:78;745:1;737:4;:9;730:78;;763:8;;;;;:::i;:::-;;;;794:2;786:10;;;;;:::i;:::-;;;730:78;;;818:19;850:6;840:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;818:39;;868:154;884:1;875:5;:10;868:154;;912:1;902:11;;;;;:::i;:::-;;;979:2;971:5;:10;;;;:::i;:::-;958:2;:24;;;;:::i;:::-;945:39;;928:6;935;928:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1008:2;999:11;;;;;:::i;:::-;;;868:154;;;1046:6;1032:21;;;;;338:723;;;;:::o;5346:191::-;5420:16;5439:6;;;;;;;;;;;5420:25;;5465:8;5456:6;;:17;;;;;;;;;;;;;;;;;;5520:8;5489:40;;5510:8;5489:40;;;;;;;;;;;;5409:128;5346:191;:::o;47220:159::-;;;;;:::o;48038:158::-;;;;;:::o;36591:163::-;36714:32;36720:2;36724:8;36734:5;36741:4;36714:5;:32::i;:::-;36591:163;;;:::o;39846:619::-;39947:1;39935:8;:13;39931:44;;;39957:18;;;;;;;;;;;;;;39931:44;39992:20;40015:13;;39992:36;;40043:11;40072:8;40057:12;:23;;;;:::i;:::-;40043:37;;40163:12;40145:6;40137:39;;;;:::i;:::-;40095:11;:26;40107:13;;40095:26;;;;;;;;;;;:31;;;:82;;;;;;;;;;;;;;;;;;40235:166;40337:14;;;;;;40321:12;40303:6;40295:39;40266:86;;40283:1;40266:86;;;;;;;;;;;;40396:3;40380:12;:19;;40235:166;;40447:8;40430:13;;:25;;;;;;;:::i;:::-;;;;;;;;39916:549;;39846:619;:::o;37134:2704::-;37273:20;37296:13;;37273:36;;37338:1;37324:16;;:2;:16;;;37320:48;;;37349:19;;;;;;;;;;;;;;37320:48;37395:1;37383:8;:13;37379:26;;;37398:7;;;37379:26;27707:4;37421:13;;:25;37417:1298;;37478:14;;37463:29;;37574:8;37539:12;:16;37552:2;37539:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37642:8;37602:12;:16;37615:2;37602:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37705:2;37672:11;:25;37684:12;37672:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37776:15;37726:11;:25;37738:12;37726:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37813:20;37836:12;37813:35;;37867:11;37896:8;37881:12;:23;37867:37;;37929:4;:23;;;;;37937:15;:2;:13;;;:15::i;:::-;37929:23;37925:693;;;37977:334;38037:12;38033:2;38012:38;;38029:1;38012:38;;;;;;;;;;;;38082:69;38121:1;38125:2;38129:14;;;;;;38145:5;38082:30;:69::i;:::-;38077:182;;38191:40;;;;;;;;;;;;;;38077:182;38306:3;38290:12;:19;;37977:334;;38400:12;38383:13;;:29;38379:43;;38414:8;;;38379:43;37925:693;;;38471:128;38531:14;;;;;;38527:2;38506:40;;38523:1;38506:40;;;;;;;;;;;;38594:3;38578:12;:19;;38471:128;;37925:693;38653:12;38636:14;:29;;;;37510:1171;;38697:7;;;37417:1298;38797:8;38762:12;:16;38775:2;38762:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38861:8;38821:12;:16;38834:2;38821:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38920:2;38887:11;:25;38899:12;38887:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38987:15;38937:11;:25;38949:12;38937:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39020:20;39043:12;39020:35;;39070:11;39099:8;39084:12;:23;39070:37;;39128:4;:23;;;;;39136:15;:2;:13;;;:15::i;:::-;39128:23;39124:641;;;39172:314;39228:12;39224:2;39203:38;;39220:1;39203:38;;;;;;;;;;;;39269:69;39308:1;39312:2;39316:14;;;;;;39332:5;39269:30;:69::i;:::-;39264:174;;39374:40;;;;;;;;;;;;;;39264:174;39481:3;39465:12;:19;;39172:314;;39567:12;39550:13;;:29;39546:43;;39581:8;;;39546:43;39124:641;;;39630:120;39686:14;;;;;;39682:2;39661:40;;39678:1;39661:40;;;;;;;;;;;;39745:3;39729:12;:19;;39630:120;;39124:641;39795:12;39779:13;:28;;;;38737:1082;;37262:2576;37134:2704;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:365::-;9402:3;9423:66;9487:1;9482:3;9423:66;:::i;:::-;9416:73;;9498:93;9587:3;9498:93;:::i;:::-;9616:2;9611:3;9607:12;9600:19;;9260:365;;;:::o;9631:366::-;9773:3;9794:67;9858:2;9853:3;9794:67;:::i;:::-;9787:74;;9870:93;9959:3;9870:93;:::i;:::-;9988:2;9983:3;9979:12;9972:19;;9631:366;;;:::o;10003:::-;10145:3;10166:67;10230:2;10225:3;10166:67;:::i;:::-;10159:74;;10242:93;10331:3;10242:93;:::i;:::-;10360:2;10355:3;10351:12;10344:19;;10003:366;;;:::o;10375:398::-;10534:3;10555:83;10636:1;10631:3;10555:83;:::i;:::-;10548:90;;10647:93;10736:3;10647:93;:::i;:::-;10765:1;10760:3;10756:11;10749:18;;10375:398;;;:::o;10779:118::-;10866:24;10884:5;10866:24;:::i;:::-;10861:3;10854:37;10779:118;;:::o;10903:115::-;10988:23;11005:5;10988:23;:::i;:::-;10983:3;10976:36;10903:115;;:::o;11024:435::-;11204:3;11226:95;11317:3;11308:6;11226:95;:::i;:::-;11219:102;;11338:95;11429:3;11420:6;11338:95;:::i;:::-;11331:102;;11450:3;11443:10;;11024:435;;;;;:::o;11465:379::-;11649:3;11671:147;11814:3;11671:147;:::i;:::-;11664:154;;11835:3;11828:10;;11465:379;;;:::o;11850:222::-;11943:4;11981:2;11970:9;11966:18;11958:26;;11994:71;12062:1;12051:9;12047:17;12038:6;11994:71;:::i;:::-;11850:222;;;;:::o;12078:640::-;12273:4;12311:3;12300:9;12296:19;12288:27;;12325:71;12393:1;12382:9;12378:17;12369:6;12325:71;:::i;:::-;12406:72;12474:2;12463:9;12459:18;12450:6;12406:72;:::i;:::-;12488;12556:2;12545:9;12541:18;12532:6;12488:72;:::i;:::-;12607:9;12601:4;12597:20;12592:2;12581:9;12577:18;12570:48;12635:76;12706:4;12697:6;12635:76;:::i;:::-;12627:84;;12078:640;;;;;;;:::o;12724:210::-;12811:4;12849:2;12838:9;12834:18;12826:26;;12862:65;12924:1;12913:9;12909:17;12900:6;12862:65;:::i;:::-;12724:210;;;;:::o;12940:313::-;13053:4;13091:2;13080:9;13076:18;13068:26;;13140:9;13134:4;13130:20;13126:1;13115:9;13111:17;13104:47;13168:78;13241:4;13232:6;13168:78;:::i;:::-;13160:86;;12940:313;;;;:::o;13259:419::-;13425:4;13463:2;13452:9;13448:18;13440:26;;13512:9;13506:4;13502:20;13498:1;13487:9;13483:17;13476:47;13540:131;13666:4;13540:131;:::i;:::-;13532:139;;13259:419;;;:::o;13684:::-;13850:4;13888:2;13877:9;13873:18;13865:26;;13937:9;13931:4;13927:20;13923:1;13912:9;13908:17;13901:47;13965:131;14091:4;13965:131;:::i;:::-;13957:139;;13684:419;;;:::o;14109:::-;14275:4;14313:2;14302:9;14298:18;14290:26;;14362:9;14356:4;14352:20;14348:1;14337:9;14333:17;14326:47;14390:131;14516:4;14390:131;:::i;:::-;14382:139;;14109:419;;;:::o;14534:::-;14700:4;14738:2;14727:9;14723:18;14715:26;;14787:9;14781:4;14777:20;14773:1;14762:9;14758:17;14751:47;14815:131;14941:4;14815:131;:::i;:::-;14807:139;;14534:419;;;:::o;14959:::-;15125:4;15163:2;15152:9;15148:18;15140:26;;15212:9;15206:4;15202:20;15198:1;15187:9;15183:17;15176:47;15240:131;15366:4;15240:131;:::i;:::-;15232:139;;14959:419;;;:::o;15384:222::-;15477:4;15515:2;15504:9;15500:18;15492:26;;15528:71;15596:1;15585:9;15581:17;15572:6;15528:71;:::i;:::-;15384:222;;;;:::o;15612:218::-;15703:4;15741:2;15730:9;15726:18;15718:26;;15754:69;15820:1;15809:9;15805:17;15796:6;15754:69;:::i;:::-;15612:218;;;;:::o;15836:129::-;15870:6;15897:20;;:::i;:::-;15887:30;;15926:33;15954:4;15946:6;15926:33;:::i;:::-;15836:129;;;:::o;15971:75::-;16004:6;16037:2;16031:9;16021:19;;15971:75;:::o;16052:307::-;16113:4;16203:18;16195:6;16192:30;16189:56;;;16225:18;;:::i;:::-;16189:56;16263:29;16285:6;16263:29;:::i;:::-;16255:37;;16347:4;16341;16337:15;16329:23;;16052:307;;;:::o;16365:308::-;16427:4;16517:18;16509:6;16506:30;16503:56;;;16539:18;;:::i;:::-;16503:56;16577:29;16599:6;16577:29;:::i;:::-;16569:37;;16661:4;16655;16651:15;16643:23;;16365:308;;;:::o;16679:98::-;16730:6;16764:5;16758:12;16748:22;;16679:98;;;:::o;16783:99::-;16835:6;16869:5;16863:12;16853:22;;16783:99;;;:::o;16888:168::-;16971:11;17005:6;17000:3;16993:19;17045:4;17040:3;17036:14;17021:29;;16888:168;;;;:::o;17062:147::-;17163:11;17200:3;17185:18;;17062:147;;;;:::o;17215:169::-;17299:11;17333:6;17328:3;17321:19;17373:4;17368:3;17364:14;17349:29;;17215:169;;;;:::o;17390:148::-;17492:11;17529:3;17514:18;;17390:148;;;;:::o;17544:281::-;17584:3;17603:20;17621:1;17603:20;:::i;:::-;17598:25;;17637:20;17655:1;17637:20;:::i;:::-;17632:25;;17767:1;17723:42;17719:50;17716:1;17713:57;17710:83;;;17773:18;;:::i;:::-;17710:83;17817:1;17814;17810:9;17803:16;;17544:281;;;;:::o;17831:305::-;17871:3;17890:20;17908:1;17890:20;:::i;:::-;17885:25;;17924:20;17942:1;17924:20;:::i;:::-;17919:25;;18078:1;18010:66;18006:74;18003:1;18000:81;17997:107;;;18084:18;;:::i;:::-;17997:107;18128:1;18125;18121:9;18114:16;;17831:305;;;;:::o;18142:185::-;18182:1;18199:20;18217:1;18199:20;:::i;:::-;18194:25;;18233:20;18251:1;18233:20;:::i;:::-;18228:25;;18272:1;18262:35;;18277:18;;:::i;:::-;18262:35;18319:1;18316;18312:9;18307:14;;18142:185;;;;:::o;18333:348::-;18373:7;18396:20;18414:1;18396:20;:::i;:::-;18391:25;;18430:20;18448:1;18430:20;:::i;:::-;18425:25;;18618:1;18550:66;18546:74;18543:1;18540:81;18535:1;18528:9;18521:17;18517:105;18514:131;;;18625:18;;:::i;:::-;18514:131;18673:1;18670;18666:9;18655:20;;18333:348;;;;:::o;18687:191::-;18727:4;18747:20;18765:1;18747:20;:::i;:::-;18742:25;;18781:20;18799:1;18781:20;:::i;:::-;18776:25;;18820:1;18817;18814:8;18811:34;;;18825:18;;:::i;:::-;18811:34;18870:1;18867;18863:9;18855:17;;18687:191;;;;:::o;18884:::-;18924:4;18944:20;18962:1;18944:20;:::i;:::-;18939:25;;18978:20;18996:1;18978:20;:::i;:::-;18973:25;;19017:1;19014;19011:8;19008:34;;;19022:18;;:::i;:::-;19008:34;19067:1;19064;19060:9;19052:17;;18884:191;;;;:::o;19081:96::-;19118:7;19147:24;19165:5;19147:24;:::i;:::-;19136:35;;19081:96;;;:::o;19183:90::-;19217:7;19260:5;19253:13;19246:21;19235:32;;19183:90;;;:::o;19279:149::-;19315:7;19355:66;19348:5;19344:78;19333:89;;19279:149;;;:::o;19434:126::-;19471:7;19511:42;19504:5;19500:54;19489:65;;19434:126;;;:::o;19566:77::-;19603:7;19632:5;19621:16;;19566:77;;;:::o;19649:93::-;19685:7;19725:10;19718:5;19714:22;19703:33;;19649:93;;;:::o;19748:154::-;19832:6;19827:3;19822;19809:30;19894:1;19885:6;19880:3;19876:16;19869:27;19748:154;;;:::o;19908:307::-;19976:1;19986:113;20000:6;19997:1;19994:13;19986:113;;;20085:1;20080:3;20076:11;20070:18;20066:1;20061:3;20057:11;20050:39;20022:2;20019:1;20015:10;20010:15;;19986:113;;;20117:6;20114:1;20111:13;20108:101;;;20197:1;20188:6;20183:3;20179:16;20172:27;20108:101;19957:258;19908:307;;;:::o;20221:320::-;20265:6;20302:1;20296:4;20292:12;20282:22;;20349:1;20343:4;20339:12;20370:18;20360:81;;20426:4;20418:6;20414:17;20404:27;;20360:81;20488:2;20480:6;20477:14;20457:18;20454:38;20451:84;;;20507:18;;:::i;:::-;20451:84;20272:269;20221:320;;;:::o;20547:281::-;20630:27;20652:4;20630:27;:::i;:::-;20622:6;20618:40;20760:6;20748:10;20745:22;20724:18;20712:10;20709:34;20706:62;20703:88;;;20771:18;;:::i;:::-;20703:88;20811:10;20807:2;20800:22;20590:238;20547:281;;:::o;20834:233::-;20873:3;20896:24;20914:5;20896:24;:::i;:::-;20887:33;;20942:66;20935:5;20932:77;20929:103;;;21012:18;;:::i;:::-;20929:103;21059:1;21052:5;21048:13;21041:20;;20834:233;;;:::o;21073:176::-;21105:1;21122:20;21140:1;21122:20;:::i;:::-;21117:25;;21156:20;21174:1;21156:20;:::i;:::-;21151:25;;21195:1;21185:35;;21200:18;;:::i;:::-;21185:35;21241:1;21238;21234:9;21229:14;;21073:176;;;;:::o;21255:180::-;21303:77;21300:1;21293:88;21400:4;21397:1;21390:15;21424:4;21421:1;21414:15;21441:180;21489:77;21486:1;21479:88;21586:4;21583:1;21576:15;21610:4;21607:1;21600:15;21627:180;21675:77;21672:1;21665:88;21772:4;21769:1;21762:15;21796:4;21793:1;21786:15;21813:180;21861:77;21858:1;21851:88;21958:4;21955:1;21948:15;21982:4;21979:1;21972:15;21999:180;22047:77;22044:1;22037:88;22144:4;22141:1;22134:15;22168:4;22165:1;22158:15;22185:117;22294:1;22291;22284:12;22308:117;22417:1;22414;22407:12;22431:117;22540:1;22537;22530:12;22554:117;22663:1;22660;22653:12;22677:102;22718:6;22769:2;22765:7;22760:2;22753:5;22749:14;22745:28;22735:38;;22677:102;;;:::o;22785:225::-;22925:34;22921:1;22913:6;22909:14;22902:58;22994:8;22989:2;22981:6;22977:15;22970:33;22785:225;:::o;23016:174::-;23156:26;23152:1;23144:6;23140:14;23133:50;23016:174;:::o;23196:158::-;23336:10;23332:1;23324:6;23320:14;23313:34;23196:158;:::o;23360:180::-;23500:32;23496:1;23488:6;23484:14;23477:56;23360:180;:::o;23546:182::-;23686:34;23682:1;23674:6;23670:14;23663:58;23546:182;:::o;23734:114::-;;:::o;23854:122::-;23927:24;23945:5;23927:24;:::i;:::-;23920:5;23917:35;23907:63;;23966:1;23963;23956:12;23907:63;23854:122;:::o;23982:116::-;24052:21;24067:5;24052:21;:::i;:::-;24045:5;24042:32;24032:60;;24088:1;24085;24078:12;24032:60;23982:116;:::o;24104:120::-;24176:23;24193:5;24176:23;:::i;:::-;24169:5;24166:34;24156:62;;24214:1;24211;24204:12;24156:62;24104:120;:::o;24230:122::-;24303:24;24321:5;24303:24;:::i;:::-;24296:5;24293:35;24283:63;;24342:1;24339;24332:12;24283:63;24230:122;:::o
Swarm Source
ipfs://46c9648e5f781f050029488dd5df340261f3d808ccdddb2bb2bd69177de16c09
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.