Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
6,666 MHDC
Holders
2,477
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 MHDCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MHDC
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-22 */ // SPDX-License-Identifier: Unlicense // Sources flattened with hardhat v2.8.3 https://hardhat.org pragma solidity ^0.8.4; // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File erc721a/contracts/[email protected] // Creator: Chiru Labs error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); 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 and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 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**128 - 1 (max value of uint128). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { 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; } // Compiler will pack the following // _currentIndex and _burnCounter into a single 256bit word. // The tokenId of the next token to be minted. uint128 internal _currentIndex; // The number of tokens burned. uint128 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_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter; } } /** * @dev See {IERC721Enumerable-tokenByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenByIndex(uint256 index) public view override returns (uint256) { uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (!ownership.burned) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert TokenIndexOutOfBounds(); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. revert(); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * 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 (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. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { 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 (!_checkOnERC721Received(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 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); } /** * @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) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = uint128(updatedIndex); } _afterTokenTransfers(address(0), to, startTokenId, 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**128. 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**128. 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 address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @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 @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File contracts/MHDC.sol // MHDC ERC721A Contract contract MHDC is ERC721A, Ownable { // amounts sold per address in each sale mapping(address => uint256) private _primary; mapping(address => uint256) private _public; // total amounts sold uint256 private _primarySold; uint256 private _publicSold; // whitelist mapping(address => bool) private _primaryList; // primary distributions struct Dist { uint256 share; uint256 loc; string name; } mapping(address => Dist) private _distMap; address[] private _distList; uint256 private _shareTotal = 0; uint256 private _primaryMaxAmount = 6000; uint256 private _publicMaxAmount = 600; uint256 private _price = 0.0666 ether; uint256 private _primaryLimit = 3; uint256 private _publicLimit = 2; bool private _isPrimarySale = true; bool private _isPublicSale; event PrimarySale(bool isPrimarySale); event PublicSale(bool isPublicSale); event Distribution(uint256 amount); event DistributionListChange(address indexed target, bool isIncluded); constructor( address[] memory addresses, string[] memory names, uint256[] memory shares, address[] memory premintAddresses, uint256[] memory premintQuantity ) ERC721A("Murder Head Death Club", "MHDC") { for (uint256 i = 0; i < addresses.length; i++) { addDist(addresses[i], names[i], shares[i]); } for (uint256 i = 0; i < premintAddresses.length; i++) { _safeMint(premintAddresses[i], premintQuantity[i]); } emit PrimarySale(true); } receive() external payable {} fallback() external payable {} function _baseURI() internal pure override returns (string memory) { return "https://murderheaddeathclub.com/api/nft/"; } function getShareTotal() public view returns (uint256) { return _shareTotal; } function getShare(address account) public view returns (uint256) { return _distMap[account].share; } function getName(address account) public view returns (string memory) { return _distMap[account].name; } function allDist() public view returns (address[] memory) { return _distList; } function isDist(address account) public view returns (bool) { return (getShare(account) > 0); } function setPrice(uint256 price) external onlyOwner { _price = price; } function getPrice() public view returns (uint256) { return _price; } function setPrimaryLimit(uint256 lim) external onlyOwner { _primaryLimit = lim; } function setPublicLimit(uint256 lim) external onlyOwner { _publicLimit = lim; } function getPrimaryLimit() public view returns (uint256) { return _primaryLimit; } function getPublicLimit() public view returns (uint256) { return _publicLimit; } function isPrimarySale() public view returns (bool) { return _isPrimarySale; } function isPublicSale() public view returns (bool) { return _isPublicSale; } function getPrimarySold() public view returns (uint256) { return _primarySold; } function getPublicSold() public view returns (uint256) { return _publicSold; } function getTotalSold() public view returns (uint256) { return _primarySold + _publicSold; } function getAddressPrimarySold(address target) public view returns (uint256) { return _primary[target]; } function getAddressPublicSold(address target) public view returns (uint256) { return _public[target]; } function isPrimaryAddress(address target) public view returns (bool) { return _primaryList[target]; } function setPrimaryAddresses(address[] memory _addresses, bool _state) external onlyOwner { for (uint256 i = 0; i < _addresses.length; i++) { _primaryList[_addresses[i]] = _state; } } function shareTotal() private { uint256 sum; for (uint256 i = 0; i < _distList.length; i++) { sum += _distMap[_distList[i]].share; } _shareTotal = sum; } function addDist( address _address, string memory _Name, uint256 _share ) public onlyOwner { require(_address != address(0), "Invalid address"); require(_share > 0, "Share must be greater than zero"); Dist storage d = _distMap[_address]; require(d.share == 0, "Address already in distribution list"); d.share = _share; d.loc = _distList.length; d.name = _Name; _distList.push(_address); emit DistributionListChange(_address, true); shareTotal(); } function removeDist(address _address) public onlyOwner { Dist storage d = _distMap[_address]; require(d.share > 0, "Address not in distribution list"); d.share = 0; address _last = _distList[_distList.length - 1]; _distMap[_last].loc = d.loc; _distList[d.loc] = _last; _distList.pop(); emit DistributionListChange(_address, false); shareTotal(); } function editDistName(address _address, string memory _Name) external onlyOwner { Dist storage d = _distMap[_address]; require(d.share > 0, "Address not in distribution list"); d.name = _Name; } function editDistShare(address _address, uint256 _share) external onlyOwner { require(_share > 0, "To set share to zero, use removeDist()"); Dist storage d = _distMap[_address]; require(d.share > 0, "Address not in distribution list"); d.share = _share; shareTotal(); } function editDistAddress(string memory _Name, address _newAddress) external onlyOwner { address _oldAddress; Dist memory d; for (uint256 i = 0; i < _distList.length; i++) { _oldAddress = _distList[i]; d = _distMap[_oldAddress]; if (keccak256(bytes(d.name)) == keccak256(bytes(_Name))) { removeDist(_oldAddress); addDist(_newAddress, _Name, d.share); } } } function primaryMint(uint256 quantity) external payable { require(_isPrimarySale, "No ongoing primary sale"); require( _primaryList[_msgSender()], "Address not allowed to participate in primary sale" ); require( msg.value == _price * quantity, "Payment amount not equal to the price of token(s)" ); uint256 _newPrimarySold = _primarySold + quantity; require( _newPrimarySold <= _primaryMaxAmount, "Transaction quantity exceeds the number of available tokens in primary sale" ); uint256 _newSold = _primary[_msgSender()] + quantity; require(_newSold <= _primaryLimit, "Insufficient allowance"); _primarySold = _newPrimarySold; _primary[_msgSender()] = _newSold; _safeMint(_msgSender(), quantity); } function publicMint(uint256 quantity) external payable { require(_isPublicSale, "No ongoing public sale"); require( msg.value == _price * quantity, "Payment amount not equal to the price of token(s)" ); uint256 _newPublicSold = _publicSold + quantity; require( _newPublicSold <= _publicMaxAmount, "Transaction quantity exceeds the number of available tokens in public sale" ); uint256 _newSold = _public[_msgSender()] + quantity; require(_newSold <= _publicLimit, "Insufficient allowance"); _publicSold = _newPublicSold; _public[_msgSender()] = _newSold; _safeMint(_msgSender(), quantity); } function setPrimarySale(bool state) external onlyOwner { require(_isPrimarySale != state, "Primary sale already in this state"); _isPrimarySale = state; if (!state) { _publicMaxAmount += _primaryMaxAmount - _primarySold; _primaryMaxAmount = _primarySold; } emit PrimarySale(state); } function setPublicSale(bool state) external onlyOwner { require(_isPublicSale != state, "Public sale already in this state"); _isPublicSale = state; emit PublicSale(state); } function distribute() external onlyOwner { if (_distList.length > 0) { uint256 balance = address(this).balance; uint256 unit = balance / _shareTotal; address _address; for (uint256 i = 0; i < _distList.length; i++) { _address = _distList[i]; payable(_address).transfer(_distMap[_address].share * unit); } emit Distribution(balance); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"string[]","name":"names","type":"string[]"},{"internalType":"uint256[]","name":"shares","type":"uint256[]"},{"internalType":"address[]","name":"premintAddresses","type":"address[]"},{"internalType":"uint256[]","name":"premintQuantity","type":"uint256[]"}],"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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Distribution","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bool","name":"isIncluded","type":"bool"}],"name":"DistributionListChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isPrimarySale","type":"bool"}],"name":"PrimarySale","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isPublicSale","type":"bool"}],"name":"PublicSale","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"string","name":"_Name","type":"string"},{"internalType":"uint256","name":"_share","type":"uint256"}],"name":"addDist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allDist","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"distribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_Name","type":"string"},{"internalType":"address","name":"_newAddress","type":"address"}],"name":"editDistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"string","name":"_Name","type":"string"}],"name":"editDistName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_share","type":"uint256"}],"name":"editDistShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"getAddressPrimarySold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"getAddressPublicSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrimaryLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrimarySold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPublicLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPublicSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getShareTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"isDist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"isPrimaryAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPrimarySale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"primaryMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeDist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPrimaryAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"lim","type":"uint256"}],"name":"setPrimaryLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setPrimarySale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"lim","type":"uint256"}],"name":"setPublicLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526000600f5561177060105561025860115566ec9c58de0a8000601255600360135560026014556001601560006101000a81548160ff0219169083151502179055503480156200005257600080fd5b50604051620073aa380380620073aa83398181016040528101906200007891906200106e565b6040518060400160405280601681526020017f4d7572646572204865616420446561746820436c7562000000000000000000008152506040518060400160405280600481526020017f4d484443000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000fc92919062000cd0565b5080600290805190602001906200011592919062000cd0565b505050620001386200012c6200027b60201b60201c565b6200028360201b60201c565b60005b8551811015620001c557620001af8682815181106200015f576200015e62001706565b5b60200260200101518683815181106200017d576200017c62001706565b5b60200260200101518684815181106200019b576200019a62001706565b5b60200260200101516200034960201b60201c565b8080620001bc906200165a565b9150506200013b565b5060005b825181101562000235576200021f838281518110620001ed57620001ec62001706565b5b60200260200101518383815181106200020b576200020a62001706565b5b60200260200101516200061a60201b60201c565b80806200022c906200165a565b915050620001c9565b507f8897ffc5553ed983436acdd139ab0c9623582fd2041c26be4f61fad17bfa82d5600160405162000268919062001327565b60405180910390a15050505050620018a6565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003596200027b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200037f6200064060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003cf90620013aa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200044b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004429062001344565b60405180910390fd5b6000811162000491576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004889062001388565b60405180910390fd5b6000600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160000154146200051e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005159062001366565b60405180910390fd5b818160000181905550600e805490508160010181905550828160020190805190602001906200054f92919062000cd0565b50600e849080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff167f9364ef31fb6376e7be09a1115bcb9d1e956818fcf9a28376530e7957dfe424466001604051620005fc919062001327565b60405180910390a2620006146200066a60201b60201c565b50505050565b6200063c8282604051806020016040528060008152506200073460201b60201c565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600090505b600e805490508110156200072957600d6000600e83815481106200069b576200069a62001706565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015482620007119190620014e5565b9150808062000720906200165a565b91505062000672565b5080600f8190555050565b6200074983838360016200074e60201b60201c565b505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415620007ea576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141562000826576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200083b600086838762000b0260201b60201c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101562000aac57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801562000a5e575062000a5c600088848862000b0860201b60201c565b155b1562000a96576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050620009d9565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055505062000afb600086838762000cb760201b60201c565b5050505050565b50505050565b600062000b368473ffffffffffffffffffffffffffffffffffffffff1662000cbd60201b620031af1760201c565b1562000caa578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000b686200027b60201b60201c565b8786866040518563ffffffff1660e01b815260040162000b8c9493929190620012d3565b602060405180830381600087803b15801562000ba757600080fd5b505af192505050801562000bdb57506040513d601f19601f8201168201806040525081019062000bd8919062001191565b60015b62000c59573d806000811462000c0e576040519150601f19603f3d011682016040523d82523d6000602084013e62000c13565b606091505b5060008151141562000c51576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000caf565b600190505b949350505050565b50505050565b600080823b905060008111915050919050565b82805462000cde90620015ee565b90600052602060002090601f01602090048101928262000d02576000855562000d4e565b82601f1062000d1d57805160ff191683800117855562000d4e565b8280016001018555821562000d4e579182015b8281111562000d4d57825182559160200191906001019062000d30565b5b50905062000d5d919062000d61565b5090565b5b8082111562000d7c57600081600090555060010162000d62565b5090565b600062000d9762000d9184620013f5565b620013cc565b9050808382526020820190508285602086028201111562000dbd5762000dbc62001769565b5b60005b8581101562000df1578162000dd6888262000f5d565b84526020840193506020830192505060018101905062000dc0565b5050509392505050565b600062000e1262000e0c8462001424565b620013cc565b9050808382526020820190508285602086028201111562000e385762000e3762001769565b5b60005b8581101562000e8d57815167ffffffffffffffff81111562000e625762000e6162001764565b5b80860162000e71898262001024565b8552602085019450602084019350505060018101905062000e3b565b5050509392505050565b600062000eae62000ea88462001453565b620013cc565b9050808382526020820190508285602086028201111562000ed45762000ed362001769565b5b60005b8581101562000f08578162000eed888262001057565b84526020840193506020830192505060018101905062000ed7565b5050509392505050565b600062000f2962000f238462001482565b620013cc565b90508281526020810184848401111562000f485762000f476200176e565b5b62000f55848285620015b8565b509392505050565b60008151905062000f6e8162001858565b92915050565b600082601f83011262000f8c5762000f8b62001764565b5b815162000f9e84826020860162000d80565b91505092915050565b600082601f83011262000fbf5762000fbe62001764565b5b815162000fd184826020860162000dfb565b91505092915050565b600082601f83011262000ff25762000ff162001764565b5b81516200100484826020860162000e97565b91505092915050565b6000815190506200101e8162001872565b92915050565b600082601f8301126200103c576200103b62001764565b5b81516200104e84826020860162000f12565b91505092915050565b60008151905062001068816200188c565b92915050565b600080600080600060a086880312156200108d576200108c62001778565b5b600086015167ffffffffffffffff811115620010ae57620010ad62001773565b5b620010bc8882890162000f74565b955050602086015167ffffffffffffffff811115620010e057620010df62001773565b5b620010ee8882890162000fa7565b945050604086015167ffffffffffffffff81111562001112576200111162001773565b5b620011208882890162000fda565b935050606086015167ffffffffffffffff81111562001144576200114362001773565b5b620011528882890162000f74565b925050608086015167ffffffffffffffff81111562001176576200117562001773565b5b620011848882890162000fda565b9150509295509295909350565b600060208284031215620011aa57620011a962001778565b5b6000620011ba848285016200100d565b91505092915050565b620011ce8162001542565b82525050565b620011df8162001556565b82525050565b6000620011f282620014b8565b620011fe8185620014c3565b935062001210818560208601620015b8565b6200121b816200177d565b840191505092915050565b600062001235600f83620014d4565b915062001242826200178e565b602082019050919050565b60006200125c602483620014d4565b91506200126982620017b7565b604082019050919050565b600062001283601f83620014d4565b9150620012908262001806565b602082019050919050565b6000620012aa602083620014d4565b9150620012b7826200182f565b602082019050919050565b620012cd81620015ae565b82525050565b6000608082019050620012ea6000830187620011c3565b620012f96020830186620011c3565b620013086040830185620012c2565b81810360608301526200131c8184620011e5565b905095945050505050565b60006020820190506200133e6000830184620011d4565b92915050565b600060208201905081810360008301526200135f8162001226565b9050919050565b6000602082019050818103600083015262001381816200124d565b9050919050565b60006020820190508181036000830152620013a38162001274565b9050919050565b60006020820190508181036000830152620013c5816200129b565b9050919050565b6000620013d8620013eb565b9050620013e6828262001624565b919050565b6000604051905090565b600067ffffffffffffffff82111562001413576200141262001735565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562001442576200144162001735565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562001471576200147062001735565b5b602082029050602081019050919050565b600067ffffffffffffffff821115620014a0576200149f62001735565b5b620014ab826200177d565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620014f282620015ae565b9150620014ff83620015ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620015375762001536620016a8565b5b828201905092915050565b60006200154f826200158e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620015d8578082015181840152602081019050620015bb565b83811115620015e8576000848401525b50505050565b600060028204905060018216806200160757607f821691505b602082108114156200161e576200161d620016d7565b5b50919050565b6200162f826200177d565b810181811067ffffffffffffffff8211171562001651576200165062001735565b5b80604052505050565b60006200166782620015ae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200169d576200169c620016a8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b7f4164647265737320616c726561647920696e20646973747269627574696f6e2060008201527f6c69737400000000000000000000000000000000000000000000000000000000602082015250565b7f5368617265206d7573742062652067726561746572207468616e207a65726f00600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620018638162001542565b81146200186f57600080fd5b50565b6200187d8162001562565b81146200188957600080fd5b50565b6200189781620015ae565b8114620018a357600080fd5b50565b615af480620018b66000396000f3fe6080604052600436106102b25760003560e01c806370a0823111610175578063a03f0164116100dc578063c87b56dd11610095578063e4fc6b6d1161006f578063e4fc6b6d14610ad0578063e985e9c514610ae7578063ea37fa1914610b24578063f2fde38b14610b61576102b9565b8063c87b56dd14610a2b578063d9d8e58b14610a68578063dcfb1b8014610aa5576102b9565b8063a03f016414610933578063a22cb4651461095c578063a59aaa8f14610985578063a5a865dc146109ae578063b88d4fde146109d9578063c1b1003214610a02576102b9565b806391b7f5ed1161012e57806391b7f5ed1461083757806395d89b411461086057806396c0a39d1461088b57806398d5fdca146108b45780639905af12146108df5780639d7b8e6814610908576102b9565b806370a0823114610734578063715018a61461077157806386ab5e371461078857806387371c70146107c55780638b425847146107f05780638da5cb5b1461080c576102b9565b80632db11544116102195780634f6ccce7116101d25780634f6ccce714610600578063573cea961461063d5780635969c91d146106685780635aca1bb6146106915780635fd4b08a146106ba5780636352211e146106f7576102b9565b80632db11544146104d95780632f745c59146104f557806335aaacb51461053257806342842e0e1461055d57806349777b55146105865780634b3ab9c5146105c3576102b9565b8063157c6a7b1161026b578063157c6a7b146103df57806318160ddd1461040a5780631a78644a146104355780631be25d641461045e578063236376171461048757806323b872dd146104b0576102b9565b806301ffc9a7146102bb57806306fdde03146102f8578063081812fc146103235780630887768314610360578063095ea7b31461038b5780630e3d08c6146103b4576102b9565b366102b957005b005b3480156102c757600080fd5b506102e260048036038101906102dd9190614980565b610b8a565b6040516102ef9190614e95565b60405180910390f35b34801561030457600080fd5b5061030d610cd4565b60405161031a9190614eb0565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190614a36565b610d66565b6040516103579190614e0c565b60405180910390f35b34801561036c57600080fd5b50610375610de2565b6040516103829190614e95565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad91906148b7565b610df9565b005b3480156103c057600080fd5b506103c9610f04565b6040516103d691906150d2565b60405180910390f35b3480156103eb57600080fd5b506103f4610f0e565b60405161040191906150d2565b60405180910390f35b34801561041657600080fd5b5061041f610f18565b60405161042c91906150d2565b60405180910390f35b34801561044157600080fd5b5061045c600480360381019061045791906148f7565b610f6d565b005b34801561046a57600080fd5b50610485600480360381019061048091906148b7565b61107e565b005b34801561049357600080fd5b506104ae60048036038101906104a99190614a36565b6111dd565b005b3480156104bc57600080fd5b506104d760048036038101906104d291906146d6565b611263565b005b6104f360048036038101906104ee9190614a36565b611273565b005b34801561050157600080fd5b5061051c600480360381019061051791906148b7565b61146b565b60405161052991906150d2565b60405180910390f35b34801561053e57600080fd5b50610547611672565b60405161055491906150d2565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f91906146d6565b61167c565b005b34801561059257600080fd5b506105ad60048036038101906105a89190614669565b61169c565b6040516105ba91906150d2565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e59190614669565b6116e5565b6040516105f791906150d2565b60405180910390f35b34801561060c57600080fd5b5061062760048036038101906106229190614a36565b611731565b60405161063491906150d2565b60405180910390f35b34801561064957600080fd5b506106526118a2565b60405161065f9190614e73565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a91906147ec565b611930565b005b34801561069d57600080fd5b506106b860048036038101906106b39190614953565b611a54565b005b3480156106c657600080fd5b506106e160048036038101906106dc9190614669565b611b7a565b6040516106ee9190614eb0565b60405180910390f35b34801561070357600080fd5b5061071e60048036038101906107199190614a36565b611c4e565b60405161072b9190614e0c565b60405180910390f35b34801561074057600080fd5b5061075b60048036038101906107569190614669565b611c64565b60405161076891906150d2565b60405180910390f35b34801561077d57600080fd5b50610786611d34565b005b34801561079457600080fd5b506107af60048036038101906107aa9190614669565b611dbc565b6040516107bc9190614e95565b60405180910390f35b3480156107d157600080fd5b506107da611e12565b6040516107e791906150d2565b60405180910390f35b61080a60048036038101906108059190614a36565b611e1c565b005b34801561081857600080fd5b506108216120a7565b60405161082e9190614e0c565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190614a36565b6120d1565b005b34801561086c57600080fd5b50610875612157565b6040516108829190614eb0565b60405180910390f35b34801561089757600080fd5b506108b260048036038101906108ad91906149da565b6121e9565b005b3480156108c057600080fd5b506108c96123ff565b6040516108d691906150d2565b60405180910390f35b3480156108eb57600080fd5b5061090660048036038101906109019190614953565b612409565b005b34801561091457600080fd5b5061091d612566565b60405161092a91906150d2565b60405180910390f35b34801561093f57600080fd5b5061095a60048036038101906109559190614669565b61257d565b005b34801561096857600080fd5b50610983600480360381019061097e91906147ac565b612830565b005b34801561099157600080fd5b506109ac60048036038101906109a79190614a36565b6129a8565b005b3480156109ba57600080fd5b506109c3612a2e565b6040516109d09190614e95565b60405180910390f35b3480156109e557600080fd5b50610a0060048036038101906109fb9190614729565b612a45565b005b348015610a0e57600080fd5b50610a296004803603810190610a249190614848565b612a98565b005b348015610a3757600080fd5b50610a526004803603810190610a4d9190614a36565b612d41565b604051610a5f9190614eb0565b60405180910390f35b348015610a7457600080fd5b50610a8f6004803603810190610a8a9190614669565b612de0565b604051610a9c9190614e95565b60405180910390f35b348015610ab157600080fd5b50610aba612df4565b604051610ac791906150d2565b60405180910390f35b348015610adc57600080fd5b50610ae5612dfe565b005b348015610af357600080fd5b50610b0e6004803603810190610b099190614696565b612fda565b604051610b1b9190614e95565b60405180910390f35b348015610b3057600080fd5b50610b4b6004803603810190610b469190614669565b61306e565b604051610b5891906150d2565b60405180910390f35b348015610b6d57600080fd5b50610b886004803603810190610b839190614669565b6130b7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c5557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610cbd57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ccd5750610ccc826131c2565b5b9050919050565b606060018054610ce3906153e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0f906153e7565b8015610d5c5780601f10610d3157610100808354040283529160200191610d5c565b820191906000526020600020905b815481529060010190602001808311610d3f57829003601f168201915b5050505050905090565b6000610d718261322c565b610da7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000601560009054906101000a900460ff16905090565b6000610e0482611c4e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e6c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e8b613294565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ebd5750610ebb81610eb6613294565b612fda565b155b15610ef4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610eff83838361329c565b505050565b6000601454905090565b6000601354905090565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610f75613294565b73ffffffffffffffffffffffffffffffffffffffff16610f936120a7565b73ffffffffffffffffffffffffffffffffffffffff1614610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe090615012565b60405180910390fd5b60005b82518110156110795781600c600085848151811061100d5761100c615580565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806110719061544a565b915050610fec565b505050565b611086613294565b73ffffffffffffffffffffffffffffffffffffffff166110a46120a7565b73ffffffffffffffffffffffffffffffffffffffff16146110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190615012565b60405180910390fd5b6000811161113d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113490615052565b60405180910390fd5b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160000154116111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be90614ff2565b60405180910390fd5b8181600001819055506111d861334e565b505050565b6111e5613294565b73ffffffffffffffffffffffffffffffffffffffff166112036120a7565b73ffffffffffffffffffffffffffffffffffffffff1614611259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125090615012565b60405180910390fd5b8060148190555050565b61126e83838361340f565b505050565b601560019054906101000a900460ff166112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990614ed2565b60405180910390fd5b806012546112d091906152a3565b3414611311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130890615032565b60405180910390fd5b600081600b54611321919061521c565b9050601154811115611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f90614f92565b60405180910390fd5b60008260096000611377613294565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113bc919061521c565b9050601454811115611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90614fd2565b60405180910390fd5b81600b819055508060096000611417613294565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611466611460613294565b8461392c565b505050565b600061147683611c64565b82106114ae576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015611666576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151156115c55750611659565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461160557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611657578684141561164e57819550505050505061166c565b83806001019450505b505b80806001019150506114e8565b50600080fd5b92915050565b6000600f54905090565b61169783838360405180602001604052806000815250612a45565b505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050919050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b8281101561186a576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161185c5785831415611853578194505050505061189d565b82806001019350505b508080600101915050611769565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6060600e80548060200260200160405190810160405280929190818152602001828054801561192657602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116118dc575b5050505050905090565b611938613294565b73ffffffffffffffffffffffffffffffffffffffff166119566120a7565b73ffffffffffffffffffffffffffffffffffffffff16146119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a390615012565b60405180910390fd5b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000816000015411611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d90614ff2565b60405180910390fd5b81816002019080519060200190611a4e92919061437b565b50505050565b611a5c613294565b73ffffffffffffffffffffffffffffffffffffffff16611a7a6120a7565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790615012565b60405180910390fd5b801515601560019054906101000a900460ff1615151415611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d906150b2565b60405180910390fd5b80601560016101000a81548160ff0219169083151502179055507ff09b37ecbfe134bf1f6c2f38082fa76cd990d1ffddfb88add51b7c8348c79c4a81604051611b6f9190614e95565b60405180910390a150565b6060600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018054611bc9906153e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611bf5906153e7565b8015611c425780601f10611c1757610100808354040283529160200191611c42565b820191906000526020600020905b815481529060010190602001808311611c2557829003601f168201915b50505050509050919050565b6000611c598261394a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ccc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611d3c613294565b73ffffffffffffffffffffffffffffffffffffffff16611d5a6120a7565b73ffffffffffffffffffffffffffffffffffffffff1614611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790615012565b60405180910390fd5b611dba6000613bf2565b565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600b54905090565b601560009054906101000a900460ff16611e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6290615092565b60405180910390fd5b600c6000611e77613294565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590615072565b60405180910390fd5b80601254611f0c91906152a3565b3414611f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4490615032565b60405180910390fd5b600081600a54611f5d919061521c565b9050601054811115611fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9b90614f12565b60405180910390fd5b60008260086000611fb3613294565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ff8919061521c565b905060135481111561203f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203690614fd2565b60405180910390fd5b81600a819055508060086000612053613294565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506120a261209c613294565b8461392c565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6120d9613294565b73ffffffffffffffffffffffffffffffffffffffff166120f76120a7565b73ffffffffffffffffffffffffffffffffffffffff161461214d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214490615012565b60405180910390fd5b8060128190555050565b606060028054612166906153e7565b80601f0160208091040260200160405190810160405280929190818152602001828054612192906153e7565b80156121df5780601f106121b4576101008083540402835291602001916121df565b820191906000526020600020905b8154815290600101906020018083116121c257829003601f168201915b5050505050905090565b6121f1613294565b73ffffffffffffffffffffffffffffffffffffffff1661220f6120a7565b73ffffffffffffffffffffffffffffffffffffffff1614612265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225c90615012565b60405180910390fd5b600061226f614401565b60005b600e805490508110156123f857600e818154811061229357612292615580565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169250600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806060016040529081600082015481526020016001820154815260200160028201805461232e906153e7565b80601f016020809104026020016040519081016040528092919081815260200182805461235a906153e7565b80156123a75780601f1061237c576101008083540402835291602001916123a7565b820191906000526020600020905b81548152906001019060200180831161238a57829003601f168201915b5050505050815250509150848051906020012082604001518051906020012014156123e5576123d58361257d565b6123e484868460000151612a98565b5b80806123f09061544a565b915050612272565b5050505050565b6000601254905090565b612411613294565b73ffffffffffffffffffffffffffffffffffffffff1661242f6120a7565b73ffffffffffffffffffffffffffffffffffffffff1614612485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247c90615012565b60405180910390fd5b801515601560009054906101000a900460ff16151514156124db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d290614fb2565b60405180910390fd5b80601560006101000a81548160ff0219169083151502179055508061252c57600a5460105461250a91906152fd565b6011600082825461251b919061521c565b92505081905550600a546010819055505b7f8897ffc5553ed983436acdd139ab0c9623582fd2041c26be4f61fad17bfa82d58160405161255b9190614e95565b60405180910390a150565b6000600b54600a54612578919061521c565b905090565b612585613294565b73ffffffffffffffffffffffffffffffffffffffff166125a36120a7565b73ffffffffffffffffffffffffffffffffffffffff16146125f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f090615012565b60405180910390fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000816000015411612683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267a90614ff2565b60405180910390fd5b600081600001819055506000600e6001600e805490506126a391906152fd565b815481106126b4576126b3615580565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160010154600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555080600e83600101548154811061274557612744615580565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600e80548061279f5761279e615551565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590558273ffffffffffffffffffffffffffffffffffffffff167f9364ef31fb6376e7be09a1115bcb9d1e956818fcf9a28376530e7957dfe42446600060405161281b9190614e95565b60405180910390a261282b61334e565b505050565b612838613294565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561289d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660006128aa613294565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612957613294565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161299c9190614e95565b60405180910390a35050565b6129b0613294565b73ffffffffffffffffffffffffffffffffffffffff166129ce6120a7565b73ffffffffffffffffffffffffffffffffffffffff1614612a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1b90615012565b60405180910390fd5b8060138190555050565b6000601560019054906101000a900460ff16905090565b612a5084848461340f565b612a5c84848484613cb8565b612a92576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b612aa0613294565b73ffffffffffffffffffffffffffffffffffffffff16612abe6120a7565b73ffffffffffffffffffffffffffffffffffffffff1614612b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0b90615012565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7b90614ef2565b60405180910390fd5b60008111612bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbe90614f72565b60405180910390fd5b6000600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000816000015414612c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4890614f32565b60405180910390fd5b818160000181905550600e80549050816001018190555082816002019080519060200190612c8092919061437b565b50600e849080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff167f9364ef31fb6376e7be09a1115bcb9d1e956818fcf9a28376530e7957dfe424466001604051612d2b9190614e95565b60405180910390a2612d3b61334e565b50505050565b6060612d4c8261322c565b612d82576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612d8c613e46565b9050600081511415612dad5760405180602001604052806000815250612dd8565b80612db784613e66565b604051602001612dc8929190614de8565b6040516020818303038152906040525b915050919050565b600080612dec836116e5565b119050919050565b6000600a54905090565b612e06613294565b73ffffffffffffffffffffffffffffffffffffffff16612e246120a7565b73ffffffffffffffffffffffffffffffffffffffff1614612e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7190615012565b60405180910390fd5b6000600e805490501115612fd85760004790506000600f5482612e9d9190615272565b9050600080600090505b600e80549050811015612f9c57600e8181548110612ec857612ec7615580565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691508173ffffffffffffffffffffffffffffffffffffffff166108fc84600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154612f5d91906152a3565b9081150290604051600060405180830381858888f19350505050158015612f88573d6000803e3d6000fd5b508080612f949061544a565b915050612ea7565b507f646281a1f6e9956b914b633483bb33fe8d21acc7c1061352910df7243113cc6b83604051612fcc91906150d2565b60405180910390a15050505b565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6130bf613294565b73ffffffffffffffffffffffffffffffffffffffff166130dd6120a7565b73ffffffffffffffffffffffffffffffffffffffff1614613133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312a90615012565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156131a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319a90614f52565b60405180910390fd5b6131ac81613bf2565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168210801561328d575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080600090505b600e8054905081101561340457600d6000600e838154811061337b5761337a615580565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154826133ef919061521c565b915080806133fc9061544a565b915050613356565b5080600f8190555050565b600061341a8261394a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16613441613294565b73ffffffffffffffffffffffffffffffffffffffff1614806134745750613473826000015161346e613294565b612fda565b5b806134b95750613482613294565b73ffffffffffffffffffffffffffffffffffffffff166134a184610d66565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806134f2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461355b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156135c2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135cf8585856001613fc7565b6135df600084846000015161329c565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156138bc5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156138bb5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139258585856001613fcd565b5050505050565b613946828260405180602001604052806000815250613fd3565b5050565b613952614422565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015613bbb576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151613bb957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613a9d578092505050613bed565b5b600115613bb857818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613bb3578092505050613bed565b613a9e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000613cd98473ffffffffffffffffffffffffffffffffffffffff166131af565b15613e39578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613d02613294565b8786866040518563ffffffff1660e01b8152600401613d249493929190614e27565b602060405180830381600087803b158015613d3e57600080fd5b505af1925050508015613d6f57506040513d601f19601f82011682018060405250810190613d6c91906149ad565b60015b613de9573d8060008114613d9f576040519150601f19603f3d011682016040523d82523d6000602084013e613da4565b606091505b50600081511415613de1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613e3e565b600190505b949350505050565b6060604051806060016040528060288152602001615a9760289139905090565b60606000821415613eae576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613fc2565b600082905060005b60008214613ee0578080613ec99061544a565b915050600a82613ed99190615272565b9150613eb6565b60008167ffffffffffffffff811115613efc57613efb6155af565b5b6040519080825280601f01601f191660200182016040528015613f2e5781602001600182028036833780820191505090505b5090505b60008514613fbb57600182613f4791906152fd565b9150600a85613f569190615493565b6030613f62919061521c565b60f81b818381518110613f7857613f77615580565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613fb49190615272565b9450613f32565b8093505050505b919050565b50505050565b50505050565b613fe08383836001613fe5565b505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415614080576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156140bb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6140c86000868387613fc7565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561432d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156142e157506142df6000888488613cb8565b155b15614318576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050614266565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506143746000868387613fcd565b5050505050565b828054614387906153e7565b90600052602060002090601f0160209004810192826143a957600085556143f0565b82601f106143c257805160ff19168380011785556143f0565b828001600101855582156143f0579182015b828111156143ef5782518255916020019190600101906143d4565b5b5090506143fd9190614465565b5090565b60405180606001604052806000815260200160008152602001606081525090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561447e576000816000905550600101614466565b5090565b600061449561449084615112565b6150ed565b905080838252602082019050828560208602820111156144b8576144b76155e3565b5b60005b858110156144e857816144ce8882614576565b8452602084019350602083019250506001810190506144bb565b5050509392505050565b60006145056145008461513e565b6150ed565b905082815260208101848484011115614521576145206155e8565b5b61452c8482856153a5565b509392505050565b60006145476145428461516f565b6150ed565b905082815260208101848484011115614563576145626155e8565b5b61456e8482856153a5565b509392505050565b60008135905061458581615a3a565b92915050565b600082601f8301126145a05761459f6155de565b5b81356145b0848260208601614482565b91505092915050565b6000813590506145c881615a51565b92915050565b6000813590506145dd81615a68565b92915050565b6000815190506145f281615a68565b92915050565b600082601f83011261460d5761460c6155de565b5b813561461d8482602086016144f2565b91505092915050565b600082601f83011261463b5761463a6155de565b5b813561464b848260208601614534565b91505092915050565b60008135905061466381615a7f565b92915050565b60006020828403121561467f5761467e6155f2565b5b600061468d84828501614576565b91505092915050565b600080604083850312156146ad576146ac6155f2565b5b60006146bb85828601614576565b92505060206146cc85828601614576565b9150509250929050565b6000806000606084860312156146ef576146ee6155f2565b5b60006146fd86828701614576565b935050602061470e86828701614576565b925050604061471f86828701614654565b9150509250925092565b60008060008060808587031215614743576147426155f2565b5b600061475187828801614576565b945050602061476287828801614576565b935050604061477387828801614654565b925050606085013567ffffffffffffffff811115614794576147936155ed565b5b6147a0878288016145f8565b91505092959194509250565b600080604083850312156147c3576147c26155f2565b5b60006147d185828601614576565b92505060206147e2858286016145b9565b9150509250929050565b60008060408385031215614803576148026155f2565b5b600061481185828601614576565b925050602083013567ffffffffffffffff811115614832576148316155ed565b5b61483e85828601614626565b9150509250929050565b600080600060608486031215614861576148606155f2565b5b600061486f86828701614576565b935050602084013567ffffffffffffffff8111156148905761488f6155ed565b5b61489c86828701614626565b92505060406148ad86828701614654565b9150509250925092565b600080604083850312156148ce576148cd6155f2565b5b60006148dc85828601614576565b92505060206148ed85828601614654565b9150509250929050565b6000806040838503121561490e5761490d6155f2565b5b600083013567ffffffffffffffff81111561492c5761492b6155ed565b5b6149388582860161458b565b9250506020614949858286016145b9565b9150509250929050565b600060208284031215614969576149686155f2565b5b6000614977848285016145b9565b91505092915050565b600060208284031215614996576149956155f2565b5b60006149a4848285016145ce565b91505092915050565b6000602082840312156149c3576149c26155f2565b5b60006149d1848285016145e3565b91505092915050565b600080604083850312156149f1576149f06155f2565b5b600083013567ffffffffffffffff811115614a0f57614a0e6155ed565b5b614a1b85828601614626565b9250506020614a2c85828601614576565b9150509250929050565b600060208284031215614a4c57614a4b6155f2565b5b6000614a5a84828501614654565b91505092915050565b6000614a6f8383614a7b565b60208301905092915050565b614a8481615331565b82525050565b614a9381615331565b82525050565b6000614aa4826151b0565b614aae81856151de565b9350614ab9836151a0565b8060005b83811015614aea578151614ad18882614a63565b9750614adc836151d1565b925050600181019050614abd565b5085935050505092915050565b614b0081615343565b82525050565b6000614b11826151bb565b614b1b81856151ef565b9350614b2b8185602086016153b4565b614b34816155f7565b840191505092915050565b6000614b4a826151c6565b614b548185615200565b9350614b648185602086016153b4565b614b6d816155f7565b840191505092915050565b6000614b83826151c6565b614b8d8185615211565b9350614b9d8185602086016153b4565b80840191505092915050565b6000614bb6601683615200565b9150614bc182615608565b602082019050919050565b6000614bd9600f83615200565b9150614be482615631565b602082019050919050565b6000614bfc604b83615200565b9150614c078261565a565b606082019050919050565b6000614c1f602483615200565b9150614c2a826156cf565b604082019050919050565b6000614c42602683615200565b9150614c4d8261571e565b604082019050919050565b6000614c65601f83615200565b9150614c708261576d565b602082019050919050565b6000614c88604a83615200565b9150614c9382615796565b606082019050919050565b6000614cab602283615200565b9150614cb68261580b565b604082019050919050565b6000614cce601683615200565b9150614cd98261585a565b602082019050919050565b6000614cf1602083615200565b9150614cfc82615883565b602082019050919050565b6000614d14602083615200565b9150614d1f826158ac565b602082019050919050565b6000614d37603183615200565b9150614d42826158d5565b604082019050919050565b6000614d5a602683615200565b9150614d6582615924565b604082019050919050565b6000614d7d603283615200565b9150614d8882615973565b604082019050919050565b6000614da0601783615200565b9150614dab826159c2565b602082019050919050565b6000614dc3602183615200565b9150614dce826159eb565b604082019050919050565b614de28161539b565b82525050565b6000614df48285614b78565b9150614e008284614b78565b91508190509392505050565b6000602082019050614e216000830184614a8a565b92915050565b6000608082019050614e3c6000830187614a8a565b614e496020830186614a8a565b614e566040830185614dd9565b8181036060830152614e688184614b06565b905095945050505050565b60006020820190508181036000830152614e8d8184614a99565b905092915050565b6000602082019050614eaa6000830184614af7565b92915050565b60006020820190508181036000830152614eca8184614b3f565b905092915050565b60006020820190508181036000830152614eeb81614ba9565b9050919050565b60006020820190508181036000830152614f0b81614bcc565b9050919050565b60006020820190508181036000830152614f2b81614bef565b9050919050565b60006020820190508181036000830152614f4b81614c12565b9050919050565b60006020820190508181036000830152614f6b81614c35565b9050919050565b60006020820190508181036000830152614f8b81614c58565b9050919050565b60006020820190508181036000830152614fab81614c7b565b9050919050565b60006020820190508181036000830152614fcb81614c9e565b9050919050565b60006020820190508181036000830152614feb81614cc1565b9050919050565b6000602082019050818103600083015261500b81614ce4565b9050919050565b6000602082019050818103600083015261502b81614d07565b9050919050565b6000602082019050818103600083015261504b81614d2a565b9050919050565b6000602082019050818103600083015261506b81614d4d565b9050919050565b6000602082019050818103600083015261508b81614d70565b9050919050565b600060208201905081810360008301526150ab81614d93565b9050919050565b600060208201905081810360008301526150cb81614db6565b9050919050565b60006020820190506150e76000830184614dd9565b92915050565b60006150f7615108565b90506151038282615419565b919050565b6000604051905090565b600067ffffffffffffffff82111561512d5761512c6155af565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615159576151586155af565b5b615162826155f7565b9050602081019050919050565b600067ffffffffffffffff82111561518a576151896155af565b5b615193826155f7565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006152278261539b565b91506152328361539b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615267576152666154c4565b5b828201905092915050565b600061527d8261539b565b91506152888361539b565b925082615298576152976154f3565b5b828204905092915050565b60006152ae8261539b565b91506152b98361539b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156152f2576152f16154c4565b5b828202905092915050565b60006153088261539b565b91506153138361539b565b925082821015615326576153256154c4565b5b828203905092915050565b600061533c8261537b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156153d25780820151818401526020810190506153b7565b838111156153e1576000848401525b50505050565b600060028204905060018216806153ff57607f821691505b6020821081141561541357615412615522565b5b50919050565b615422826155f7565b810181811067ffffffffffffffff82111715615441576154406155af565b5b80604052505050565b60006154558261539b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615488576154876154c4565b5b600182019050919050565b600061549e8261539b565b91506154a98361539b565b9250826154b9576154b86154f3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206f6e676f696e67207075626c69632073616c6500000000000000000000600082015250565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b7f5472616e73616374696f6e207175616e7469747920657863656564732074686560008201527f206e756d626572206f6620617661696c61626c6520746f6b656e7320696e207060208201527f72696d6172792073616c65000000000000000000000000000000000000000000604082015250565b7f4164647265737320616c726561647920696e20646973747269627574696f6e2060008201527f6c69737400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5368617265206d7573742062652067726561746572207468616e207a65726f00600082015250565b7f5472616e73616374696f6e207175616e7469747920657863656564732074686560008201527f206e756d626572206f6620617661696c61626c6520746f6b656e7320696e207060208201527f75626c69632073616c6500000000000000000000000000000000000000000000604082015250565b7f5072696d6172792073616c6520616c726561647920696e20746869732073746160008201527f7465000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e7420616c6c6f77616e636500000000000000000000600082015250565b7f41646472657373206e6f7420696e20646973747269627574696f6e206c697374600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5061796d656e7420616d6f756e74206e6f7420657175616c20746f207468652060008201527f7072696365206f6620746f6b656e287329000000000000000000000000000000602082015250565b7f546f2073657420736861726520746f207a65726f2c207573652072656d6f766560008201527f4469737428290000000000000000000000000000000000000000000000000000602082015250565b7f41646472657373206e6f7420616c6c6f77656420746f2070617274696369706160008201527f746520696e207072696d6172792073616c650000000000000000000000000000602082015250565b7f4e6f206f6e676f696e67207072696d6172792073616c65000000000000000000600082015250565b7f5075626c69632073616c6520616c726561647920696e2074686973207374617460008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b615a4381615331565b8114615a4e57600080fd5b50565b615a5a81615343565b8114615a6557600080fd5b50565b615a718161534f565b8114615a7c57600080fd5b50565b615a888161539b565b8114615a9357600080fd5b5056fe68747470733a2f2f6d7572646572686561646465617468636c75622e636f6d2f6170692f6e66742fa2646970667358221220188300d82a81f57ca55c9c52e0968e93591775e1abd43e1b14859d857b40dd4064736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000fcee57c37128ca5a3141296a74130e55975aa2f10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000054f50454e33000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000002000000000000000000000000e4c1818b7172e37a2da8ce8db16cfa2f17304967000000000000000000000000e8083be6691974869b14f7ba41c9ed8959fbbe04000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000210000000000000000000000000000000000000000000000000000000000000021
Deployed Bytecode
0x6080604052600436106102b25760003560e01c806370a0823111610175578063a03f0164116100dc578063c87b56dd11610095578063e4fc6b6d1161006f578063e4fc6b6d14610ad0578063e985e9c514610ae7578063ea37fa1914610b24578063f2fde38b14610b61576102b9565b8063c87b56dd14610a2b578063d9d8e58b14610a68578063dcfb1b8014610aa5576102b9565b8063a03f016414610933578063a22cb4651461095c578063a59aaa8f14610985578063a5a865dc146109ae578063b88d4fde146109d9578063c1b1003214610a02576102b9565b806391b7f5ed1161012e57806391b7f5ed1461083757806395d89b411461086057806396c0a39d1461088b57806398d5fdca146108b45780639905af12146108df5780639d7b8e6814610908576102b9565b806370a0823114610734578063715018a61461077157806386ab5e371461078857806387371c70146107c55780638b425847146107f05780638da5cb5b1461080c576102b9565b80632db11544116102195780634f6ccce7116101d25780634f6ccce714610600578063573cea961461063d5780635969c91d146106685780635aca1bb6146106915780635fd4b08a146106ba5780636352211e146106f7576102b9565b80632db11544146104d95780632f745c59146104f557806335aaacb51461053257806342842e0e1461055d57806349777b55146105865780634b3ab9c5146105c3576102b9565b8063157c6a7b1161026b578063157c6a7b146103df57806318160ddd1461040a5780631a78644a146104355780631be25d641461045e578063236376171461048757806323b872dd146104b0576102b9565b806301ffc9a7146102bb57806306fdde03146102f8578063081812fc146103235780630887768314610360578063095ea7b31461038b5780630e3d08c6146103b4576102b9565b366102b957005b005b3480156102c757600080fd5b506102e260048036038101906102dd9190614980565b610b8a565b6040516102ef9190614e95565b60405180910390f35b34801561030457600080fd5b5061030d610cd4565b60405161031a9190614eb0565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190614a36565b610d66565b6040516103579190614e0c565b60405180910390f35b34801561036c57600080fd5b50610375610de2565b6040516103829190614e95565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad91906148b7565b610df9565b005b3480156103c057600080fd5b506103c9610f04565b6040516103d691906150d2565b60405180910390f35b3480156103eb57600080fd5b506103f4610f0e565b60405161040191906150d2565b60405180910390f35b34801561041657600080fd5b5061041f610f18565b60405161042c91906150d2565b60405180910390f35b34801561044157600080fd5b5061045c600480360381019061045791906148f7565b610f6d565b005b34801561046a57600080fd5b50610485600480360381019061048091906148b7565b61107e565b005b34801561049357600080fd5b506104ae60048036038101906104a99190614a36565b6111dd565b005b3480156104bc57600080fd5b506104d760048036038101906104d291906146d6565b611263565b005b6104f360048036038101906104ee9190614a36565b611273565b005b34801561050157600080fd5b5061051c600480360381019061051791906148b7565b61146b565b60405161052991906150d2565b60405180910390f35b34801561053e57600080fd5b50610547611672565b60405161055491906150d2565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f91906146d6565b61167c565b005b34801561059257600080fd5b506105ad60048036038101906105a89190614669565b61169c565b6040516105ba91906150d2565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e59190614669565b6116e5565b6040516105f791906150d2565b60405180910390f35b34801561060c57600080fd5b5061062760048036038101906106229190614a36565b611731565b60405161063491906150d2565b60405180910390f35b34801561064957600080fd5b506106526118a2565b60405161065f9190614e73565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a91906147ec565b611930565b005b34801561069d57600080fd5b506106b860048036038101906106b39190614953565b611a54565b005b3480156106c657600080fd5b506106e160048036038101906106dc9190614669565b611b7a565b6040516106ee9190614eb0565b60405180910390f35b34801561070357600080fd5b5061071e60048036038101906107199190614a36565b611c4e565b60405161072b9190614e0c565b60405180910390f35b34801561074057600080fd5b5061075b60048036038101906107569190614669565b611c64565b60405161076891906150d2565b60405180910390f35b34801561077d57600080fd5b50610786611d34565b005b34801561079457600080fd5b506107af60048036038101906107aa9190614669565b611dbc565b6040516107bc9190614e95565b60405180910390f35b3480156107d157600080fd5b506107da611e12565b6040516107e791906150d2565b60405180910390f35b61080a60048036038101906108059190614a36565b611e1c565b005b34801561081857600080fd5b506108216120a7565b60405161082e9190614e0c565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190614a36565b6120d1565b005b34801561086c57600080fd5b50610875612157565b6040516108829190614eb0565b60405180910390f35b34801561089757600080fd5b506108b260048036038101906108ad91906149da565b6121e9565b005b3480156108c057600080fd5b506108c96123ff565b6040516108d691906150d2565b60405180910390f35b3480156108eb57600080fd5b5061090660048036038101906109019190614953565b612409565b005b34801561091457600080fd5b5061091d612566565b60405161092a91906150d2565b60405180910390f35b34801561093f57600080fd5b5061095a60048036038101906109559190614669565b61257d565b005b34801561096857600080fd5b50610983600480360381019061097e91906147ac565b612830565b005b34801561099157600080fd5b506109ac60048036038101906109a79190614a36565b6129a8565b005b3480156109ba57600080fd5b506109c3612a2e565b6040516109d09190614e95565b60405180910390f35b3480156109e557600080fd5b50610a0060048036038101906109fb9190614729565b612a45565b005b348015610a0e57600080fd5b50610a296004803603810190610a249190614848565b612a98565b005b348015610a3757600080fd5b50610a526004803603810190610a4d9190614a36565b612d41565b604051610a5f9190614eb0565b60405180910390f35b348015610a7457600080fd5b50610a8f6004803603810190610a8a9190614669565b612de0565b604051610a9c9190614e95565b60405180910390f35b348015610ab157600080fd5b50610aba612df4565b604051610ac791906150d2565b60405180910390f35b348015610adc57600080fd5b50610ae5612dfe565b005b348015610af357600080fd5b50610b0e6004803603810190610b099190614696565b612fda565b604051610b1b9190614e95565b60405180910390f35b348015610b3057600080fd5b50610b4b6004803603810190610b469190614669565b61306e565b604051610b5891906150d2565b60405180910390f35b348015610b6d57600080fd5b50610b886004803603810190610b839190614669565b6130b7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c5557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610cbd57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ccd5750610ccc826131c2565b5b9050919050565b606060018054610ce3906153e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0f906153e7565b8015610d5c5780601f10610d3157610100808354040283529160200191610d5c565b820191906000526020600020905b815481529060010190602001808311610d3f57829003601f168201915b5050505050905090565b6000610d718261322c565b610da7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000601560009054906101000a900460ff16905090565b6000610e0482611c4e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e6c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e8b613294565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ebd5750610ebb81610eb6613294565b612fda565b155b15610ef4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610eff83838361329c565b505050565b6000601454905090565b6000601354905090565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610f75613294565b73ffffffffffffffffffffffffffffffffffffffff16610f936120a7565b73ffffffffffffffffffffffffffffffffffffffff1614610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe090615012565b60405180910390fd5b60005b82518110156110795781600c600085848151811061100d5761100c615580565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806110719061544a565b915050610fec565b505050565b611086613294565b73ffffffffffffffffffffffffffffffffffffffff166110a46120a7565b73ffffffffffffffffffffffffffffffffffffffff16146110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190615012565b60405180910390fd5b6000811161113d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113490615052565b60405180910390fd5b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160000154116111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be90614ff2565b60405180910390fd5b8181600001819055506111d861334e565b505050565b6111e5613294565b73ffffffffffffffffffffffffffffffffffffffff166112036120a7565b73ffffffffffffffffffffffffffffffffffffffff1614611259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125090615012565b60405180910390fd5b8060148190555050565b61126e83838361340f565b505050565b601560019054906101000a900460ff166112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990614ed2565b60405180910390fd5b806012546112d091906152a3565b3414611311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130890615032565b60405180910390fd5b600081600b54611321919061521c565b9050601154811115611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f90614f92565b60405180910390fd5b60008260096000611377613294565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113bc919061521c565b9050601454811115611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90614fd2565b60405180910390fd5b81600b819055508060096000611417613294565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611466611460613294565b8461392c565b505050565b600061147683611c64565b82106114ae576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015611666576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151156115c55750611659565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461160557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611657578684141561164e57819550505050505061166c565b83806001019450505b505b80806001019150506114e8565b50600080fd5b92915050565b6000600f54905090565b61169783838360405180602001604052806000815250612a45565b505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050919050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b8281101561186a576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161185c5785831415611853578194505050505061189d565b82806001019350505b508080600101915050611769565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6060600e80548060200260200160405190810160405280929190818152602001828054801561192657602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116118dc575b5050505050905090565b611938613294565b73ffffffffffffffffffffffffffffffffffffffff166119566120a7565b73ffffffffffffffffffffffffffffffffffffffff16146119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a390615012565b60405180910390fd5b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000816000015411611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d90614ff2565b60405180910390fd5b81816002019080519060200190611a4e92919061437b565b50505050565b611a5c613294565b73ffffffffffffffffffffffffffffffffffffffff16611a7a6120a7565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790615012565b60405180910390fd5b801515601560019054906101000a900460ff1615151415611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d906150b2565b60405180910390fd5b80601560016101000a81548160ff0219169083151502179055507ff09b37ecbfe134bf1f6c2f38082fa76cd990d1ffddfb88add51b7c8348c79c4a81604051611b6f9190614e95565b60405180910390a150565b6060600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018054611bc9906153e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611bf5906153e7565b8015611c425780601f10611c1757610100808354040283529160200191611c42565b820191906000526020600020905b815481529060010190602001808311611c2557829003601f168201915b50505050509050919050565b6000611c598261394a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ccc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611d3c613294565b73ffffffffffffffffffffffffffffffffffffffff16611d5a6120a7565b73ffffffffffffffffffffffffffffffffffffffff1614611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790615012565b60405180910390fd5b611dba6000613bf2565b565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600b54905090565b601560009054906101000a900460ff16611e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6290615092565b60405180910390fd5b600c6000611e77613294565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590615072565b60405180910390fd5b80601254611f0c91906152a3565b3414611f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4490615032565b60405180910390fd5b600081600a54611f5d919061521c565b9050601054811115611fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9b90614f12565b60405180910390fd5b60008260086000611fb3613294565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ff8919061521c565b905060135481111561203f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203690614fd2565b60405180910390fd5b81600a819055508060086000612053613294565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506120a261209c613294565b8461392c565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6120d9613294565b73ffffffffffffffffffffffffffffffffffffffff166120f76120a7565b73ffffffffffffffffffffffffffffffffffffffff161461214d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214490615012565b60405180910390fd5b8060128190555050565b606060028054612166906153e7565b80601f0160208091040260200160405190810160405280929190818152602001828054612192906153e7565b80156121df5780601f106121b4576101008083540402835291602001916121df565b820191906000526020600020905b8154815290600101906020018083116121c257829003601f168201915b5050505050905090565b6121f1613294565b73ffffffffffffffffffffffffffffffffffffffff1661220f6120a7565b73ffffffffffffffffffffffffffffffffffffffff1614612265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225c90615012565b60405180910390fd5b600061226f614401565b60005b600e805490508110156123f857600e818154811061229357612292615580565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169250600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806060016040529081600082015481526020016001820154815260200160028201805461232e906153e7565b80601f016020809104026020016040519081016040528092919081815260200182805461235a906153e7565b80156123a75780601f1061237c576101008083540402835291602001916123a7565b820191906000526020600020905b81548152906001019060200180831161238a57829003601f168201915b5050505050815250509150848051906020012082604001518051906020012014156123e5576123d58361257d565b6123e484868460000151612a98565b5b80806123f09061544a565b915050612272565b5050505050565b6000601254905090565b612411613294565b73ffffffffffffffffffffffffffffffffffffffff1661242f6120a7565b73ffffffffffffffffffffffffffffffffffffffff1614612485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247c90615012565b60405180910390fd5b801515601560009054906101000a900460ff16151514156124db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d290614fb2565b60405180910390fd5b80601560006101000a81548160ff0219169083151502179055508061252c57600a5460105461250a91906152fd565b6011600082825461251b919061521c565b92505081905550600a546010819055505b7f8897ffc5553ed983436acdd139ab0c9623582fd2041c26be4f61fad17bfa82d58160405161255b9190614e95565b60405180910390a150565b6000600b54600a54612578919061521c565b905090565b612585613294565b73ffffffffffffffffffffffffffffffffffffffff166125a36120a7565b73ffffffffffffffffffffffffffffffffffffffff16146125f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f090615012565b60405180910390fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000816000015411612683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267a90614ff2565b60405180910390fd5b600081600001819055506000600e6001600e805490506126a391906152fd565b815481106126b4576126b3615580565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160010154600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555080600e83600101548154811061274557612744615580565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600e80548061279f5761279e615551565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590558273ffffffffffffffffffffffffffffffffffffffff167f9364ef31fb6376e7be09a1115bcb9d1e956818fcf9a28376530e7957dfe42446600060405161281b9190614e95565b60405180910390a261282b61334e565b505050565b612838613294565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561289d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660006128aa613294565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612957613294565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161299c9190614e95565b60405180910390a35050565b6129b0613294565b73ffffffffffffffffffffffffffffffffffffffff166129ce6120a7565b73ffffffffffffffffffffffffffffffffffffffff1614612a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1b90615012565b60405180910390fd5b8060138190555050565b6000601560019054906101000a900460ff16905090565b612a5084848461340f565b612a5c84848484613cb8565b612a92576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b612aa0613294565b73ffffffffffffffffffffffffffffffffffffffff16612abe6120a7565b73ffffffffffffffffffffffffffffffffffffffff1614612b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0b90615012565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7b90614ef2565b60405180910390fd5b60008111612bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbe90614f72565b60405180910390fd5b6000600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000816000015414612c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4890614f32565b60405180910390fd5b818160000181905550600e80549050816001018190555082816002019080519060200190612c8092919061437b565b50600e849080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff167f9364ef31fb6376e7be09a1115bcb9d1e956818fcf9a28376530e7957dfe424466001604051612d2b9190614e95565b60405180910390a2612d3b61334e565b50505050565b6060612d4c8261322c565b612d82576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612d8c613e46565b9050600081511415612dad5760405180602001604052806000815250612dd8565b80612db784613e66565b604051602001612dc8929190614de8565b6040516020818303038152906040525b915050919050565b600080612dec836116e5565b119050919050565b6000600a54905090565b612e06613294565b73ffffffffffffffffffffffffffffffffffffffff16612e246120a7565b73ffffffffffffffffffffffffffffffffffffffff1614612e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7190615012565b60405180910390fd5b6000600e805490501115612fd85760004790506000600f5482612e9d9190615272565b9050600080600090505b600e80549050811015612f9c57600e8181548110612ec857612ec7615580565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691508173ffffffffffffffffffffffffffffffffffffffff166108fc84600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154612f5d91906152a3565b9081150290604051600060405180830381858888f19350505050158015612f88573d6000803e3d6000fd5b508080612f949061544a565b915050612ea7565b507f646281a1f6e9956b914b633483bb33fe8d21acc7c1061352910df7243113cc6b83604051612fcc91906150d2565b60405180910390a15050505b565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6130bf613294565b73ffffffffffffffffffffffffffffffffffffffff166130dd6120a7565b73ffffffffffffffffffffffffffffffffffffffff1614613133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312a90615012565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156131a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319a90614f52565b60405180910390fd5b6131ac81613bf2565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168210801561328d575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080600090505b600e8054905081101561340457600d6000600e838154811061337b5761337a615580565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154826133ef919061521c565b915080806133fc9061544a565b915050613356565b5080600f8190555050565b600061341a8261394a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16613441613294565b73ffffffffffffffffffffffffffffffffffffffff1614806134745750613473826000015161346e613294565b612fda565b5b806134b95750613482613294565b73ffffffffffffffffffffffffffffffffffffffff166134a184610d66565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806134f2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461355b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156135c2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135cf8585856001613fc7565b6135df600084846000015161329c565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156138bc5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156138bb5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139258585856001613fcd565b5050505050565b613946828260405180602001604052806000815250613fd3565b5050565b613952614422565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015613bbb576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151613bb957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613a9d578092505050613bed565b5b600115613bb857818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613bb3578092505050613bed565b613a9e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000613cd98473ffffffffffffffffffffffffffffffffffffffff166131af565b15613e39578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613d02613294565b8786866040518563ffffffff1660e01b8152600401613d249493929190614e27565b602060405180830381600087803b158015613d3e57600080fd5b505af1925050508015613d6f57506040513d601f19601f82011682018060405250810190613d6c91906149ad565b60015b613de9573d8060008114613d9f576040519150601f19603f3d011682016040523d82523d6000602084013e613da4565b606091505b50600081511415613de1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613e3e565b600190505b949350505050565b6060604051806060016040528060288152602001615a9760289139905090565b60606000821415613eae576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613fc2565b600082905060005b60008214613ee0578080613ec99061544a565b915050600a82613ed99190615272565b9150613eb6565b60008167ffffffffffffffff811115613efc57613efb6155af565b5b6040519080825280601f01601f191660200182016040528015613f2e5781602001600182028036833780820191505090505b5090505b60008514613fbb57600182613f4791906152fd565b9150600a85613f569190615493565b6030613f62919061521c565b60f81b818381518110613f7857613f77615580565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613fb49190615272565b9450613f32565b8093505050505b919050565b50505050565b50505050565b613fe08383836001613fe5565b505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415614080576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156140bb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6140c86000868387613fc7565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561432d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156142e157506142df6000888488613cb8565b155b15614318576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050614266565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506143746000868387613fcd565b5050505050565b828054614387906153e7565b90600052602060002090601f0160209004810192826143a957600085556143f0565b82601f106143c257805160ff19168380011785556143f0565b828001600101855582156143f0579182015b828111156143ef5782518255916020019190600101906143d4565b5b5090506143fd9190614465565b5090565b60405180606001604052806000815260200160008152602001606081525090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561447e576000816000905550600101614466565b5090565b600061449561449084615112565b6150ed565b905080838252602082019050828560208602820111156144b8576144b76155e3565b5b60005b858110156144e857816144ce8882614576565b8452602084019350602083019250506001810190506144bb565b5050509392505050565b60006145056145008461513e565b6150ed565b905082815260208101848484011115614521576145206155e8565b5b61452c8482856153a5565b509392505050565b60006145476145428461516f565b6150ed565b905082815260208101848484011115614563576145626155e8565b5b61456e8482856153a5565b509392505050565b60008135905061458581615a3a565b92915050565b600082601f8301126145a05761459f6155de565b5b81356145b0848260208601614482565b91505092915050565b6000813590506145c881615a51565b92915050565b6000813590506145dd81615a68565b92915050565b6000815190506145f281615a68565b92915050565b600082601f83011261460d5761460c6155de565b5b813561461d8482602086016144f2565b91505092915050565b600082601f83011261463b5761463a6155de565b5b813561464b848260208601614534565b91505092915050565b60008135905061466381615a7f565b92915050565b60006020828403121561467f5761467e6155f2565b5b600061468d84828501614576565b91505092915050565b600080604083850312156146ad576146ac6155f2565b5b60006146bb85828601614576565b92505060206146cc85828601614576565b9150509250929050565b6000806000606084860312156146ef576146ee6155f2565b5b60006146fd86828701614576565b935050602061470e86828701614576565b925050604061471f86828701614654565b9150509250925092565b60008060008060808587031215614743576147426155f2565b5b600061475187828801614576565b945050602061476287828801614576565b935050604061477387828801614654565b925050606085013567ffffffffffffffff811115614794576147936155ed565b5b6147a0878288016145f8565b91505092959194509250565b600080604083850312156147c3576147c26155f2565b5b60006147d185828601614576565b92505060206147e2858286016145b9565b9150509250929050565b60008060408385031215614803576148026155f2565b5b600061481185828601614576565b925050602083013567ffffffffffffffff811115614832576148316155ed565b5b61483e85828601614626565b9150509250929050565b600080600060608486031215614861576148606155f2565b5b600061486f86828701614576565b935050602084013567ffffffffffffffff8111156148905761488f6155ed565b5b61489c86828701614626565b92505060406148ad86828701614654565b9150509250925092565b600080604083850312156148ce576148cd6155f2565b5b60006148dc85828601614576565b92505060206148ed85828601614654565b9150509250929050565b6000806040838503121561490e5761490d6155f2565b5b600083013567ffffffffffffffff81111561492c5761492b6155ed565b5b6149388582860161458b565b9250506020614949858286016145b9565b9150509250929050565b600060208284031215614969576149686155f2565b5b6000614977848285016145b9565b91505092915050565b600060208284031215614996576149956155f2565b5b60006149a4848285016145ce565b91505092915050565b6000602082840312156149c3576149c26155f2565b5b60006149d1848285016145e3565b91505092915050565b600080604083850312156149f1576149f06155f2565b5b600083013567ffffffffffffffff811115614a0f57614a0e6155ed565b5b614a1b85828601614626565b9250506020614a2c85828601614576565b9150509250929050565b600060208284031215614a4c57614a4b6155f2565b5b6000614a5a84828501614654565b91505092915050565b6000614a6f8383614a7b565b60208301905092915050565b614a8481615331565b82525050565b614a9381615331565b82525050565b6000614aa4826151b0565b614aae81856151de565b9350614ab9836151a0565b8060005b83811015614aea578151614ad18882614a63565b9750614adc836151d1565b925050600181019050614abd565b5085935050505092915050565b614b0081615343565b82525050565b6000614b11826151bb565b614b1b81856151ef565b9350614b2b8185602086016153b4565b614b34816155f7565b840191505092915050565b6000614b4a826151c6565b614b548185615200565b9350614b648185602086016153b4565b614b6d816155f7565b840191505092915050565b6000614b83826151c6565b614b8d8185615211565b9350614b9d8185602086016153b4565b80840191505092915050565b6000614bb6601683615200565b9150614bc182615608565b602082019050919050565b6000614bd9600f83615200565b9150614be482615631565b602082019050919050565b6000614bfc604b83615200565b9150614c078261565a565b606082019050919050565b6000614c1f602483615200565b9150614c2a826156cf565b604082019050919050565b6000614c42602683615200565b9150614c4d8261571e565b604082019050919050565b6000614c65601f83615200565b9150614c708261576d565b602082019050919050565b6000614c88604a83615200565b9150614c9382615796565b606082019050919050565b6000614cab602283615200565b9150614cb68261580b565b604082019050919050565b6000614cce601683615200565b9150614cd98261585a565b602082019050919050565b6000614cf1602083615200565b9150614cfc82615883565b602082019050919050565b6000614d14602083615200565b9150614d1f826158ac565b602082019050919050565b6000614d37603183615200565b9150614d42826158d5565b604082019050919050565b6000614d5a602683615200565b9150614d6582615924565b604082019050919050565b6000614d7d603283615200565b9150614d8882615973565b604082019050919050565b6000614da0601783615200565b9150614dab826159c2565b602082019050919050565b6000614dc3602183615200565b9150614dce826159eb565b604082019050919050565b614de28161539b565b82525050565b6000614df48285614b78565b9150614e008284614b78565b91508190509392505050565b6000602082019050614e216000830184614a8a565b92915050565b6000608082019050614e3c6000830187614a8a565b614e496020830186614a8a565b614e566040830185614dd9565b8181036060830152614e688184614b06565b905095945050505050565b60006020820190508181036000830152614e8d8184614a99565b905092915050565b6000602082019050614eaa6000830184614af7565b92915050565b60006020820190508181036000830152614eca8184614b3f565b905092915050565b60006020820190508181036000830152614eeb81614ba9565b9050919050565b60006020820190508181036000830152614f0b81614bcc565b9050919050565b60006020820190508181036000830152614f2b81614bef565b9050919050565b60006020820190508181036000830152614f4b81614c12565b9050919050565b60006020820190508181036000830152614f6b81614c35565b9050919050565b60006020820190508181036000830152614f8b81614c58565b9050919050565b60006020820190508181036000830152614fab81614c7b565b9050919050565b60006020820190508181036000830152614fcb81614c9e565b9050919050565b60006020820190508181036000830152614feb81614cc1565b9050919050565b6000602082019050818103600083015261500b81614ce4565b9050919050565b6000602082019050818103600083015261502b81614d07565b9050919050565b6000602082019050818103600083015261504b81614d2a565b9050919050565b6000602082019050818103600083015261506b81614d4d565b9050919050565b6000602082019050818103600083015261508b81614d70565b9050919050565b600060208201905081810360008301526150ab81614d93565b9050919050565b600060208201905081810360008301526150cb81614db6565b9050919050565b60006020820190506150e76000830184614dd9565b92915050565b60006150f7615108565b90506151038282615419565b919050565b6000604051905090565b600067ffffffffffffffff82111561512d5761512c6155af565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615159576151586155af565b5b615162826155f7565b9050602081019050919050565b600067ffffffffffffffff82111561518a576151896155af565b5b615193826155f7565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006152278261539b565b91506152328361539b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615267576152666154c4565b5b828201905092915050565b600061527d8261539b565b91506152888361539b565b925082615298576152976154f3565b5b828204905092915050565b60006152ae8261539b565b91506152b98361539b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156152f2576152f16154c4565b5b828202905092915050565b60006153088261539b565b91506153138361539b565b925082821015615326576153256154c4565b5b828203905092915050565b600061533c8261537b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156153d25780820151818401526020810190506153b7565b838111156153e1576000848401525b50505050565b600060028204905060018216806153ff57607f821691505b6020821081141561541357615412615522565b5b50919050565b615422826155f7565b810181811067ffffffffffffffff82111715615441576154406155af565b5b80604052505050565b60006154558261539b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615488576154876154c4565b5b600182019050919050565b600061549e8261539b565b91506154a98361539b565b9250826154b9576154b86154f3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206f6e676f696e67207075626c69632073616c6500000000000000000000600082015250565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b7f5472616e73616374696f6e207175616e7469747920657863656564732074686560008201527f206e756d626572206f6620617661696c61626c6520746f6b656e7320696e207060208201527f72696d6172792073616c65000000000000000000000000000000000000000000604082015250565b7f4164647265737320616c726561647920696e20646973747269627574696f6e2060008201527f6c69737400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5368617265206d7573742062652067726561746572207468616e207a65726f00600082015250565b7f5472616e73616374696f6e207175616e7469747920657863656564732074686560008201527f206e756d626572206f6620617661696c61626c6520746f6b656e7320696e207060208201527f75626c69632073616c6500000000000000000000000000000000000000000000604082015250565b7f5072696d6172792073616c6520616c726561647920696e20746869732073746160008201527f7465000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e7420616c6c6f77616e636500000000000000000000600082015250565b7f41646472657373206e6f7420696e20646973747269627574696f6e206c697374600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5061796d656e7420616d6f756e74206e6f7420657175616c20746f207468652060008201527f7072696365206f6620746f6b656e287329000000000000000000000000000000602082015250565b7f546f2073657420736861726520746f207a65726f2c207573652072656d6f766560008201527f4469737428290000000000000000000000000000000000000000000000000000602082015250565b7f41646472657373206e6f7420616c6c6f77656420746f2070617274696369706160008201527f746520696e207072696d6172792073616c650000000000000000000000000000602082015250565b7f4e6f206f6e676f696e67207072696d6172792073616c65000000000000000000600082015250565b7f5075626c69632073616c6520616c726561647920696e2074686973207374617460008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b615a4381615331565b8114615a4e57600080fd5b50565b615a5a81615343565b8114615a6557600080fd5b50565b615a718161534f565b8114615a7c57600080fd5b50565b615a888161539b565b8114615a9357600080fd5b5056fe68747470733a2f2f6d7572646572686561646465617468636c75622e636f6d2f6170692f6e66742fa2646970667358221220188300d82a81f57ca55c9c52e0968e93591775e1abd43e1b14859d857b40dd4064736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000fcee57c37128ca5a3141296a74130e55975aa2f10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000054f50454e33000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000002000000000000000000000000e4c1818b7172e37a2da8ce8db16cfa2f17304967000000000000000000000000e8083be6691974869b14f7ba41c9ed8959fbbe04000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000210000000000000000000000000000000000000000000000000000000000000021
-----Decoded View---------------
Arg [0] : addresses (address[]): 0xfCEE57C37128CA5A3141296A74130E55975aa2f1
Arg [1] : names (string[]): OPEN3
Arg [2] : shares (uint256[]): 10000
Arg [3] : premintAddresses (address[]): 0xE4C1818B7172E37a2DA8cE8db16cfa2f17304967,0xe8083Be6691974869B14f7Ba41C9Ed8959fbbe04
Arg [4] : premintQuantity (uint256[]): 33,33
-----Encoded View---------------
19 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 000000000000000000000000fcee57c37128ca5a3141296a74130e55975aa2f1
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [10] : 4f50454e33000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [12] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [14] : 000000000000000000000000e4c1818b7172e37a2da8ce8db16cfa2f17304967
Arg [15] : 000000000000000000000000e8083be6691974869b14f7ba41c9ed8959fbbe04
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000021
Deployed Bytecode Sourcemap
45817:9254:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26792:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29402:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30905:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48871:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30468:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48769:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48665:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24029:280;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49824:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51577:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48564:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31762:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53251:753;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25615:1105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47712:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32003:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49385:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47812:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24602:713;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48060:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51320:249;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54381:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47934:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29211:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27228:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44942:103;;;;;;;;;;;;;:::i;:::-;;49701:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49171:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52340:903;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44291:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48278:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29571:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51929:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48371:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54012:361;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49271:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50875:437;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31181:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48461:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48971:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32259:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50289:578;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29746:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48161:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49069:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54595:473;;;;;;;;;;;;;:::i;:::-;;31531:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49544:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45200:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26792:372;26894:4;26946:25;26931:40;;;:11;:40;;;;:105;;;;27003:33;26988:48;;;:11;:48;;;;26931:105;:172;;;;27068:35;27053:50;;;:11;:50;;;;26931:172;:225;;;;27120:36;27144:11;27120:23;:36::i;:::-;26931:225;26911:245;;26792:372;;;:::o;29402:100::-;29456:13;29489:5;29482:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29402:100;:::o;30905:204::-;30973:7;30998:16;31006:7;30998;:16::i;:::-;30993:64;;31023:34;;;;;;;;;;;;;;30993:64;31077:15;:24;31093:7;31077:24;;;;;;;;;;;;;;;;;;;;;31070:31;;30905:204;;;:::o;48871:92::-;48917:4;48941:14;;;;;;;;;;;48934:21;;48871:92;:::o;30468:371::-;30541:13;30557:24;30573:7;30557:15;:24::i;:::-;30541:40;;30602:5;30596:11;;:2;:11;;;30592:48;;;30616:24;;;;;;;;;;;;;;30592:48;30673:5;30657:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;30683:37;30700:5;30707:12;:10;:12::i;:::-;30683:16;:37::i;:::-;30682:38;30657:63;30653:138;;;30744:35;;;;;;;;;;;;;;30653:138;30803:28;30812:2;30816:7;30825:5;30803:8;:28::i;:::-;30530:309;30468:371;;:::o;48769:94::-;48816:7;48843:12;;48836:19;;48769:94;:::o;48665:96::-;48713:7;48740:13;;48733:20;;48665:96;:::o;24029:280::-;24082:7;24274:12;;;;;;;;;;;24258:13;;;;;;;;;;:28;24251:35;;;;24029:280;:::o;49824:242::-;44522:12;:10;:12::i;:::-;44511:23;;:7;:5;:7::i;:::-;:23;;;44503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49953:9:::1;49948:111;49972:10;:17;49968:1;:21;49948:111;;;50041:6;50011:12;:27;50024:10;50035:1;50024:13;;;;;;;;:::i;:::-;;;;;;;;50011:27;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;49991:3;;;;;:::i;:::-;;;;49948:111;;;;49824:242:::0;;:::o;51577:344::-;44522:12;:10;:12::i;:::-;44511:23;;:7;:5;:7::i;:::-;:23;;;44503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51704:1:::1;51695:6;:10;51687:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;51759:14;51776:8;:18;51785:8;51776:18;;;;;;;;;;;;;;;51759:35;;51823:1;51813;:7;;;:11;51805:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;51884:6;51874:1;:7;;:16;;;;51901:12;:10;:12::i;:::-;51676:245;51577:344:::0;;:::o;48564:93::-;44522:12;:10;:12::i;:::-;44511:23;;:7;:5;:7::i;:::-;:23;;;44503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48646:3:::1;48631:12;:18;;;;48564:93:::0;:::o;31762:170::-;31896:28;31906:4;31912:2;31916:7;31896:9;:28::i;:::-;31762:170;;;:::o;53251:753::-;53325:13;;;;;;;;;;;53317:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;53420:8;53411:6;;:17;;;;:::i;:::-;53398:9;:30;53376:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;53518:22;53557:8;53543:11;;:22;;;;:::i;:::-;53518:47;;53616:16;;53598:14;:34;;53576:158;;;;;;;;;;;;:::i;:::-;;;;;;;;;53747:16;53790:8;53766:7;:21;53774:12;:10;:12::i;:::-;53766:21;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;53747:51;;53829:12;;53817:8;:24;;53809:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;53895:14;53881:11;:28;;;;53944:8;53920:7;:21;53928:12;:10;:12::i;:::-;53920:21;;;;;;;;;;;;;;;:32;;;;53963:33;53973:12;:10;:12::i;:::-;53987:8;53963:9;:33::i;:::-;53306:698;;53251:753;:::o;25615:1105::-;25704:7;25737:16;25747:5;25737:9;:16::i;:::-;25728:5;:25;25724:61;;25762:23;;;;;;;;;;;;;;25724:61;25796:22;25821:13;;;;;;;;;;;25796:38;;;;25845:19;25875:25;26076:9;26071:557;26091:14;26087:1;:18;26071:557;;;26131:31;26165:11;:14;26177:1;26165:14;;;;;;;;;;;26131:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26202:9;:16;;;26198:73;;;26243:8;;;26198:73;26319:1;26293:28;;:9;:14;;;:28;;;26289:111;;26366:9;:14;;;26346:34;;26289:111;26443:5;26422:26;;:17;:26;;;26418:195;;;26492:5;26477:11;:20;26473:85;;;26533:1;26526:8;;;;;;;;;26473:85;26580:13;;;;;;;26418:195;26112:516;26071:557;26107:3;;;;;;;26071:557;;;;26704:8;;;25615:1105;;;;;:::o;47712:92::-;47758:7;47785:11;;47778:18;;47712:92;:::o;32003:185::-;32141:39;32158:4;32164:2;32168:7;32141:39;;;;;;;;;;;;:16;:39::i;:::-;32003:185;;;:::o;49385:151::-;49480:7;49512:8;:16;49521:6;49512:16;;;;;;;;;;;;;;;;49505:23;;49385:151;;;:::o;47812:114::-;47868:7;47895:8;:17;47904:7;47895:17;;;;;;;;;;;;;;;:23;;;47888:30;;47812:114;;;:::o;24602:713::-;24669:7;24689:22;24714:13;;;;;;;;;;24689:38;;;;24738:19;24933:9;24928:328;24948:14;24944:1;:18;24928:328;;;24988:31;25022:11;:14;25034:1;25022:14;;;;;;;;;;;24988:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25060:9;:16;;;25055:186;;25120:5;25105:11;:20;25101:85;;;25161:1;25154:8;;;;;;;;25101:85;25208:13;;;;;;;25055:186;24969:287;24964:3;;;;;;;24928:328;;;;25284:23;;;;;;;;;;;;;;24602:713;;;;:::o;48060:93::-;48100:16;48136:9;48129:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48060:93;:::o;51320:249::-;44522:12;:10;:12::i;:::-;44511:23;;:7;:5;:7::i;:::-;:23;;;44503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51434:14:::1;51451:8;:18;51460:8;51451:18;;;;;;;;;;;;;;;51434:35;;51498:1;51488;:7;;;:11;51480:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;51556:5;51547:1;:6;;:14;;;;;;;;;;;;:::i;:::-;;51423:146;51320:249:::0;;:::o;54381:206::-;44522:12;:10;:12::i;:::-;44511:23;;:7;:5;:7::i;:::-;:23;;;44503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54471:5:::1;54454:22;;:13;;;;;;;;;;;:22;;;;54446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54541:5;54525:13;;:21;;;;;;;;;;;;;;;;;;54562:17;54573:5;54562:17;;;;;;:::i;:::-;;;;;;;;54381:206:::0;:::o;47934:118::-;47989:13;48022:8;:17;48031:7;48022:17;;;;;;;;;;;;;;;:22;;48015:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47934:118;;;:::o;29211:124::-;29275:7;29302:20;29314:7;29302:11;:20::i;:::-;:25;;;29295:32;;29211:124;;;:::o;27228:206::-;27292:7;27333:1;27316:19;;:5;:19;;;27312:60;;;27344:28;;;;;;;;;;;;;;27312:60;27398:12;:19;27411:5;27398:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27390:36;;27383:43;;27228:206;;;:::o;44942:103::-;44522:12;:10;:12::i;:::-;44511:23;;:7;:5;:7::i;:::-;:23;;;44503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45007:30:::1;45034:1;45007:18;:30::i;:::-;44942:103::o:0;49701:115::-;49764:4;49788:12;:20;49801:6;49788:20;;;;;;;;;;;;;;;;;;;;;;;;;49781:27;;49701:115;;;:::o;49171:92::-;49217:7;49244:11;;49237:18;;49171:92;:::o;52340:903::-;52415:14;;;;;;;;;;;52407:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;52490:12;:26;52503:12;:10;:12::i;:::-;52490:26;;;;;;;;;;;;;;;;;;;;;;;;;52468:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;52649:8;52640:6;;:17;;;;:::i;:::-;52627:9;:30;52605:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;52747:23;52788:8;52773:12;;:23;;;;:::i;:::-;52747:49;;52848:17;;52829:15;:36;;52807:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;52981:16;53025:8;53000;:22;53009:12;:10;:12::i;:::-;53000:22;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;52981:52;;53064:13;;53052:8;:25;;53044:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;53132:15;53117:12;:30;;;;53183:8;53158;:22;53167:12;:10;:12::i;:::-;53158:22;;;;;;;;;;;;;;;:33;;;;53202;53212:12;:10;:12::i;:::-;53226:8;53202:9;:33::i;:::-;52396:847;;52340:903;:::o;44291:87::-;44337:7;44364:6;;;;;;;;;;;44357:13;;44291:87;:::o;48278:85::-;44522:12;:10;:12::i;:::-;44511:23;;:7;:5;:7::i;:::-;:23;;;44503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48350:5:::1;48341:6;:14;;;;48278:85:::0;:::o;29571:104::-;29627:13;29660:7;29653:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29571:104;:::o;51929:403::-;44522:12;:10;:12::i;:::-;44511:23;;:7;:5;:7::i;:::-;:23;;;44503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52028:19:::1;52051:13;;:::i;:::-;52075:9;52070:255;52094:9;:16;;;;52090:1;:20;52070:255;;;52135:9;52145:1;52135:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;52121:26;;52155:8;:21;52164:11;52155:21;;;;;;;;;;;;;;;52151:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;52234:5;52218:23;;;;;;52206:1;:6;;;52190:24;;;;;;:51;52186:135;;;52248:23;52259:11;52248:10;:23::i;:::-;52276:36;52284:11;52297:5;52304:1;:7;;;52276;:36::i;:::-;52186:135;52112:3;;;;;:::i;:::-;;;;52070:255;;;;52024:308;;51929:403:::0;;:::o;48371:82::-;48412:7;48439:6;;48432:13;;48371:82;:::o;54012:361::-;44522:12;:10;:12::i;:::-;44511:23;;:7;:5;:7::i;:::-;:23;;;44503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54104:5:::1;54086:23;;:14;;;;;;;;;;;:23;;;;54078:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;54176:5;54159:14;;:22;;;;;;;;;;;;;;;;;;54199:5;54194:138;;54261:12;;54241:17;;:32;;;;:::i;:::-;54221:16;;:52;;;;;;;:::i;:::-;;;;;;;;54308:12;;54288:17;:32;;;;54194:138;54347:18;54359:5;54347:18;;;;;;:::i;:::-;;;;;;;;54012:361:::0;:::o;49271:106::-;49316:7;49358:11;;49343:12;;:26;;;;:::i;:::-;49336:33;;49271:106;:::o;50875:437::-;44522:12;:10;:12::i;:::-;44511:23;;:7;:5;:7::i;:::-;:23;;;44503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50941:14:::1;50958:8;:18;50967:8;50958:18;;;;;;;;;;;;;;;50941:35;;51005:1;50995;:7;;;:11;50987:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;51064:1;51054;:7;;:11;;;;51078:13;51094:9;51123:1;51104:9;:16;;;;:20;;;;:::i;:::-;51094:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;51078:47;;51158:1;:5;;;51136:8;:15;51145:5;51136:15;;;;;;;;;;;;;;;:19;;:27;;;;51193:5;51174:9;51184:1;:5;;;51174:16;;;;;;;;:::i;:::-;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;51209:9;:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;51265:8;51242:39;;;51275:5;51242:39;;;;;;:::i;:::-;;;;;;;;51292:12;:10;:12::i;:::-;50930:382;;50875:437:::0;:::o;31181:279::-;31284:12;:10;:12::i;:::-;31272:24;;:8;:24;;;31268:54;;;31305:17;;;;;;;;;;;;;;31268:54;31380:8;31335:18;:32;31354:12;:10;:12::i;:::-;31335:32;;;;;;;;;;;;;;;:42;31368:8;31335:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31433:8;31404:48;;31419:12;:10;:12::i;:::-;31404:48;;;31443:8;31404:48;;;;;;:::i;:::-;;;;;;;;31181:279;;:::o;48461:95::-;44522:12;:10;:12::i;:::-;44511:23;;:7;:5;:7::i;:::-;:23;;;44503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48545:3:::1;48529:13;:19;;;;48461:95:::0;:::o;48971:90::-;49016:4;49040:13;;;;;;;;;;;49033:20;;48971:90;:::o;32259:342::-;32426:28;32436:4;32442:2;32446:7;32426:9;:28::i;:::-;32470:48;32493:4;32499:2;32503:7;32512:5;32470:22;:48::i;:::-;32465:129;;32542:40;;;;;;;;;;;;;;32465:129;32259:342;;;;:::o;50289:578::-;44522:12;:10;:12::i;:::-;44511:23;;:7;:5;:7::i;:::-;:23;;;44503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50451:1:::1;50431:22;;:8;:22;;;;50423:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;50501:1;50492:6;:10;50484:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;50549:14;50566:8;:18;50575:8;50566:18;;;;;;;;;;;;;;;50549:35;;50614:1;50603;:7;;;:12;50595:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;50679:6;50669:1;:7;;:16;;;;50704:9;:16;;;;50696:1;:5;;:24;;;;50740:5;50731:1;:6;;:14;;;;;;;;;;;;:::i;:::-;;50758:9;50773:8;50758:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50821:8;50798:38;;;50831:4;50798:38;;;;;;:::i;:::-;;;;;;;;50847:12;:10;:12::i;:::-;50412:455;50289:578:::0;;;:::o;29746:318::-;29819:13;29850:16;29858:7;29850;:16::i;:::-;29845:59;;29875:29;;;;;;;;;;;;;;29845:59;29917:21;29941:10;:8;:10::i;:::-;29917:34;;29994:1;29975:7;29969:21;:26;;:87;;;;;;;;;;;;;;;;;30022:7;30031:18;:7;:16;:18::i;:::-;30005:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29969:87;29962:94;;;29746:318;;;:::o;48161:109::-;48215:4;48260:1;48240:17;48249:7;48240:8;:17::i;:::-;:21;48232:30;;48161:109;;;:::o;49069:94::-;49116:7;49143:12;;49136:19;;49069:94;:::o;54595:473::-;44522:12;:10;:12::i;:::-;44511:23;;:7;:5;:7::i;:::-;:23;;;44503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54670:1:::1;54651:9;:16;;;;:20;54647:414;;;54688:15;54706:21;54688:39;;54742:12;54767:11;;54757:7;:21;;;;:::i;:::-;54742:36;;54793:16;54831:9:::0;54843:1:::1;54831:13;;54826:183;54850:9;:16;;;;54846:1;:20;54826:183;;;54903:9;54913:1;54903:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;54892:23;;54942:8;54934:26;;:59;54988:4;54961:8;:18;54970:8;54961:18;;;;;;;;;;;;;;;:24;;;:31;;;;:::i;:::-;54934:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;54868:3;;;;;:::i;:::-;;;;54826:183;;;;55028:21;55041:7;55028:21;;;;;;:::i;:::-;;;;;;;;54673:388;;;54647:414;54595:473::o:0;31531:164::-;31628:4;31652:18;:25;31671:5;31652:25;;;;;;;;;;;;;;;:35;31678:8;31652:35;;;;;;;;;;;;;;;;;;;;;;;;;31645:42;;31531:164;;;;:::o;49544:149::-;49638:7;49670;:15;49678:6;49670:15;;;;;;;;;;;;;;;;49663:22;;49544:149;;;:::o;45200:201::-;44522:12;:10;:12::i;:::-;44511:23;;:7;:5;:7::i;:::-;:23;;;44503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45309:1:::1;45289:22;;:8;:22;;;;45281:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45365:28;45384:8;45365:18;:28::i;:::-;45200:201:::0;:::o;9498:387::-;9558:4;9766:12;9833:7;9821:20;9813:28;;9876:1;9869:4;:8;9862:15;;;9498:387;;;:::o;20640:157::-;20725:4;20764:25;20749:40;;;:11;:40;;;;20742:47;;20640:157;;;:::o;32856:144::-;32913:4;32947:13;;;;;;;;;;;32937:23;;:7;:23;:55;;;;;32965:11;:20;32977:7;32965:20;;;;;;;;;;;:27;;;;;;;;;;;;32964:28;32937:55;32930:62;;32856:144;;;:::o;17485:98::-;17538:7;17565:10;17558:17;;17485:98;:::o;40072:196::-;40214:2;40187:15;:24;40203:7;40187:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40252:7;40248:2;40232:28;;40241:5;40232:28;;;;;;;;;;;;40072:196;;;:::o;50074:207::-;50115:11;50142:9;50154:1;50142:13;;50137:109;50161:9;:16;;;;50157:1;:20;50137:109;;;50206:8;:22;50215:9;50225:1;50215:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;50206:22;;;;;;;;;;;;;;;:28;;;50199:35;;;;;:::i;:::-;;;50179:3;;;;;:::i;:::-;;;;50137:109;;;;50270:3;50256:11;:17;;;;50104:177;50074:207::o;35573:2112::-;35688:35;35726:20;35738:7;35726:11;:20::i;:::-;35688:58;;35759:22;35801:13;:18;;;35785:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;35836:50;35853:13;:18;;;35873:12;:10;:12::i;:::-;35836:16;:50::i;:::-;35785:101;:154;;;;35927:12;:10;:12::i;:::-;35903:36;;:20;35915:7;35903:11;:20::i;:::-;:36;;;35785:154;35759:181;;35958:17;35953:66;;35984:35;;;;;;;;;;;;;;35953:66;36056:4;36034:26;;:13;:18;;;:26;;;36030:67;;36069:28;;;;;;;;;;;;;;36030:67;36126:1;36112:16;;:2;:16;;;36108:52;;;36137:23;;;;;;;;;;;;;;36108:52;36173:43;36195:4;36201:2;36205:7;36214:1;36173:21;:43::i;:::-;36281:49;36298:1;36302:7;36311:13;:18;;;36281:8;:49::i;:::-;36656:1;36626:12;:18;36639:4;36626:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36700:1;36672:12;:16;36685:2;36672:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36746:2;36718:11;:20;36730:7;36718:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;36808:15;36763:11;:20;36775:7;36763:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;37076:19;37108:1;37098:7;:11;37076:33;;37169:1;37128:43;;:11;:24;37140:11;37128:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;37124:445;;;37353:13;;;;;;;;;;37339:27;;:11;:27;37335:219;;;37423:13;:18;;;37391:11;:24;37403:11;37391:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;37506:13;:28;;;37464:11;:24;37476:11;37464:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;37335:219;37124:445;36601:979;37616:7;37612:2;37597:27;;37606:4;37597:27;;;;;;;;;;;;37635:42;37656:4;37662:2;37666:7;37675:1;37635:20;:42::i;:::-;35677:2008;;35573:2112;;;:::o;33008:104::-;33077:27;33087:2;33091:8;33077:27;;;;;;;;;;;;:9;:27::i;:::-;33008:104;;:::o;28066:1083::-;28127:21;;:::i;:::-;28161:12;28176:7;28161:22;;28232:13;;;;;;;;;;28225:20;;:4;:20;28221:861;;;28266:31;28300:11;:17;28312:4;28300:17;;;;;;;;;;;28266:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28341:9;:16;;;28336:731;;28412:1;28386:28;;:9;:14;;;:28;;;28382:101;;28450:9;28443:16;;;;;;28382:101;28787:261;28794:4;28787:261;;;28827:6;;;;;;;;28872:11;:17;28884:4;28872:17;;;;;;;;;;;28860:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28946:1;28920:28;;:9;:14;;;:28;;;28916:109;;28988:9;28981:16;;;;;;28916:109;28787:261;;;28336:731;28247:835;28221:861;29110:31;;;;;;;;;;;;;;28066:1083;;;;:::o;45561:191::-;45635:16;45654:6;;;;;;;;;;;45635:25;;45680:8;45671:6;;:17;;;;;;;;;;;;;;;;;;45735:8;45704:40;;45725:8;45704:40;;;;;;;;;;;;45624:128;45561:191;:::o;40833:790::-;40988:4;41009:15;:2;:13;;;:15::i;:::-;41005:611;;;41061:2;41045:36;;;41082:12;:10;:12::i;:::-;41096:4;41102:7;41111:5;41045:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41041:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41308:1;41291:6;:13;:18;41287:259;;;41341:40;;;;;;;;;;;;;;41287:259;41496:6;41490:13;41481:6;41477:2;41473:15;41466:38;41041:520;41178:45;;;41168:55;;;:6;:55;;;;41161:62;;;;;41005:611;41600:4;41593:11;;40833:790;;;;;;;:::o;47569:135::-;47621:13;47647:49;;;;;;;;;;;;;;;;;;;47569:135;:::o;18041:723::-;18097:13;18327:1;18318:5;:10;18314:53;;;18345:10;;;;;;;;;;;;;;;;;;;;;18314:53;18377:12;18392:5;18377:20;;18408:14;18433:78;18448:1;18440:4;:9;18433:78;;18466:8;;;;;:::i;:::-;;;;18497:2;18489:10;;;;;:::i;:::-;;;18433:78;;;18521:19;18553:6;18543:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18521:39;;18571:154;18587:1;18578:5;:10;18571:154;;18615:1;18605:11;;;;;:::i;:::-;;;18682:2;18674:5;:10;;;;:::i;:::-;18661:2;:24;;;;:::i;:::-;18648:39;;18631:6;18638;18631:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18711:2;18702:11;;;;;:::i;:::-;;;18571:154;;;18749:6;18735:21;;;;;18041:723;;;;:::o;42271:159::-;;;;;:::o;43089:158::-;;;;;:::o;33475:163::-;33598:32;33604:2;33608:8;33618:5;33625:4;33598:5;:32::i;:::-;33475:163;;;:::o;33897:1422::-;34036:20;34059:13;;;;;;;;;;;34036:36;;;;34101:1;34087:16;;:2;:16;;;34083:48;;;34112:19;;;;;;;;;;;;;;34083:48;34158:1;34146:8;:13;34142:44;;;34168:18;;;;;;;;;;;;;;34142:44;34199:61;34229:1;34233:2;34237:12;34251:8;34199:21;:61::i;:::-;34573:8;34538:12;:16;34551:2;34538:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34637:8;34597:12;:16;34610:2;34597:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34696:2;34663:11;:25;34675:12;34663:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34763:15;34713:11;:25;34725:12;34713:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;34796:20;34819:12;34796:35;;34853:9;34848:328;34868:8;34864:1;:12;34848:328;;;34932:12;34928:2;34907:38;;34924:1;34907:38;;;;;;;;;;;;34968:4;:68;;;;;34977:59;35008:1;35012:2;35016:12;35030:5;34977:22;:59::i;:::-;34976:60;34968:68;34964:164;;;35068:40;;;;;;;;;;;;;;34964:164;35146:14;;;;;;;34878:3;;;;;;;34848:328;;;;35216:12;35192:13;;:37;;;;;;;;;;;;;;;;;;34513:728;35251:60;35280:1;35284:2;35288:12;35302:8;35251:20;:60::i;:::-;34025:1294;33897:1422;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:654::-;6356:6;6364;6413:2;6401:9;6392:7;6388:23;6384:32;6381:119;;;6419:79;;:::i;:::-;6381:119;6539:1;6564:53;6609:7;6600:6;6589:9;6585:22;6564:53;:::i;:::-;6554:63;;6510:117;6694:2;6683:9;6679:18;6666:32;6725:18;6717:6;6714:30;6711:117;;;6747:79;;:::i;:::-;6711:117;6852:63;6907:7;6898:6;6887:9;6883:22;6852:63;:::i;:::-;6842:73;;6637:288;6278:654;;;;;:::o;6938:799::-;7025:6;7033;7041;7090:2;7078:9;7069:7;7065:23;7061:32;7058:119;;;7096:79;;:::i;:::-;7058:119;7216:1;7241:53;7286:7;7277:6;7266:9;7262:22;7241:53;:::i;:::-;7231:63;;7187:117;7371:2;7360:9;7356:18;7343:32;7402:18;7394:6;7391:30;7388:117;;;7424:79;;:::i;:::-;7388:117;7529:63;7584:7;7575:6;7564:9;7560:22;7529:63;:::i;:::-;7519:73;;7314:288;7641:2;7667:53;7712:7;7703:6;7692:9;7688:22;7667:53;:::i;:::-;7657:63;;7612:118;6938:799;;;;;:::o;7743:474::-;7811:6;7819;7868:2;7856:9;7847:7;7843:23;7839:32;7836:119;;;7874:79;;:::i;:::-;7836:119;7994:1;8019:53;8064:7;8055:6;8044:9;8040:22;8019:53;:::i;:::-;8009:63;;7965:117;8121:2;8147:53;8192:7;8183:6;8172:9;8168:22;8147:53;:::i;:::-;8137:63;;8092:118;7743:474;;;;;:::o;8223:678::-;8313:6;8321;8370:2;8358:9;8349:7;8345:23;8341:32;8338:119;;;8376:79;;:::i;:::-;8338:119;8524:1;8513:9;8509:17;8496:31;8554:18;8546:6;8543:30;8540:117;;;8576:79;;:::i;:::-;8540:117;8681:78;8751:7;8742:6;8731:9;8727:22;8681:78;:::i;:::-;8671:88;;8467:302;8808:2;8834:50;8876:7;8867:6;8856:9;8852:22;8834:50;:::i;:::-;8824:60;;8779:115;8223:678;;;;;:::o;8907:323::-;8963:6;9012:2;9000:9;8991:7;8987:23;8983:32;8980:119;;;9018:79;;:::i;:::-;8980:119;9138:1;9163:50;9205:7;9196:6;9185:9;9181:22;9163:50;:::i;:::-;9153:60;;9109:114;8907:323;;;;:::o;9236:327::-;9294:6;9343:2;9331:9;9322:7;9318:23;9314:32;9311:119;;;9349:79;;:::i;:::-;9311:119;9469:1;9494:52;9538:7;9529:6;9518:9;9514:22;9494:52;:::i;:::-;9484:62;;9440:116;9236:327;;;;:::o;9569:349::-;9638:6;9687:2;9675:9;9666:7;9662:23;9658:32;9655:119;;;9693:79;;:::i;:::-;9655:119;9813:1;9838:63;9893:7;9884:6;9873:9;9869:22;9838:63;:::i;:::-;9828:73;;9784:127;9569:349;;;;:::o;9924:654::-;10002:6;10010;10059:2;10047:9;10038:7;10034:23;10030:32;10027:119;;;10065:79;;:::i;:::-;10027:119;10213:1;10202:9;10198:17;10185:31;10243:18;10235:6;10232:30;10229:117;;;10265:79;;:::i;:::-;10229:117;10370:63;10425:7;10416:6;10405:9;10401:22;10370:63;:::i;:::-;10360:73;;10156:287;10482:2;10508:53;10553:7;10544:6;10533:9;10529:22;10508:53;:::i;:::-;10498:63;;10453:118;9924:654;;;;;:::o;10584:329::-;10643:6;10692:2;10680:9;10671:7;10667:23;10663:32;10660:119;;;10698:79;;:::i;:::-;10660:119;10818:1;10843:53;10888:7;10879:6;10868:9;10864:22;10843:53;:::i;:::-;10833:63;;10789:117;10584:329;;;;:::o;10919:179::-;10988:10;11009:46;11051:3;11043:6;11009:46;:::i;:::-;11087:4;11082:3;11078:14;11064:28;;10919:179;;;;:::o;11104:108::-;11181:24;11199:5;11181:24;:::i;:::-;11176:3;11169:37;11104:108;;:::o;11218:118::-;11305:24;11323:5;11305:24;:::i;:::-;11300:3;11293:37;11218:118;;:::o;11372:732::-;11491:3;11520:54;11568:5;11520:54;:::i;:::-;11590:86;11669:6;11664:3;11590:86;:::i;:::-;11583:93;;11700:56;11750:5;11700:56;:::i;:::-;11779:7;11810:1;11795:284;11820:6;11817:1;11814:13;11795:284;;;11896:6;11890:13;11923:63;11982:3;11967:13;11923:63;:::i;:::-;11916:70;;12009:60;12062:6;12009:60;:::i;:::-;11999:70;;11855:224;11842:1;11839;11835:9;11830:14;;11795:284;;;11799:14;12095:3;12088:10;;11496:608;;;11372:732;;;;:::o;12110:109::-;12191:21;12206:5;12191:21;:::i;:::-;12186:3;12179:34;12110:109;;:::o;12225:360::-;12311:3;12339:38;12371:5;12339:38;:::i;:::-;12393:70;12456:6;12451:3;12393:70;:::i;:::-;12386:77;;12472:52;12517:6;12512:3;12505:4;12498:5;12494:16;12472:52;:::i;:::-;12549:29;12571:6;12549:29;:::i;:::-;12544:3;12540:39;12533:46;;12315:270;12225:360;;;;:::o;12591:364::-;12679:3;12707:39;12740:5;12707:39;:::i;:::-;12762:71;12826:6;12821:3;12762:71;:::i;:::-;12755:78;;12842:52;12887:6;12882:3;12875:4;12868:5;12864:16;12842:52;:::i;:::-;12919:29;12941:6;12919:29;:::i;:::-;12914:3;12910:39;12903:46;;12683:272;12591:364;;;;:::o;12961:377::-;13067:3;13095:39;13128:5;13095:39;:::i;:::-;13150:89;13232:6;13227:3;13150:89;:::i;:::-;13143:96;;13248:52;13293:6;13288:3;13281:4;13274:5;13270:16;13248:52;:::i;:::-;13325:6;13320:3;13316:16;13309:23;;13071:267;12961:377;;;;:::o;13344:366::-;13486:3;13507:67;13571:2;13566:3;13507:67;:::i;:::-;13500:74;;13583:93;13672:3;13583:93;:::i;:::-;13701:2;13696:3;13692:12;13685:19;;13344:366;;;:::o;13716:::-;13858:3;13879:67;13943:2;13938:3;13879:67;:::i;:::-;13872:74;;13955:93;14044:3;13955:93;:::i;:::-;14073:2;14068:3;14064:12;14057:19;;13716:366;;;:::o;14088:::-;14230:3;14251:67;14315:2;14310:3;14251:67;:::i;:::-;14244:74;;14327:93;14416:3;14327:93;:::i;:::-;14445:2;14440:3;14436:12;14429:19;;14088:366;;;:::o;14460:::-;14602:3;14623:67;14687:2;14682:3;14623:67;:::i;:::-;14616:74;;14699:93;14788:3;14699:93;:::i;:::-;14817:2;14812:3;14808:12;14801:19;;14460:366;;;:::o;14832:::-;14974:3;14995:67;15059:2;15054:3;14995:67;:::i;:::-;14988:74;;15071:93;15160:3;15071:93;:::i;:::-;15189:2;15184:3;15180:12;15173:19;;14832:366;;;:::o;15204:::-;15346:3;15367:67;15431:2;15426:3;15367:67;:::i;:::-;15360:74;;15443:93;15532:3;15443:93;:::i;:::-;15561:2;15556:3;15552:12;15545:19;;15204:366;;;:::o;15576:::-;15718:3;15739:67;15803:2;15798:3;15739:67;:::i;:::-;15732:74;;15815:93;15904:3;15815:93;:::i;:::-;15933:2;15928:3;15924:12;15917:19;;15576:366;;;:::o;15948:::-;16090:3;16111:67;16175:2;16170:3;16111:67;:::i;:::-;16104:74;;16187:93;16276:3;16187:93;:::i;:::-;16305:2;16300:3;16296:12;16289:19;;15948:366;;;:::o;16320:::-;16462:3;16483:67;16547:2;16542:3;16483:67;:::i;:::-;16476:74;;16559:93;16648:3;16559:93;:::i;:::-;16677:2;16672:3;16668:12;16661:19;;16320:366;;;:::o;16692:::-;16834:3;16855:67;16919:2;16914:3;16855:67;:::i;:::-;16848:74;;16931:93;17020:3;16931:93;:::i;:::-;17049:2;17044:3;17040:12;17033:19;;16692:366;;;:::o;17064:::-;17206:3;17227:67;17291:2;17286:3;17227:67;:::i;:::-;17220:74;;17303:93;17392:3;17303:93;:::i;:::-;17421:2;17416:3;17412:12;17405:19;;17064:366;;;:::o;17436:::-;17578:3;17599:67;17663:2;17658:3;17599:67;:::i;:::-;17592:74;;17675:93;17764:3;17675:93;:::i;:::-;17793:2;17788:3;17784:12;17777:19;;17436:366;;;:::o;17808:::-;17950:3;17971:67;18035:2;18030:3;17971:67;:::i;:::-;17964:74;;18047:93;18136:3;18047:93;:::i;:::-;18165:2;18160:3;18156:12;18149:19;;17808:366;;;:::o;18180:::-;18322:3;18343:67;18407:2;18402:3;18343:67;:::i;:::-;18336:74;;18419:93;18508:3;18419:93;:::i;:::-;18537:2;18532:3;18528:12;18521:19;;18180:366;;;:::o;18552:::-;18694:3;18715:67;18779:2;18774:3;18715:67;:::i;:::-;18708:74;;18791:93;18880:3;18791:93;:::i;:::-;18909:2;18904:3;18900:12;18893:19;;18552:366;;;:::o;18924:::-;19066:3;19087:67;19151:2;19146:3;19087:67;:::i;:::-;19080:74;;19163:93;19252:3;19163:93;:::i;:::-;19281:2;19276:3;19272:12;19265:19;;18924:366;;;:::o;19296:118::-;19383:24;19401:5;19383:24;:::i;:::-;19378:3;19371:37;19296:118;;:::o;19420:435::-;19600:3;19622:95;19713:3;19704:6;19622:95;:::i;:::-;19615:102;;19734:95;19825:3;19816:6;19734:95;:::i;:::-;19727:102;;19846:3;19839:10;;19420:435;;;;;:::o;19861:222::-;19954:4;19992:2;19981:9;19977:18;19969:26;;20005:71;20073:1;20062:9;20058:17;20049:6;20005:71;:::i;:::-;19861:222;;;;:::o;20089:640::-;20284:4;20322:3;20311:9;20307:19;20299:27;;20336:71;20404:1;20393:9;20389:17;20380:6;20336:71;:::i;:::-;20417:72;20485:2;20474:9;20470:18;20461:6;20417:72;:::i;:::-;20499;20567:2;20556:9;20552:18;20543:6;20499:72;:::i;:::-;20618:9;20612:4;20608:20;20603:2;20592:9;20588:18;20581:48;20646:76;20717:4;20708:6;20646:76;:::i;:::-;20638:84;;20089:640;;;;;;;:::o;20735:373::-;20878:4;20916:2;20905:9;20901:18;20893:26;;20965:9;20959:4;20955:20;20951:1;20940:9;20936:17;20929:47;20993:108;21096:4;21087:6;20993:108;:::i;:::-;20985:116;;20735:373;;;;:::o;21114:210::-;21201:4;21239:2;21228:9;21224:18;21216:26;;21252:65;21314:1;21303:9;21299:17;21290:6;21252:65;:::i;:::-;21114:210;;;;:::o;21330:313::-;21443:4;21481:2;21470:9;21466:18;21458:26;;21530:9;21524:4;21520:20;21516:1;21505:9;21501:17;21494:47;21558:78;21631:4;21622:6;21558:78;:::i;:::-;21550:86;;21330:313;;;;:::o;21649:419::-;21815:4;21853:2;21842:9;21838:18;21830:26;;21902:9;21896:4;21892:20;21888:1;21877:9;21873:17;21866:47;21930:131;22056:4;21930:131;:::i;:::-;21922:139;;21649:419;;;:::o;22074:::-;22240:4;22278:2;22267:9;22263:18;22255:26;;22327:9;22321:4;22317:20;22313:1;22302:9;22298:17;22291:47;22355:131;22481:4;22355:131;:::i;:::-;22347:139;;22074:419;;;:::o;22499:::-;22665:4;22703:2;22692:9;22688:18;22680:26;;22752:9;22746:4;22742:20;22738:1;22727:9;22723:17;22716:47;22780:131;22906:4;22780:131;:::i;:::-;22772:139;;22499:419;;;:::o;22924:::-;23090:4;23128:2;23117:9;23113:18;23105:26;;23177:9;23171:4;23167:20;23163:1;23152:9;23148:17;23141:47;23205:131;23331:4;23205:131;:::i;:::-;23197:139;;22924:419;;;:::o;23349:::-;23515:4;23553:2;23542:9;23538:18;23530:26;;23602:9;23596:4;23592:20;23588:1;23577:9;23573:17;23566:47;23630:131;23756:4;23630:131;:::i;:::-;23622:139;;23349:419;;;:::o;23774:::-;23940:4;23978:2;23967:9;23963:18;23955:26;;24027:9;24021:4;24017:20;24013:1;24002:9;23998:17;23991:47;24055:131;24181:4;24055:131;:::i;:::-;24047:139;;23774:419;;;:::o;24199:::-;24365:4;24403:2;24392:9;24388:18;24380:26;;24452:9;24446:4;24442:20;24438:1;24427:9;24423:17;24416:47;24480:131;24606:4;24480:131;:::i;:::-;24472:139;;24199:419;;;:::o;24624:::-;24790:4;24828:2;24817:9;24813:18;24805:26;;24877:9;24871:4;24867:20;24863:1;24852:9;24848:17;24841:47;24905:131;25031:4;24905:131;:::i;:::-;24897:139;;24624:419;;;:::o;25049:::-;25215:4;25253:2;25242:9;25238:18;25230:26;;25302:9;25296:4;25292:20;25288:1;25277:9;25273:17;25266:47;25330:131;25456:4;25330:131;:::i;:::-;25322:139;;25049:419;;;:::o;25474:::-;25640:4;25678:2;25667:9;25663:18;25655:26;;25727:9;25721:4;25717:20;25713:1;25702:9;25698:17;25691:47;25755:131;25881:4;25755:131;:::i;:::-;25747:139;;25474:419;;;:::o;25899:::-;26065:4;26103:2;26092:9;26088:18;26080:26;;26152:9;26146:4;26142:20;26138:1;26127:9;26123:17;26116:47;26180:131;26306:4;26180:131;:::i;:::-;26172:139;;25899:419;;;:::o;26324:::-;26490:4;26528:2;26517:9;26513:18;26505:26;;26577:9;26571:4;26567:20;26563:1;26552:9;26548:17;26541:47;26605:131;26731:4;26605:131;:::i;:::-;26597:139;;26324:419;;;:::o;26749:::-;26915:4;26953:2;26942:9;26938:18;26930:26;;27002:9;26996:4;26992:20;26988:1;26977:9;26973:17;26966:47;27030:131;27156:4;27030:131;:::i;:::-;27022:139;;26749:419;;;:::o;27174:::-;27340:4;27378:2;27367:9;27363:18;27355:26;;27427:9;27421:4;27417:20;27413:1;27402:9;27398:17;27391:47;27455:131;27581:4;27455:131;:::i;:::-;27447:139;;27174:419;;;:::o;27599:::-;27765:4;27803:2;27792:9;27788:18;27780:26;;27852:9;27846:4;27842:20;27838:1;27827:9;27823:17;27816:47;27880:131;28006:4;27880:131;:::i;:::-;27872:139;;27599:419;;;:::o;28024:::-;28190:4;28228:2;28217:9;28213:18;28205:26;;28277:9;28271:4;28267:20;28263:1;28252:9;28248:17;28241:47;28305:131;28431:4;28305:131;:::i;:::-;28297:139;;28024:419;;;:::o;28449:222::-;28542:4;28580:2;28569:9;28565:18;28557:26;;28593:71;28661:1;28650:9;28646:17;28637:6;28593:71;:::i;:::-;28449:222;;;;:::o;28677:129::-;28711:6;28738:20;;:::i;:::-;28728:30;;28767:33;28795:4;28787:6;28767:33;:::i;:::-;28677:129;;;:::o;28812:75::-;28845:6;28878:2;28872:9;28862:19;;28812:75;:::o;28893:311::-;28970:4;29060:18;29052:6;29049:30;29046:56;;;29082:18;;:::i;:::-;29046:56;29132:4;29124:6;29120:17;29112:25;;29192:4;29186;29182:15;29174:23;;28893:311;;;:::o;29210:307::-;29271:4;29361:18;29353:6;29350:30;29347:56;;;29383:18;;:::i;:::-;29347:56;29421:29;29443:6;29421:29;:::i;:::-;29413:37;;29505:4;29499;29495:15;29487:23;;29210:307;;;:::o;29523:308::-;29585:4;29675:18;29667:6;29664:30;29661:56;;;29697:18;;:::i;:::-;29661:56;29735:29;29757:6;29735:29;:::i;:::-;29727:37;;29819:4;29813;29809:15;29801:23;;29523:308;;;:::o;29837:132::-;29904:4;29927:3;29919:11;;29957:4;29952:3;29948:14;29940:22;;29837:132;;;:::o;29975:114::-;30042:6;30076:5;30070:12;30060:22;;29975:114;;;:::o;30095:98::-;30146:6;30180:5;30174:12;30164:22;;30095:98;;;:::o;30199:99::-;30251:6;30285:5;30279:12;30269:22;;30199:99;;;:::o;30304:113::-;30374:4;30406;30401:3;30397:14;30389:22;;30304:113;;;:::o;30423:184::-;30522:11;30556:6;30551:3;30544:19;30596:4;30591:3;30587:14;30572:29;;30423:184;;;;:::o;30613:168::-;30696:11;30730:6;30725:3;30718:19;30770:4;30765:3;30761:14;30746:29;;30613:168;;;;:::o;30787:169::-;30871:11;30905:6;30900:3;30893:19;30945:4;30940:3;30936:14;30921:29;;30787:169;;;;:::o;30962:148::-;31064:11;31101:3;31086:18;;30962:148;;;;:::o;31116:305::-;31156:3;31175:20;31193:1;31175:20;:::i;:::-;31170:25;;31209:20;31227:1;31209:20;:::i;:::-;31204:25;;31363:1;31295:66;31291:74;31288:1;31285:81;31282:107;;;31369:18;;:::i;:::-;31282:107;31413:1;31410;31406:9;31399:16;;31116:305;;;;:::o;31427:185::-;31467:1;31484:20;31502:1;31484:20;:::i;:::-;31479:25;;31518:20;31536:1;31518:20;:::i;:::-;31513:25;;31557:1;31547:35;;31562:18;;:::i;:::-;31547:35;31604:1;31601;31597:9;31592:14;;31427:185;;;;:::o;31618:348::-;31658:7;31681:20;31699:1;31681:20;:::i;:::-;31676:25;;31715:20;31733:1;31715:20;:::i;:::-;31710:25;;31903:1;31835:66;31831:74;31828:1;31825:81;31820:1;31813:9;31806:17;31802:105;31799:131;;;31910:18;;:::i;:::-;31799:131;31958:1;31955;31951:9;31940:20;;31618:348;;;;:::o;31972:191::-;32012:4;32032:20;32050:1;32032:20;:::i;:::-;32027:25;;32066:20;32084:1;32066:20;:::i;:::-;32061:25;;32105:1;32102;32099:8;32096:34;;;32110:18;;:::i;:::-;32096:34;32155:1;32152;32148:9;32140:17;;31972:191;;;;:::o;32169:96::-;32206:7;32235:24;32253:5;32235:24;:::i;:::-;32224:35;;32169:96;;;:::o;32271:90::-;32305:7;32348:5;32341:13;32334:21;32323:32;;32271:90;;;:::o;32367:149::-;32403:7;32443:66;32436:5;32432:78;32421:89;;32367:149;;;:::o;32522:126::-;32559:7;32599:42;32592:5;32588:54;32577:65;;32522:126;;;:::o;32654:77::-;32691:7;32720:5;32709:16;;32654:77;;;:::o;32737:154::-;32821:6;32816:3;32811;32798:30;32883:1;32874:6;32869:3;32865:16;32858:27;32737:154;;;:::o;32897:307::-;32965:1;32975:113;32989:6;32986:1;32983:13;32975:113;;;33074:1;33069:3;33065:11;33059:18;33055:1;33050:3;33046:11;33039:39;33011:2;33008:1;33004:10;32999:15;;32975:113;;;33106:6;33103:1;33100:13;33097:101;;;33186:1;33177:6;33172:3;33168:16;33161:27;33097:101;32946:258;32897:307;;;:::o;33210:320::-;33254:6;33291:1;33285:4;33281:12;33271:22;;33338:1;33332:4;33328:12;33359:18;33349:81;;33415:4;33407:6;33403:17;33393:27;;33349:81;33477:2;33469:6;33466:14;33446:18;33443:38;33440:84;;;33496:18;;:::i;:::-;33440:84;33261:269;33210:320;;;:::o;33536:281::-;33619:27;33641:4;33619:27;:::i;:::-;33611:6;33607:40;33749:6;33737:10;33734:22;33713:18;33701:10;33698:34;33695:62;33692:88;;;33760:18;;:::i;:::-;33692:88;33800:10;33796:2;33789:22;33579:238;33536:281;;:::o;33823:233::-;33862:3;33885:24;33903:5;33885:24;:::i;:::-;33876:33;;33931:66;33924:5;33921:77;33918:103;;;34001:18;;:::i;:::-;33918:103;34048:1;34041:5;34037:13;34030:20;;33823:233;;;:::o;34062:176::-;34094:1;34111:20;34129:1;34111:20;:::i;:::-;34106:25;;34145:20;34163:1;34145:20;:::i;:::-;34140:25;;34184:1;34174:35;;34189:18;;:::i;:::-;34174:35;34230:1;34227;34223:9;34218:14;;34062:176;;;;:::o;34244:180::-;34292:77;34289:1;34282:88;34389:4;34386:1;34379:15;34413:4;34410:1;34403:15;34430:180;34478:77;34475:1;34468:88;34575:4;34572:1;34565:15;34599:4;34596:1;34589:15;34616:180;34664:77;34661:1;34654:88;34761:4;34758:1;34751:15;34785:4;34782:1;34775:15;34802:180;34850:77;34847:1;34840:88;34947:4;34944:1;34937:15;34971:4;34968:1;34961:15;34988:180;35036:77;35033:1;35026:88;35133:4;35130:1;35123:15;35157:4;35154:1;35147:15;35174:180;35222:77;35219:1;35212:88;35319:4;35316:1;35309:15;35343:4;35340:1;35333:15;35360:117;35469:1;35466;35459:12;35483:117;35592:1;35589;35582:12;35606:117;35715:1;35712;35705:12;35729:117;35838:1;35835;35828:12;35852:117;35961:1;35958;35951:12;35975:102;36016:6;36067:2;36063:7;36058:2;36051:5;36047:14;36043:28;36033:38;;35975:102;;;:::o;36083:172::-;36223:24;36219:1;36211:6;36207:14;36200:48;36083:172;:::o;36261:165::-;36401:17;36397:1;36389:6;36385:14;36378:41;36261:165;:::o;36432:299::-;36572:34;36568:1;36560:6;36556:14;36549:58;36641:34;36636:2;36628:6;36624:15;36617:59;36710:13;36705:2;36697:6;36693:15;36686:38;36432:299;:::o;36737:223::-;36877:34;36873:1;36865:6;36861:14;36854:58;36946:6;36941:2;36933:6;36929:15;36922:31;36737:223;:::o;36966:225::-;37106:34;37102:1;37094:6;37090:14;37083:58;37175:8;37170:2;37162:6;37158:15;37151:33;36966:225;:::o;37197:181::-;37337:33;37333:1;37325:6;37321:14;37314:57;37197:181;:::o;37384:298::-;37524:34;37520:1;37512:6;37508:14;37501:58;37593:34;37588:2;37580:6;37576:15;37569:59;37662:12;37657:2;37649:6;37645:15;37638:37;37384:298;:::o;37688:221::-;37828:34;37824:1;37816:6;37812:14;37805:58;37897:4;37892:2;37884:6;37880:15;37873:29;37688:221;:::o;37915:172::-;38055:24;38051:1;38043:6;38039:14;38032:48;37915:172;:::o;38093:182::-;38233:34;38229:1;38221:6;38217:14;38210:58;38093:182;:::o;38281:::-;38421:34;38417:1;38409:6;38405:14;38398:58;38281:182;:::o;38469:236::-;38609:34;38605:1;38597:6;38593:14;38586:58;38678:19;38673:2;38665:6;38661:15;38654:44;38469:236;:::o;38711:225::-;38851:34;38847:1;38839:6;38835:14;38828:58;38920:8;38915:2;38907:6;38903:15;38896:33;38711:225;:::o;38942:237::-;39082:34;39078:1;39070:6;39066:14;39059:58;39151:20;39146:2;39138:6;39134:15;39127:45;38942:237;:::o;39185:173::-;39325:25;39321:1;39313:6;39309:14;39302:49;39185:173;:::o;39364:220::-;39504:34;39500:1;39492:6;39488:14;39481:58;39573:3;39568:2;39560:6;39556:15;39549:28;39364:220;:::o;39590:122::-;39663:24;39681:5;39663:24;:::i;:::-;39656:5;39653:35;39643:63;;39702:1;39699;39692:12;39643:63;39590:122;:::o;39718:116::-;39788:21;39803:5;39788:21;:::i;:::-;39781:5;39778:32;39768:60;;39824:1;39821;39814:12;39768:60;39718:116;:::o;39840:120::-;39912:23;39929:5;39912:23;:::i;:::-;39905:5;39902:34;39892:62;;39950:1;39947;39940:12;39892:62;39840:120;:::o;39966:122::-;40039:24;40057:5;40039:24;:::i;:::-;40032:5;40029:35;40019:63;;40078:1;40075;40068:12;40019:63;39966:122;:::o
Swarm Source
ipfs://188300d82a81f57ca55c9c52e0968e93591775e1abd43e1b14859d857b40dd40
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.