Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
276 DDD
Holders
104
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DDDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
DaringDragonDen
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-07-25 */ // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping (uint256 => address) private _owners; // Mapping owner address to token count mapping (address => uint256) private _balances; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden * in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev 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("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: contracts/DaringDragonDen.sol pragma solidity ^0.8.0; contract DaringDragonDen is ERC721Enumerable, Ownable { uint256 public constant MAX_NFT_SUPPLY = 6000; uint public constant MAX_PURCHASABLE = 20; uint256 public constant SALE_START_TIME = 1627239600; // 3pm ET July 25th 2021 uint256 public constant DRAGONS_PRICE = 30000000000000000; // 0.03 ETH string public PROVENANCE_HASH = ""; bool public saleStarted = true; constructor() ERC721("Daring Dragon Den", "DDD") { transferOwnership(0x0b0bed31F64af1f4A17A2F9659b58C430034526f); } function _baseURI() internal view virtual override returns (string memory) { return "https://api.daringdragonden.com/"; } function getTokenURI(uint256 tokenId) public view returns (string memory) { return tokenURI(tokenId); } function mint(uint256 amountToMint) public payable { require(saleStarted == true, "This sale has not started."); require(block.timestamp >= SALE_START_TIME, "Sale has not started."); require(totalSupply() < MAX_NFT_SUPPLY, "All NFTs have been minted."); require(amountToMint > 0, "You must mint at least one dragon."); require(amountToMint <= 20, "You cannot mint more than 20 dragons."); require(totalSupply() + amountToMint <= MAX_NFT_SUPPLY, "The amount of dragons you are trying to mint exceeds the MAX_NFT_SUPPLY."); require(DRAGONS_PRICE * amountToMint == msg.value, "Incorrect Ether value."); for (uint256 i = 0; i < amountToMint; i++) { uint256 mintIndex = totalSupply(); _safeMint(msg.sender, mintIndex); } } function startSale() public onlyOwner { saleStarted = true; } function pauseSale() public onlyOwner { saleStarted = false; } function reserveTokens() public onlyOwner { require(block.timestamp < SALE_START_TIME, "Owner cannot mint tokens after the sale start time."); for (uint256 i = 0; i < 50; i++) { uint256 mintIndex = totalSupply(); _safeMint(msg.sender, mintIndex); } } function setProvenanceHash(string memory _hash) public onlyOwner { PROVENANCE_HASH = _hash; } function withdraw() public payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DRAGONS_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASABLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_START_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"amountToMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveTokens","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":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600b90805190602001906200002b929190620003c5565b506001600c60006101000a81548160ff0219169083151502179055503480156200005457600080fd5b506040518060400160405280601181526020017f446172696e6720447261676f6e2044656e0000000000000000000000000000008152506040518060400160405280600381526020017f44444400000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000d9929190620003c5565b508060019080519060200190620000f2929190620003c5565b505050600062000107620001d160201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001cb730b0bed31f64af1f4a17a2f9659b58c430034526f620001d960201b60201c565b620005d9565b600033905090565b620001e9620001d160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200020f6200039b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000268576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025f9062000541565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620002db576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d2906200051f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003d39062000574565b90600052602060002090601f016020900481019282620003f7576000855562000443565b82601f106200041257805160ff191683800117855562000443565b8280016001018555821562000443579182015b828111156200044257825182559160200191906001019062000425565b5b50905062000452919062000456565b5090565b5b808211156200047157600081600090555060010162000457565b5090565b60006200048460268362000563565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000620004ec60208362000563565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600060208201905081810360008301526200053a8162000475565b9050919050565b600060208201905081810360008301526200055c81620004dd565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200058d57607f821691505b60208210811415620005a457620005a3620005aa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61424780620005e96000396000f3fe6080604052600436106101e35760003560e01c80635c474f9e11610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd1461068e578063e985e9c5146106cb578063f2fde38b14610708578063ff1b655614610731576101e3565b8063a22cb465146105fa578063b5077f4414610623578063b66a0e5d1461064e578063b88d4fde14610665576101e3565b8063715018a6116100d1578063715018a6146105715780638da5cb5b1461058857806395d89b41146105b3578063a0712d68146105de576101e3565b80635c474f9e146104a15780636352211e146104cc5780636f5744531461050957806370a0823114610534576101e3565b806327ac36c41161017a57806342842e0e1161014957806342842e0e146103f957806344dbb571146104225780634f6ccce71461044d57806355367ba91461048a576101e3565b806327ac36c41461035e5780632f745c59146103755780633bb3a24d146103b25780633ccfd60b146103ef576101e3565b806310969523116101b657806310969523146102b6578063119e4398146102df57806318160ddd1461030a57806323b872dd14610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612e9c565b61075c565b60405161021c9190613a05565b60405180910390f35b34801561023157600080fd5b5061023a6107d6565b6040516102479190613a20565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612f2f565b610868565b604051610284919061399e565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612e60565b6108ed565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190612eee565b610a05565b005b3480156102eb57600080fd5b506102f4610a9b565b6040516103019190613d82565b60405180910390f35b34801561031657600080fd5b5061031f610aa0565b60405161032c9190613d82565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190612d5a565b610aad565b005b34801561036a57600080fd5b50610373610b0d565b005b34801561038157600080fd5b5061039c60048036038101906103979190612e60565b610c08565b6040516103a99190613d82565b60405180910390f35b3480156103be57600080fd5b506103d960048036038101906103d49190612f2f565b610cad565b6040516103e69190613a20565b60405180910390f35b6103f7610cbf565b005b34801561040557600080fd5b50610420600480360381019061041b9190612d5a565b610d7b565b005b34801561042e57600080fd5b50610437610d9b565b6040516104449190613d82565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f9190612f2f565b610da3565b6040516104819190613d82565b60405180910390f35b34801561049657600080fd5b5061049f610e3a565b005b3480156104ad57600080fd5b506104b6610ed3565b6040516104c39190613a05565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190612f2f565b610ee6565b604051610500919061399e565b60405180910390f35b34801561051557600080fd5b5061051e610f98565b60405161052b9190613d82565b60405180910390f35b34801561054057600080fd5b5061055b60048036038101906105569190612cf5565b610fa3565b6040516105689190613d82565b60405180910390f35b34801561057d57600080fd5b5061058661105b565b005b34801561059457600080fd5b5061059d611198565b6040516105aa919061399e565b60405180910390f35b3480156105bf57600080fd5b506105c86111c2565b6040516105d59190613a20565b60405180910390f35b6105f860048036038101906105f39190612f2f565b611254565b005b34801561060657600080fd5b50610621600480360381019061061c9190612e24565b6114a7565b005b34801561062f57600080fd5b50610638611628565b6040516106459190613d82565b60405180910390f35b34801561065a57600080fd5b5061066361162e565b005b34801561067157600080fd5b5061068c60048036038101906106879190612da9565b6116c7565b005b34801561069a57600080fd5b506106b560048036038101906106b09190612f2f565b611729565b6040516106c29190613a20565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190612d1e565b6117d0565b6040516106ff9190613a05565b60405180910390f35b34801561071457600080fd5b5061072f600480360381019061072a9190612cf5565b611864565b005b34801561073d57600080fd5b50610746611a10565b6040516107539190613a20565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107cf57506107ce82611a9e565b5b9050919050565b6060600080546107e59061403c565b80601f01602080910402602001604051908101604052809291908181526020018280546108119061403c565b801561085e5780601f106108335761010080835404028352916020019161085e565b820191906000526020600020905b81548152906001019060200180831161084157829003601f168201915b5050505050905090565b600061087382611b80565b6108b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a990613c82565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f882610ee6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096090613d22565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610988611bec565b73ffffffffffffffffffffffffffffffffffffffff1614806109b757506109b6816109b1611bec565b6117d0565b5b6109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed90613be2565b60405180910390fd5b610a008383611bf4565b505050565b610a0d611bec565b73ffffffffffffffffffffffffffffffffffffffff16610a2b611198565b73ffffffffffffffffffffffffffffffffffffffff1614610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7890613ca2565b60405180910390fd5b80600b9080519060200190610a97929190612b19565b5050565b601481565b6000600880549050905090565b610abe610ab8611bec565b82611cad565b610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af490613d42565b60405180910390fd5b610b08838383611d8b565b505050565b610b15611bec565b73ffffffffffffffffffffffffffffffffffffffff16610b33611198565b73ffffffffffffffffffffffffffffffffffffffff1614610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8090613ca2565b60405180910390fd5b6360fdb4b04210610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc690613ba2565b60405180910390fd5b60005b6032811015610c05576000610be5610aa0565b9050610bf13382611fe7565b508080610bfd9061406e565b915050610bd2565b50565b6000610c1383610fa3565b8210610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90613aa2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6060610cb882611729565b9050919050565b610cc7611bec565b73ffffffffffffffffffffffffffffffffffffffff16610ce5611198565b73ffffffffffffffffffffffffffffffffffffffff1614610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3290613ca2565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610d7957600080fd5b565b610d96838383604051806020016040528060008152506116c7565b505050565b6360fdb4b081565b6000610dad610aa0565b8210610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de590613d62565b60405180910390fd5b60088281548110610e28577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e42611bec565b73ffffffffffffffffffffffffffffffffffffffff16610e60611198565b73ffffffffffffffffffffffffffffffffffffffff1614610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead90613ca2565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b600c60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8690613c22565b60405180910390fd5b80915050919050565b666a94d74f43000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b90613c02565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611063611bec565b73ffffffffffffffffffffffffffffffffffffffff16611081611198565b73ffffffffffffffffffffffffffffffffffffffff16146110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce90613ca2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111d19061403c565b80601f01602080910402602001604051908101604052809291908181526020018280546111fd9061403c565b801561124a5780601f1061121f5761010080835404028352916020019161124a565b820191906000526020600020905b81548152906001019060200180831161122d57829003601f168201915b5050505050905090565b60011515600c60009054906101000a900460ff161515146112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190613a62565b60405180910390fd5b6360fdb4b04210156112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890613a82565b60405180910390fd5b6117706112fc610aa0565b1061133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390613b82565b60405180910390fd5b6000811161137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690613ae2565b60405180910390fd5b60148111156113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90613d02565b60405180910390fd5b611770816113cf610aa0565b6113d99190613e71565b111561141a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141190613a42565b60405180910390fd5b3481666a94d74f43000061142e9190613ef8565b1461146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590613c42565b60405180910390fd5b60005b818110156114a3576000611483610aa0565b905061148f3382611fe7565b50808061149b9061406e565b915050611471565b5050565b6114af611bec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561151d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151490613b62565b60405180910390fd5b806005600061152a611bec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115d7611bec565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161161c9190613a05565b60405180910390a35050565b61177081565b611636611bec565b73ffffffffffffffffffffffffffffffffffffffff16611654611198565b73ffffffffffffffffffffffffffffffffffffffff16146116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190613ca2565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b6116d86116d2611bec565b83611cad565b611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170e90613d42565b60405180910390fd5b61172384848484612005565b50505050565b606061173482611b80565b611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176a90613ce2565b60405180910390fd5b600061177d612061565b9050600081511161179d57604051806020016040528060008152506117c8565b806117a78461209e565b6040516020016117b892919061397a565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61186c611bec565b73ffffffffffffffffffffffffffffffffffffffff1661188a611198565b73ffffffffffffffffffffffffffffffffffffffff16146118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d790613ca2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194790613b02565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b8054611a1d9061403c565b80601f0160208091040260200160405190810160405280929190818152602001828054611a499061403c565b8015611a965780601f10611a6b57610100808354040283529160200191611a96565b820191906000526020600020905b815481529060010190602001808311611a7957829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b6957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b795750611b788261224b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c6783610ee6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cb882611b80565b611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee90613bc2565b60405180910390fd5b6000611d0283610ee6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d7157508373ffffffffffffffffffffffffffffffffffffffff16611d5984610868565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d825750611d8181856117d0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dab82610ee6565b73ffffffffffffffffffffffffffffffffffffffff1614611e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df890613cc2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6890613b42565b60405180910390fd5b611e7c8383836122b5565b611e87600082611bf4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed79190613f52565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f2e9190613e71565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6120018282604051806020016040528060008152506123c9565b5050565b612010848484611d8b565b61201c84848484612424565b61205b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205290613ac2565b60405180910390fd5b50505050565b60606040518060400160405280602081526020017f68747470733a2f2f6170692e646172696e67647261676f6e64656e2e636f6d2f815250905090565b606060008214156120e6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612246565b600082905060005b600082146121185780806121019061406e565b915050600a826121119190613ec7565b91506120ee565b60008167ffffffffffffffff81111561215a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561218c5781602001600182028036833780820191505090505b5090505b6000851461223f576001826121a59190613f52565b9150600a856121b491906140b7565b60306121c09190613e71565b60f81b8183815181106121fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122389190613ec7565b9450612190565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122c08383836125bb565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612303576122fe816125c0565b612342565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612341576123408382612609565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123855761238081612776565b6123c4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123c3576123c282826128b9565b5b5b505050565b6123d38383612938565b6123e06000848484612424565b61241f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241690613ac2565b60405180910390fd5b505050565b60006124458473ffffffffffffffffffffffffffffffffffffffff16612b06565b156125ae578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261246e611bec565b8786866040518563ffffffff1660e01b815260040161249094939291906139b9565b602060405180830381600087803b1580156124aa57600080fd5b505af19250505080156124db57506040513d601f19601f820116820180604052508101906124d89190612ec5565b60015b61255e573d806000811461250b576040519150601f19603f3d011682016040523d82523d6000602084013e612510565b606091505b50600081511415612556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254d90613ac2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125b3565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161261684610fa3565b6126209190613f52565b9050600060076000848152602001908152602001600020549050818114612705576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061278a9190613f52565b90506000600960008481526020019081526020016000205490506000600883815481106127e0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612828577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061289d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006128c483610fa3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299f90613c62565b60405180910390fd5b6129b181611b80565b156129f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e890613b22565b60405180910390fd5b6129fd600083836122b5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a4d9190613e71565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612b259061403c565b90600052602060002090601f016020900481019282612b475760008555612b8e565b82601f10612b6057805160ff1916838001178555612b8e565b82800160010185558215612b8e579182015b82811115612b8d578251825591602001919060010190612b72565b5b509050612b9b9190612b9f565b5090565b5b80821115612bb8576000816000905550600101612ba0565b5090565b6000612bcf612bca84613dce565b613d9d565b905082815260208101848484011115612be757600080fd5b612bf2848285613ffa565b509392505050565b6000612c0d612c0884613dfe565b613d9d565b905082815260208101848484011115612c2557600080fd5b612c30848285613ffa565b509392505050565b600081359050612c47816141b5565b92915050565b600081359050612c5c816141cc565b92915050565b600081359050612c71816141e3565b92915050565b600081519050612c86816141e3565b92915050565b600082601f830112612c9d57600080fd5b8135612cad848260208601612bbc565b91505092915050565b600082601f830112612cc757600080fd5b8135612cd7848260208601612bfa565b91505092915050565b600081359050612cef816141fa565b92915050565b600060208284031215612d0757600080fd5b6000612d1584828501612c38565b91505092915050565b60008060408385031215612d3157600080fd5b6000612d3f85828601612c38565b9250506020612d5085828601612c38565b9150509250929050565b600080600060608486031215612d6f57600080fd5b6000612d7d86828701612c38565b9350506020612d8e86828701612c38565b9250506040612d9f86828701612ce0565b9150509250925092565b60008060008060808587031215612dbf57600080fd5b6000612dcd87828801612c38565b9450506020612dde87828801612c38565b9350506040612def87828801612ce0565b925050606085013567ffffffffffffffff811115612e0c57600080fd5b612e1887828801612c8c565b91505092959194509250565b60008060408385031215612e3757600080fd5b6000612e4585828601612c38565b9250506020612e5685828601612c4d565b9150509250929050565b60008060408385031215612e7357600080fd5b6000612e8185828601612c38565b9250506020612e9285828601612ce0565b9150509250929050565b600060208284031215612eae57600080fd5b6000612ebc84828501612c62565b91505092915050565b600060208284031215612ed757600080fd5b6000612ee584828501612c77565b91505092915050565b600060208284031215612f0057600080fd5b600082013567ffffffffffffffff811115612f1a57600080fd5b612f2684828501612cb6565b91505092915050565b600060208284031215612f4157600080fd5b6000612f4f84828501612ce0565b91505092915050565b612f6181613f86565b82525050565b612f7081613f98565b82525050565b6000612f8182613e2e565b612f8b8185613e44565b9350612f9b818560208601614009565b612fa4816141a4565b840191505092915050565b6000612fba82613e39565b612fc48185613e55565b9350612fd4818560208601614009565b612fdd816141a4565b840191505092915050565b6000612ff382613e39565b612ffd8185613e66565b935061300d818560208601614009565b80840191505092915050565b6000613026604883613e55565b91507f54686520616d6f756e74206f6620647261676f6e7320796f752061726520747260008301527f79696e6720746f206d696e74206578636565647320746865204d41585f4e465460208301527f5f535550504c592e0000000000000000000000000000000000000000000000006040830152606082019050919050565b60006130b2601a83613e55565b91507f546869732073616c6520686173206e6f7420737461727465642e0000000000006000830152602082019050919050565b60006130f2601583613e55565b91507f53616c6520686173206e6f7420737461727465642e00000000000000000000006000830152602082019050919050565b6000613132602b83613e55565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613198603283613e55565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006131fe602283613e55565b91507f596f75206d757374206d696e74206174206c65617374206f6e6520647261676f60008301527f6e2e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613264602683613e55565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132ca601c83613e55565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061330a602483613e55565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613370601983613e55565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006133b0601a83613e55565b91507f416c6c204e4654732068617665206265656e206d696e7465642e0000000000006000830152602082019050919050565b60006133f0603383613e55565b91507f4f776e65722063616e6e6f74206d696e7420746f6b656e73206166746572207460008301527f68652073616c652073746172742074696d652e000000000000000000000000006020830152604082019050919050565b6000613456602c83613e55565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006134bc603883613e55565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613522602a83613e55565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613588602983613e55565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006135ee601683613e55565b91507f496e636f72726563742045746865722076616c75652e000000000000000000006000830152602082019050919050565b600061362e602083613e55565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061366e602c83613e55565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006136d4602083613e55565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613714602983613e55565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061377a602f83613e55565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006137e0602583613e55565b91507f596f752063616e6e6f74206d696e74206d6f7265207468616e2032302064726160008301527f676f6e732e0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613846602183613e55565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138ac603183613e55565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613912602c83613e55565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61397481613ff0565b82525050565b60006139868285612fe8565b91506139928284612fe8565b91508190509392505050565b60006020820190506139b36000830184612f58565b92915050565b60006080820190506139ce6000830187612f58565b6139db6020830186612f58565b6139e8604083018561396b565b81810360608301526139fa8184612f76565b905095945050505050565b6000602082019050613a1a6000830184612f67565b92915050565b60006020820190508181036000830152613a3a8184612faf565b905092915050565b60006020820190508181036000830152613a5b81613019565b9050919050565b60006020820190508181036000830152613a7b816130a5565b9050919050565b60006020820190508181036000830152613a9b816130e5565b9050919050565b60006020820190508181036000830152613abb81613125565b9050919050565b60006020820190508181036000830152613adb8161318b565b9050919050565b60006020820190508181036000830152613afb816131f1565b9050919050565b60006020820190508181036000830152613b1b81613257565b9050919050565b60006020820190508181036000830152613b3b816132bd565b9050919050565b60006020820190508181036000830152613b5b816132fd565b9050919050565b60006020820190508181036000830152613b7b81613363565b9050919050565b60006020820190508181036000830152613b9b816133a3565b9050919050565b60006020820190508181036000830152613bbb816133e3565b9050919050565b60006020820190508181036000830152613bdb81613449565b9050919050565b60006020820190508181036000830152613bfb816134af565b9050919050565b60006020820190508181036000830152613c1b81613515565b9050919050565b60006020820190508181036000830152613c3b8161357b565b9050919050565b60006020820190508181036000830152613c5b816135e1565b9050919050565b60006020820190508181036000830152613c7b81613621565b9050919050565b60006020820190508181036000830152613c9b81613661565b9050919050565b60006020820190508181036000830152613cbb816136c7565b9050919050565b60006020820190508181036000830152613cdb81613707565b9050919050565b60006020820190508181036000830152613cfb8161376d565b9050919050565b60006020820190508181036000830152613d1b816137d3565b9050919050565b60006020820190508181036000830152613d3b81613839565b9050919050565b60006020820190508181036000830152613d5b8161389f565b9050919050565b60006020820190508181036000830152613d7b81613905565b9050919050565b6000602082019050613d97600083018461396b565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613dc457613dc3614175565b5b8060405250919050565b600067ffffffffffffffff821115613de957613de8614175565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613e1957613e18614175565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e7c82613ff0565b9150613e8783613ff0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ebc57613ebb6140e8565b5b828201905092915050565b6000613ed282613ff0565b9150613edd83613ff0565b925082613eed57613eec614117565b5b828204905092915050565b6000613f0382613ff0565b9150613f0e83613ff0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f4757613f466140e8565b5b828202905092915050565b6000613f5d82613ff0565b9150613f6883613ff0565b925082821015613f7b57613f7a6140e8565b5b828203905092915050565b6000613f9182613fd0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561402757808201518184015260208101905061400c565b83811115614036576000848401525b50505050565b6000600282049050600182168061405457607f821691505b6020821081141561406857614067614146565b5b50919050565b600061407982613ff0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140ac576140ab6140e8565b5b600182019050919050565b60006140c282613ff0565b91506140cd83613ff0565b9250826140dd576140dc614117565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6141be81613f86565b81146141c957600080fd5b50565b6141d581613f98565b81146141e057600080fd5b50565b6141ec81613fa4565b81146141f757600080fd5b50565b61420381613ff0565b811461420e57600080fd5b5056fea26469706673582212205d063a651333d5b7a05c262a89f79cfb2629eb11102d7d086bfbae448163b88264736f6c63430008000033
Deployed Bytecode
0x6080604052600436106101e35760003560e01c80635c474f9e11610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd1461068e578063e985e9c5146106cb578063f2fde38b14610708578063ff1b655614610731576101e3565b8063a22cb465146105fa578063b5077f4414610623578063b66a0e5d1461064e578063b88d4fde14610665576101e3565b8063715018a6116100d1578063715018a6146105715780638da5cb5b1461058857806395d89b41146105b3578063a0712d68146105de576101e3565b80635c474f9e146104a15780636352211e146104cc5780636f5744531461050957806370a0823114610534576101e3565b806327ac36c41161017a57806342842e0e1161014957806342842e0e146103f957806344dbb571146104225780634f6ccce71461044d57806355367ba91461048a576101e3565b806327ac36c41461035e5780632f745c59146103755780633bb3a24d146103b25780633ccfd60b146103ef576101e3565b806310969523116101b657806310969523146102b6578063119e4398146102df57806318160ddd1461030a57806323b872dd14610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612e9c565b61075c565b60405161021c9190613a05565b60405180910390f35b34801561023157600080fd5b5061023a6107d6565b6040516102479190613a20565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612f2f565b610868565b604051610284919061399e565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612e60565b6108ed565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190612eee565b610a05565b005b3480156102eb57600080fd5b506102f4610a9b565b6040516103019190613d82565b60405180910390f35b34801561031657600080fd5b5061031f610aa0565b60405161032c9190613d82565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190612d5a565b610aad565b005b34801561036a57600080fd5b50610373610b0d565b005b34801561038157600080fd5b5061039c60048036038101906103979190612e60565b610c08565b6040516103a99190613d82565b60405180910390f35b3480156103be57600080fd5b506103d960048036038101906103d49190612f2f565b610cad565b6040516103e69190613a20565b60405180910390f35b6103f7610cbf565b005b34801561040557600080fd5b50610420600480360381019061041b9190612d5a565b610d7b565b005b34801561042e57600080fd5b50610437610d9b565b6040516104449190613d82565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f9190612f2f565b610da3565b6040516104819190613d82565b60405180910390f35b34801561049657600080fd5b5061049f610e3a565b005b3480156104ad57600080fd5b506104b6610ed3565b6040516104c39190613a05565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190612f2f565b610ee6565b604051610500919061399e565b60405180910390f35b34801561051557600080fd5b5061051e610f98565b60405161052b9190613d82565b60405180910390f35b34801561054057600080fd5b5061055b60048036038101906105569190612cf5565b610fa3565b6040516105689190613d82565b60405180910390f35b34801561057d57600080fd5b5061058661105b565b005b34801561059457600080fd5b5061059d611198565b6040516105aa919061399e565b60405180910390f35b3480156105bf57600080fd5b506105c86111c2565b6040516105d59190613a20565b60405180910390f35b6105f860048036038101906105f39190612f2f565b611254565b005b34801561060657600080fd5b50610621600480360381019061061c9190612e24565b6114a7565b005b34801561062f57600080fd5b50610638611628565b6040516106459190613d82565b60405180910390f35b34801561065a57600080fd5b5061066361162e565b005b34801561067157600080fd5b5061068c60048036038101906106879190612da9565b6116c7565b005b34801561069a57600080fd5b506106b560048036038101906106b09190612f2f565b611729565b6040516106c29190613a20565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190612d1e565b6117d0565b6040516106ff9190613a05565b60405180910390f35b34801561071457600080fd5b5061072f600480360381019061072a9190612cf5565b611864565b005b34801561073d57600080fd5b50610746611a10565b6040516107539190613a20565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107cf57506107ce82611a9e565b5b9050919050565b6060600080546107e59061403c565b80601f01602080910402602001604051908101604052809291908181526020018280546108119061403c565b801561085e5780601f106108335761010080835404028352916020019161085e565b820191906000526020600020905b81548152906001019060200180831161084157829003601f168201915b5050505050905090565b600061087382611b80565b6108b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a990613c82565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f882610ee6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096090613d22565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610988611bec565b73ffffffffffffffffffffffffffffffffffffffff1614806109b757506109b6816109b1611bec565b6117d0565b5b6109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed90613be2565b60405180910390fd5b610a008383611bf4565b505050565b610a0d611bec565b73ffffffffffffffffffffffffffffffffffffffff16610a2b611198565b73ffffffffffffffffffffffffffffffffffffffff1614610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7890613ca2565b60405180910390fd5b80600b9080519060200190610a97929190612b19565b5050565b601481565b6000600880549050905090565b610abe610ab8611bec565b82611cad565b610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af490613d42565b60405180910390fd5b610b08838383611d8b565b505050565b610b15611bec565b73ffffffffffffffffffffffffffffffffffffffff16610b33611198565b73ffffffffffffffffffffffffffffffffffffffff1614610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8090613ca2565b60405180910390fd5b6360fdb4b04210610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc690613ba2565b60405180910390fd5b60005b6032811015610c05576000610be5610aa0565b9050610bf13382611fe7565b508080610bfd9061406e565b915050610bd2565b50565b6000610c1383610fa3565b8210610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90613aa2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6060610cb882611729565b9050919050565b610cc7611bec565b73ffffffffffffffffffffffffffffffffffffffff16610ce5611198565b73ffffffffffffffffffffffffffffffffffffffff1614610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3290613ca2565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610d7957600080fd5b565b610d96838383604051806020016040528060008152506116c7565b505050565b6360fdb4b081565b6000610dad610aa0565b8210610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de590613d62565b60405180910390fd5b60088281548110610e28577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e42611bec565b73ffffffffffffffffffffffffffffffffffffffff16610e60611198565b73ffffffffffffffffffffffffffffffffffffffff1614610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead90613ca2565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b600c60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8690613c22565b60405180910390fd5b80915050919050565b666a94d74f43000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b90613c02565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611063611bec565b73ffffffffffffffffffffffffffffffffffffffff16611081611198565b73ffffffffffffffffffffffffffffffffffffffff16146110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce90613ca2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111d19061403c565b80601f01602080910402602001604051908101604052809291908181526020018280546111fd9061403c565b801561124a5780601f1061121f5761010080835404028352916020019161124a565b820191906000526020600020905b81548152906001019060200180831161122d57829003601f168201915b5050505050905090565b60011515600c60009054906101000a900460ff161515146112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190613a62565b60405180910390fd5b6360fdb4b04210156112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890613a82565b60405180910390fd5b6117706112fc610aa0565b1061133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390613b82565b60405180910390fd5b6000811161137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690613ae2565b60405180910390fd5b60148111156113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90613d02565b60405180910390fd5b611770816113cf610aa0565b6113d99190613e71565b111561141a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141190613a42565b60405180910390fd5b3481666a94d74f43000061142e9190613ef8565b1461146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590613c42565b60405180910390fd5b60005b818110156114a3576000611483610aa0565b905061148f3382611fe7565b50808061149b9061406e565b915050611471565b5050565b6114af611bec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561151d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151490613b62565b60405180910390fd5b806005600061152a611bec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115d7611bec565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161161c9190613a05565b60405180910390a35050565b61177081565b611636611bec565b73ffffffffffffffffffffffffffffffffffffffff16611654611198565b73ffffffffffffffffffffffffffffffffffffffff16146116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190613ca2565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b6116d86116d2611bec565b83611cad565b611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170e90613d42565b60405180910390fd5b61172384848484612005565b50505050565b606061173482611b80565b611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176a90613ce2565b60405180910390fd5b600061177d612061565b9050600081511161179d57604051806020016040528060008152506117c8565b806117a78461209e565b6040516020016117b892919061397a565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61186c611bec565b73ffffffffffffffffffffffffffffffffffffffff1661188a611198565b73ffffffffffffffffffffffffffffffffffffffff16146118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d790613ca2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194790613b02565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b8054611a1d9061403c565b80601f0160208091040260200160405190810160405280929190818152602001828054611a499061403c565b8015611a965780601f10611a6b57610100808354040283529160200191611a96565b820191906000526020600020905b815481529060010190602001808311611a7957829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b6957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b795750611b788261224b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c6783610ee6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cb882611b80565b611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee90613bc2565b60405180910390fd5b6000611d0283610ee6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d7157508373ffffffffffffffffffffffffffffffffffffffff16611d5984610868565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d825750611d8181856117d0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dab82610ee6565b73ffffffffffffffffffffffffffffffffffffffff1614611e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df890613cc2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6890613b42565b60405180910390fd5b611e7c8383836122b5565b611e87600082611bf4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed79190613f52565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f2e9190613e71565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6120018282604051806020016040528060008152506123c9565b5050565b612010848484611d8b565b61201c84848484612424565b61205b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205290613ac2565b60405180910390fd5b50505050565b60606040518060400160405280602081526020017f68747470733a2f2f6170692e646172696e67647261676f6e64656e2e636f6d2f815250905090565b606060008214156120e6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612246565b600082905060005b600082146121185780806121019061406e565b915050600a826121119190613ec7565b91506120ee565b60008167ffffffffffffffff81111561215a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561218c5781602001600182028036833780820191505090505b5090505b6000851461223f576001826121a59190613f52565b9150600a856121b491906140b7565b60306121c09190613e71565b60f81b8183815181106121fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122389190613ec7565b9450612190565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122c08383836125bb565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612303576122fe816125c0565b612342565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612341576123408382612609565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123855761238081612776565b6123c4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123c3576123c282826128b9565b5b5b505050565b6123d38383612938565b6123e06000848484612424565b61241f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241690613ac2565b60405180910390fd5b505050565b60006124458473ffffffffffffffffffffffffffffffffffffffff16612b06565b156125ae578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261246e611bec565b8786866040518563ffffffff1660e01b815260040161249094939291906139b9565b602060405180830381600087803b1580156124aa57600080fd5b505af19250505080156124db57506040513d601f19601f820116820180604052508101906124d89190612ec5565b60015b61255e573d806000811461250b576040519150601f19603f3d011682016040523d82523d6000602084013e612510565b606091505b50600081511415612556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254d90613ac2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125b3565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161261684610fa3565b6126209190613f52565b9050600060076000848152602001908152602001600020549050818114612705576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061278a9190613f52565b90506000600960008481526020019081526020016000205490506000600883815481106127e0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612828577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061289d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006128c483610fa3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299f90613c62565b60405180910390fd5b6129b181611b80565b156129f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e890613b22565b60405180910390fd5b6129fd600083836122b5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a4d9190613e71565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612b259061403c565b90600052602060002090601f016020900481019282612b475760008555612b8e565b82601f10612b6057805160ff1916838001178555612b8e565b82800160010185558215612b8e579182015b82811115612b8d578251825591602001919060010190612b72565b5b509050612b9b9190612b9f565b5090565b5b80821115612bb8576000816000905550600101612ba0565b5090565b6000612bcf612bca84613dce565b613d9d565b905082815260208101848484011115612be757600080fd5b612bf2848285613ffa565b509392505050565b6000612c0d612c0884613dfe565b613d9d565b905082815260208101848484011115612c2557600080fd5b612c30848285613ffa565b509392505050565b600081359050612c47816141b5565b92915050565b600081359050612c5c816141cc565b92915050565b600081359050612c71816141e3565b92915050565b600081519050612c86816141e3565b92915050565b600082601f830112612c9d57600080fd5b8135612cad848260208601612bbc565b91505092915050565b600082601f830112612cc757600080fd5b8135612cd7848260208601612bfa565b91505092915050565b600081359050612cef816141fa565b92915050565b600060208284031215612d0757600080fd5b6000612d1584828501612c38565b91505092915050565b60008060408385031215612d3157600080fd5b6000612d3f85828601612c38565b9250506020612d5085828601612c38565b9150509250929050565b600080600060608486031215612d6f57600080fd5b6000612d7d86828701612c38565b9350506020612d8e86828701612c38565b9250506040612d9f86828701612ce0565b9150509250925092565b60008060008060808587031215612dbf57600080fd5b6000612dcd87828801612c38565b9450506020612dde87828801612c38565b9350506040612def87828801612ce0565b925050606085013567ffffffffffffffff811115612e0c57600080fd5b612e1887828801612c8c565b91505092959194509250565b60008060408385031215612e3757600080fd5b6000612e4585828601612c38565b9250506020612e5685828601612c4d565b9150509250929050565b60008060408385031215612e7357600080fd5b6000612e8185828601612c38565b9250506020612e9285828601612ce0565b9150509250929050565b600060208284031215612eae57600080fd5b6000612ebc84828501612c62565b91505092915050565b600060208284031215612ed757600080fd5b6000612ee584828501612c77565b91505092915050565b600060208284031215612f0057600080fd5b600082013567ffffffffffffffff811115612f1a57600080fd5b612f2684828501612cb6565b91505092915050565b600060208284031215612f4157600080fd5b6000612f4f84828501612ce0565b91505092915050565b612f6181613f86565b82525050565b612f7081613f98565b82525050565b6000612f8182613e2e565b612f8b8185613e44565b9350612f9b818560208601614009565b612fa4816141a4565b840191505092915050565b6000612fba82613e39565b612fc48185613e55565b9350612fd4818560208601614009565b612fdd816141a4565b840191505092915050565b6000612ff382613e39565b612ffd8185613e66565b935061300d818560208601614009565b80840191505092915050565b6000613026604883613e55565b91507f54686520616d6f756e74206f6620647261676f6e7320796f752061726520747260008301527f79696e6720746f206d696e74206578636565647320746865204d41585f4e465460208301527f5f535550504c592e0000000000000000000000000000000000000000000000006040830152606082019050919050565b60006130b2601a83613e55565b91507f546869732073616c6520686173206e6f7420737461727465642e0000000000006000830152602082019050919050565b60006130f2601583613e55565b91507f53616c6520686173206e6f7420737461727465642e00000000000000000000006000830152602082019050919050565b6000613132602b83613e55565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613198603283613e55565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006131fe602283613e55565b91507f596f75206d757374206d696e74206174206c65617374206f6e6520647261676f60008301527f6e2e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613264602683613e55565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132ca601c83613e55565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061330a602483613e55565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613370601983613e55565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006133b0601a83613e55565b91507f416c6c204e4654732068617665206265656e206d696e7465642e0000000000006000830152602082019050919050565b60006133f0603383613e55565b91507f4f776e65722063616e6e6f74206d696e7420746f6b656e73206166746572207460008301527f68652073616c652073746172742074696d652e000000000000000000000000006020830152604082019050919050565b6000613456602c83613e55565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006134bc603883613e55565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613522602a83613e55565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613588602983613e55565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006135ee601683613e55565b91507f496e636f72726563742045746865722076616c75652e000000000000000000006000830152602082019050919050565b600061362e602083613e55565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061366e602c83613e55565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006136d4602083613e55565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613714602983613e55565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061377a602f83613e55565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006137e0602583613e55565b91507f596f752063616e6e6f74206d696e74206d6f7265207468616e2032302064726160008301527f676f6e732e0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613846602183613e55565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138ac603183613e55565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613912602c83613e55565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61397481613ff0565b82525050565b60006139868285612fe8565b91506139928284612fe8565b91508190509392505050565b60006020820190506139b36000830184612f58565b92915050565b60006080820190506139ce6000830187612f58565b6139db6020830186612f58565b6139e8604083018561396b565b81810360608301526139fa8184612f76565b905095945050505050565b6000602082019050613a1a6000830184612f67565b92915050565b60006020820190508181036000830152613a3a8184612faf565b905092915050565b60006020820190508181036000830152613a5b81613019565b9050919050565b60006020820190508181036000830152613a7b816130a5565b9050919050565b60006020820190508181036000830152613a9b816130e5565b9050919050565b60006020820190508181036000830152613abb81613125565b9050919050565b60006020820190508181036000830152613adb8161318b565b9050919050565b60006020820190508181036000830152613afb816131f1565b9050919050565b60006020820190508181036000830152613b1b81613257565b9050919050565b60006020820190508181036000830152613b3b816132bd565b9050919050565b60006020820190508181036000830152613b5b816132fd565b9050919050565b60006020820190508181036000830152613b7b81613363565b9050919050565b60006020820190508181036000830152613b9b816133a3565b9050919050565b60006020820190508181036000830152613bbb816133e3565b9050919050565b60006020820190508181036000830152613bdb81613449565b9050919050565b60006020820190508181036000830152613bfb816134af565b9050919050565b60006020820190508181036000830152613c1b81613515565b9050919050565b60006020820190508181036000830152613c3b8161357b565b9050919050565b60006020820190508181036000830152613c5b816135e1565b9050919050565b60006020820190508181036000830152613c7b81613621565b9050919050565b60006020820190508181036000830152613c9b81613661565b9050919050565b60006020820190508181036000830152613cbb816136c7565b9050919050565b60006020820190508181036000830152613cdb81613707565b9050919050565b60006020820190508181036000830152613cfb8161376d565b9050919050565b60006020820190508181036000830152613d1b816137d3565b9050919050565b60006020820190508181036000830152613d3b81613839565b9050919050565b60006020820190508181036000830152613d5b8161389f565b9050919050565b60006020820190508181036000830152613d7b81613905565b9050919050565b6000602082019050613d97600083018461396b565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613dc457613dc3614175565b5b8060405250919050565b600067ffffffffffffffff821115613de957613de8614175565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613e1957613e18614175565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e7c82613ff0565b9150613e8783613ff0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ebc57613ebb6140e8565b5b828201905092915050565b6000613ed282613ff0565b9150613edd83613ff0565b925082613eed57613eec614117565b5b828204905092915050565b6000613f0382613ff0565b9150613f0e83613ff0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f4757613f466140e8565b5b828202905092915050565b6000613f5d82613ff0565b9150613f6883613ff0565b925082821015613f7b57613f7a6140e8565b5b828203905092915050565b6000613f9182613fd0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561402757808201518184015260208101905061400c565b83811115614036576000848401525b50505050565b6000600282049050600182168061405457607f821691505b6020821081141561406857614067614146565b5b50919050565b600061407982613ff0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140ac576140ab6140e8565b5b600182019050919050565b60006140c282613ff0565b91506140cd83613ff0565b9250826140dd576140dc614117565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6141be81613f86565b81146141c957600080fd5b50565b6141d581613f98565b81146141e057600080fd5b50565b6141ec81613fa4565b81146141f757600080fd5b50565b61420381613ff0565b811461420e57600080fd5b5056fea26469706673582212205d063a651333d5b7a05c262a89f79cfb2629eb11102d7d086bfbae448163b88264736f6c63430008000033
Deployed Bytecode Sourcemap
42827:2374:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34324:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21529:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22989:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22526:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44963:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42940:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34977:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23879:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44649:306;;;;;;;;;;;;;:::i;:::-;;34645:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43511:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45078:120;;;:::i;:::-;;24255:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42988:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35167:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44566:76;;;;;;;;;;;;;:::i;:::-;;43192:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21223:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43073:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20953:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42196:148;;;;;;;;;;;;;:::i;:::-;;41545:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21698:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43635:840;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23282:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42888:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44483:75;;;;;;;;;;;;;:::i;:::-;;24477:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21873:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23648:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42499:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43149:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34324:237;34426:4;34465:35;34450:50;;;:11;:50;;;;:103;;;;34517:36;34541:11;34517:23;:36::i;:::-;34450:103;34443:110;;34324:237;;;:::o;21529:100::-;21583:13;21616:5;21609:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21529:100;:::o;22989:221::-;23065:7;23093:16;23101:7;23093;:16::i;:::-;23085:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23178:15;:24;23194:7;23178:24;;;;;;;;;;;;;;;;;;;;;23171:31;;22989:221;;;:::o;22526:397::-;22607:13;22623:23;22638:7;22623:14;:23::i;:::-;22607:39;;22671:5;22665:11;;:2;:11;;;;22657:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22751:5;22735:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22760:37;22777:5;22784:12;:10;:12::i;:::-;22760:16;:37::i;:::-;22735:62;22727:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;22894:21;22903:2;22907:7;22894:8;:21::i;:::-;22526:397;;;:::o;44963:107::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45057:5:::1;45039:15;:23;;;;;;;;;;;;:::i;:::-;;44963:107:::0;:::o;42940:41::-;42979:2;42940:41;:::o;34977:113::-;35038:7;35065:10;:17;;;;35058:24;;34977:113;:::o;23879:305::-;24040:41;24059:12;:10;:12::i;:::-;24073:7;24040:18;:41::i;:::-;24032:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24148:28;24158:4;24164:2;24168:7;24148:9;:28::i;:::-;23879:305;;;:::o;44649:306::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43030:10:::1;44711:15;:33;44703:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;44817:9;44812:137;44836:2;44832:1;:6;44812:137;;;44859:17;44879:13;:11;:13::i;:::-;44859:33;;44906:32;44916:10;44928:9;44906;:32::i;:::-;44812:137;44840:3;;;;;:::i;:::-;;;;44812:137;;;;44649:306::o:0;34645:256::-;34742:7;34778:23;34795:5;34778:16;:23::i;:::-;34770:5;:31;34762:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34867:12;:19;34880:5;34867:19;;;;;;;;;;;;;;;:26;34887:5;34867:26;;;;;;;;;;;;34860:33;;34645:256;;;;:::o;43511:117::-;43570:13;43603:17;43612:7;43603:8;:17::i;:::-;43596:24;;43511:117;;;:::o;45078:120::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45150:10:::1;45142:24;;:47;45167:21;45142:47;;;;;;;;;;;;;;;;;;;;;;;45134:56;;;::::0;::::1;;45078:120::o:0;24255:151::-;24359:39;24376:4;24382:2;24386:7;24359:39;;;;;;;;;;;;:16;:39::i;:::-;24255:151;;;:::o;42988:52::-;43030:10;42988:52;:::o;35167:233::-;35242:7;35278:30;:28;:30::i;:::-;35270:5;:38;35262:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35375:10;35386:5;35375:17;;;;;;;;;;;;;;;;;;;;;;;;35368:24;;35167:233;;;:::o;44566:76::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44629:5:::1;44615:11;;:19;;;;;;;;;;;;;;;;;;44566:76::o:0;43192:30::-;;;;;;;;;;;;;:::o;21223:239::-;21295:7;21315:13;21331:7;:16;21339:7;21331:16;;;;;;;;;;;;;;;;;;;;;21315:32;;21383:1;21366:19;;:5;:19;;;;21358:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21449:5;21442:12;;;21223:239;;;:::o;43073:57::-;43113:17;43073:57;:::o;20953:208::-;21025:7;21070:1;21053:19;;:5;:19;;;;21045:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21137:9;:16;21147:5;21137:16;;;;;;;;;;;;;;;;21130:23;;20953:208;;;:::o;42196:148::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42303:1:::1;42266:40;;42287:6;;;;;;;;;;;42266:40;;;;;;;;;;;;42334:1;42317:6;;:19;;;;;;;;;;;;;;;;;;42196:148::o:0;41545:87::-;41591:7;41618:6;;;;;;;;;;;41611:13;;41545:87;:::o;21698:104::-;21754:13;21787:7;21780:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21698:104;:::o;43635:840::-;43720:4;43705:19;;:11;;;;;;;;;;;:19;;;43697:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43030:10;43774:15;:34;;43766:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42929:4;43853:13;:11;:13::i;:::-;:30;43845:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43948:1;43933:12;:16;43925:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;44023:2;44007:12;:18;;43999:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42929:4;44102:12;44086:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:46;;44078:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;44270:9;44254:12;43113:17;44238:28;;;;:::i;:::-;:41;44230:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;44324:9;44319:150;44343:12;44339:1;:16;44319:150;;;44377:17;44397:13;:11;:13::i;:::-;44377:33;;44425:32;44435:10;44447:9;44425;:32::i;:::-;44319:150;44357:3;;;;;:::i;:::-;;;;44319:150;;;;43635:840;:::o;23282:295::-;23397:12;:10;:12::i;:::-;23385:24;;:8;:24;;;;23377:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23497:8;23452:18;:32;23471:12;:10;:12::i;:::-;23452:32;;;;;;;;;;;;;;;:42;23485:8;23452:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23550:8;23521:48;;23536:12;:10;:12::i;:::-;23521:48;;;23560:8;23521:48;;;;;;:::i;:::-;;;;;;;;23282:295;;:::o;42888:45::-;42929:4;42888:45;:::o;44483:75::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44546:4:::1;44532:11;;:18;;;;;;;;;;;;;;;;;;44483:75::o:0;24477:285::-;24609:41;24628:12;:10;:12::i;:::-;24642:7;24609:18;:41::i;:::-;24601:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24715:39;24729:4;24735:2;24739:7;24748:5;24715:13;:39::i;:::-;24477:285;;;;:::o;21873:360::-;21946:13;21980:16;21988:7;21980;:16::i;:::-;21972:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22061:21;22085:10;:8;:10::i;:::-;22061:34;;22137:1;22119:7;22113:21;:25;:112;;;;;;;;;;;;;;;;;22178:7;22187:18;:7;:16;:18::i;:::-;22161:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22113:112;22106:119;;;21873:360;;;:::o;23648:164::-;23745:4;23769:18;:25;23788:5;23769:25;;;;;;;;;;;;;;;:35;23795:8;23769:35;;;;;;;;;;;;;;;;;;;;;;;;;23762:42;;23648:164;;;;:::o;42499:244::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42608:1:::1;42588:22;;:8;:22;;;;42580:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42698:8;42669:38;;42690:6;;;;;;;;;;;42669:38;;;;;;;;;;;;42727:8;42718:6;;:17;;;;;;;;;;;;;;;;;;42499:244:::0;:::o;43149:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20597:292::-;20699:4;20738:25;20723:40;;;:11;:40;;;;:105;;;;20795:33;20780:48;;;:11;:48;;;;20723:105;:158;;;;20845:36;20869:11;20845:23;:36::i;:::-;20723:158;20716:165;;20597:292;;;:::o;26229:127::-;26294:4;26346:1;26318:30;;:7;:16;26326:7;26318:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26311:37;;26229:127;;;:::o;15885:98::-;15938:7;15965:10;15958:17;;15885:98;:::o;30106:174::-;30208:2;30181:15;:24;30197:7;30181:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30264:7;30260:2;30226:46;;30235:23;30250:7;30235:14;:23::i;:::-;30226:46;;;;;;;;;;;;30106:174;;:::o;26523:348::-;26616:4;26641:16;26649:7;26641;:16::i;:::-;26633:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26717:13;26733:23;26748:7;26733:14;:23::i;:::-;26717:39;;26786:5;26775:16;;:7;:16;;;:51;;;;26819:7;26795:31;;:20;26807:7;26795:11;:20::i;:::-;:31;;;26775:51;:87;;;;26830:32;26847:5;26854:7;26830:16;:32::i;:::-;26775:87;26767:96;;;26523:348;;;;:::o;29444:544::-;29569:4;29542:31;;:23;29557:7;29542:14;:23::i;:::-;:31;;;29534:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29652:1;29638:16;;:2;:16;;;;29630:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29708:39;29729:4;29735:2;29739:7;29708:20;:39::i;:::-;29812:29;29829:1;29833:7;29812:8;:29::i;:::-;29873:1;29854:9;:15;29864:4;29854:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29902:1;29885:9;:13;29895:2;29885:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29933:2;29914:7;:16;29922:7;29914:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29972:7;29968:2;29953:27;;29962:4;29953:27;;;;;;;;;;;;29444:544;;;:::o;27213:110::-;27289:26;27299:2;27303:7;27289:26;;;;;;;;;;;;:9;:26::i;:::-;27213:110;;:::o;25644:272::-;25758:28;25768:4;25774:2;25778:7;25758:9;:28::i;:::-;25805:48;25828:4;25834:2;25838:7;25847:5;25805:22;:48::i;:::-;25797:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25644:272;;;;:::o;43368:135::-;43428:13;43454:41;;;;;;;;;;;;;;;;;;;43368:135;:::o;16540:723::-;16596:13;16826:1;16817:5;:10;16813:53;;;16844:10;;;;;;;;;;;;;;;;;;;;;16813:53;16876:12;16891:5;16876:20;;16907:14;16932:78;16947:1;16939:4;:9;16932:78;;16965:8;;;;;:::i;:::-;;;;16996:2;16988:10;;;;;:::i;:::-;;;16932:78;;;17020:19;17052:6;17042:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17020:39;;17070:154;17086:1;17077:5;:10;17070:154;;17114:1;17104:11;;;;;:::i;:::-;;;17181:2;17173:5;:10;;;;:::i;:::-;17160:2;:24;;;;:::i;:::-;17147:39;;17130:6;17137;17130:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17210:2;17201:11;;;;;:::i;:::-;;;17070:154;;;17248:6;17234:21;;;;;16540:723;;;;:::o;19095:157::-;19180:4;19219:25;19204:40;;;:11;:40;;;;19197:47;;19095:157;;;:::o;36013:555::-;36123:45;36150:4;36156:2;36160:7;36123:26;:45::i;:::-;36201:1;36185:18;;:4;:18;;;36181:187;;;36220:40;36252:7;36220:31;:40::i;:::-;36181:187;;;36290:2;36282:10;;:4;:10;;;36278:90;;36309:47;36342:4;36348:7;36309:32;:47::i;:::-;36278:90;36181:187;36396:1;36382:16;;:2;:16;;;36378:183;;;36415:45;36452:7;36415:36;:45::i;:::-;36378:183;;;36488:4;36482:10;;:2;:10;;;36478:83;;36509:40;36537:2;36541:7;36509:27;:40::i;:::-;36478:83;36378:183;36013:555;;;:::o;27550:250::-;27646:18;27652:2;27656:7;27646:5;:18::i;:::-;27683:54;27714:1;27718:2;27722:7;27731:5;27683:22;:54::i;:::-;27675:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;27550:250;;;:::o;30845:843::-;30966:4;30992:15;:2;:13;;;:15::i;:::-;30988:693;;;31044:2;31028:36;;;31065:12;:10;:12::i;:::-;31079:4;31085:7;31094:5;31028:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31024:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31291:1;31274:6;:13;:18;31270:341;;;31317:60;;;;;;;;;;:::i;:::-;;;;;;;;31270:341;31561:6;31555:13;31546:6;31542:2;31538:15;31531:38;31024:602;31161:45;;;31151:55;;;:6;:55;;;;31144:62;;;;;30988:693;31665:4;31658:11;;30845:843;;;;;;;:::o;32301:93::-;;;;:::o;37291:164::-;37395:10;:17;;;;37368:15;:24;37384:7;37368:24;;;;;;;;;;;:44;;;;37423:10;37439:7;37423:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37291:164;:::o;38082:988::-;38348:22;38398:1;38373:22;38390:4;38373:16;:22::i;:::-;:26;;;;:::i;:::-;38348:51;;38410:18;38431:17;:26;38449:7;38431:26;;;;;;;;;;;;38410:47;;38578:14;38564:10;:28;38560:328;;38609:19;38631:12;:18;38644:4;38631:18;;;;;;;;;;;;;;;:34;38650:14;38631:34;;;;;;;;;;;;38609:56;;38715:11;38682:12;:18;38695:4;38682:18;;;;;;;;;;;;;;;:30;38701:10;38682:30;;;;;;;;;;;:44;;;;38832:10;38799:17;:30;38817:11;38799:30;;;;;;;;;;;:43;;;;38560:328;;38984:17;:26;39002:7;38984:26;;;;;;;;;;;38977:33;;;39028:12;:18;39041:4;39028:18;;;;;;;;;;;;;;;:34;39047:14;39028:34;;;;;;;;;;;39021:41;;;38082:988;;;;:::o;39365:1079::-;39618:22;39663:1;39643:10;:17;;;;:21;;;;:::i;:::-;39618:46;;39675:18;39696:15;:24;39712:7;39696:24;;;;;;;;;;;;39675:45;;40047:19;40069:10;40080:14;40069:26;;;;;;;;;;;;;;;;;;;;;;;;40047:48;;40133:11;40108:10;40119;40108:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40244:10;40213:15;:28;40229:11;40213:28;;;;;;;;;;;:41;;;;40385:15;:24;40401:7;40385:24;;;;;;;;;;;40378:31;;;40420:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39365:1079;;;;:::o;36869:221::-;36954:14;36971:20;36988:2;36971:16;:20::i;:::-;36954:37;;37029:7;37002:12;:16;37015:2;37002:16;;;;;;;;;;;;;;;:24;37019:6;37002:24;;;;;;;;;;;:34;;;;37076:6;37047:17;:26;37065:7;37047:26;;;;;;;;;;;:35;;;;36869:221;;;:::o;28136:382::-;28230:1;28216:16;;:2;:16;;;;28208:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28289:16;28297:7;28289;:16::i;:::-;28288:17;28280:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28351:45;28380:1;28384:2;28388:7;28351:20;:45::i;:::-;28426:1;28409:9;:13;28419:2;28409:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28457:2;28438:7;:16;28446:7;28438:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28502:7;28498:2;28477:33;;28494:1;28477:33;;;;;;;;;;;;28136:382;;:::o;8002:422::-;8062:4;8270:12;8381:7;8369:20;8361:28;;8415:1;8408:4;:8;8401:15;;;8002:422;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:118::-;6171:24;6189:5;6171:24;:::i;:::-;6166:3;6159:37;6149:53;;:::o;6208:109::-;6289:21;6304:5;6289:21;:::i;:::-;6284:3;6277:34;6267:50;;:::o;6323:360::-;;6437:38;6469:5;6437:38;:::i;:::-;6491:70;6554:6;6549:3;6491:70;:::i;:::-;6484:77;;6570:52;6615:6;6610:3;6603:4;6596:5;6592:16;6570:52;:::i;:::-;6647:29;6669:6;6647:29;:::i;:::-;6642:3;6638:39;6631:46;;6413:270;;;;;:::o;6689:364::-;;6805:39;6838:5;6805:39;:::i;:::-;6860:71;6924:6;6919:3;6860:71;:::i;:::-;6853:78;;6940:52;6985:6;6980:3;6973:4;6966:5;6962:16;6940:52;:::i;:::-;7017:29;7039:6;7017:29;:::i;:::-;7012:3;7008:39;7001:46;;6781:272;;;;;:::o;7059:377::-;;7193:39;7226:5;7193:39;:::i;:::-;7248:89;7330:6;7325:3;7248:89;:::i;:::-;7241:96;;7346:52;7391:6;7386:3;7379:4;7372:5;7368:16;7346:52;:::i;:::-;7423:6;7418:3;7414:16;7407:23;;7169:267;;;;;:::o;7442:438::-;;7605:67;7669:2;7664:3;7605:67;:::i;:::-;7598:74;;7702:34;7698:1;7693:3;7689:11;7682:55;7768:34;7763:2;7758:3;7754:12;7747:56;7834:10;7829:2;7824:3;7820:12;7813:32;7871:2;7866:3;7862:12;7855:19;;7588:292;;;:::o;7886:324::-;;8049:67;8113:2;8108:3;8049:67;:::i;:::-;8042:74;;8146:28;8142:1;8137:3;8133:11;8126:49;8201:2;8196:3;8192:12;8185:19;;8032:178;;;:::o;8216:319::-;;8379:67;8443:2;8438:3;8379:67;:::i;:::-;8372:74;;8476:23;8472:1;8467:3;8463:11;8456:44;8526:2;8521:3;8517:12;8510:19;;8362:173;;;:::o;8541:375::-;;8704:67;8768:2;8763:3;8704:67;:::i;:::-;8697:74;;8801:34;8797:1;8792:3;8788:11;8781:55;8867:13;8862:2;8857:3;8853:12;8846:35;8907:2;8902:3;8898:12;8891:19;;8687:229;;;:::o;8922:382::-;;9085:67;9149:2;9144:3;9085:67;:::i;:::-;9078:74;;9182:34;9178:1;9173:3;9169:11;9162:55;9248:20;9243:2;9238:3;9234:12;9227:42;9295:2;9290:3;9286:12;9279:19;;9068:236;;;:::o;9310:366::-;;9473:67;9537:2;9532:3;9473:67;:::i;:::-;9466:74;;9570:34;9566:1;9561:3;9557:11;9550:55;9636:4;9631:2;9626:3;9622:12;9615:26;9667:2;9662:3;9658:12;9651:19;;9456:220;;;:::o;9682:370::-;;9845:67;9909:2;9904:3;9845:67;:::i;:::-;9838:74;;9942:34;9938:1;9933:3;9929:11;9922:55;10008:8;10003:2;9998:3;9994:12;9987:30;10043:2;10038:3;10034:12;10027:19;;9828:224;;;:::o;10058:326::-;;10221:67;10285:2;10280:3;10221:67;:::i;:::-;10214:74;;10318:30;10314:1;10309:3;10305:11;10298:51;10375:2;10370:3;10366:12;10359:19;;10204:180;;;:::o;10390:368::-;;10553:67;10617:2;10612:3;10553:67;:::i;:::-;10546:74;;10650:34;10646:1;10641:3;10637:11;10630:55;10716:6;10711:2;10706:3;10702:12;10695:28;10749:2;10744:3;10740:12;10733:19;;10536:222;;;:::o;10764:323::-;;10927:67;10991:2;10986:3;10927:67;:::i;:::-;10920:74;;11024:27;11020:1;11015:3;11011:11;11004:48;11078:2;11073:3;11069:12;11062:19;;10910:177;;;:::o;11093:324::-;;11256:67;11320:2;11315:3;11256:67;:::i;:::-;11249:74;;11353:28;11349:1;11344:3;11340:11;11333:49;11408:2;11403:3;11399:12;11392:19;;11239:178;;;:::o;11423:383::-;;11586:67;11650:2;11645:3;11586:67;:::i;:::-;11579:74;;11683:34;11679:1;11674:3;11670:11;11663:55;11749:21;11744:2;11739:3;11735:12;11728:43;11797:2;11792:3;11788:12;11781:19;;11569:237;;;:::o;11812:376::-;;11975:67;12039:2;12034:3;11975:67;:::i;:::-;11968:74;;12072:34;12068:1;12063:3;12059:11;12052:55;12138:14;12133:2;12128:3;12124:12;12117:36;12179:2;12174:3;12170:12;12163:19;;11958:230;;;:::o;12194:388::-;;12357:67;12421:2;12416:3;12357:67;:::i;:::-;12350:74;;12454:34;12450:1;12445:3;12441:11;12434:55;12520:26;12515:2;12510:3;12506:12;12499:48;12573:2;12568:3;12564:12;12557:19;;12340:242;;;:::o;12588:374::-;;12751:67;12815:2;12810:3;12751:67;:::i;:::-;12744:74;;12848:34;12844:1;12839:3;12835:11;12828:55;12914:12;12909:2;12904:3;12900:12;12893:34;12953:2;12948:3;12944:12;12937:19;;12734:228;;;:::o;12968:373::-;;13131:67;13195:2;13190:3;13131:67;:::i;:::-;13124:74;;13228:34;13224:1;13219:3;13215:11;13208:55;13294:11;13289:2;13284:3;13280:12;13273:33;13332:2;13327:3;13323:12;13316:19;;13114:227;;;:::o;13347:320::-;;13510:67;13574:2;13569:3;13510:67;:::i;:::-;13503:74;;13607:24;13603:1;13598:3;13594:11;13587:45;13658:2;13653:3;13649:12;13642:19;;13493:174;;;:::o;13673:330::-;;13836:67;13900:2;13895:3;13836:67;:::i;:::-;13829:74;;13933:34;13929:1;13924:3;13920:11;13913:55;13994:2;13989:3;13985:12;13978:19;;13819:184;;;:::o;14009:376::-;;14172:67;14236:2;14231:3;14172:67;:::i;:::-;14165:74;;14269:34;14265:1;14260:3;14256:11;14249:55;14335:14;14330:2;14325:3;14321:12;14314:36;14376:2;14371:3;14367:12;14360:19;;14155:230;;;:::o;14391:330::-;;14554:67;14618:2;14613:3;14554:67;:::i;:::-;14547:74;;14651:34;14647:1;14642:3;14638:11;14631:55;14712:2;14707:3;14703:12;14696:19;;14537:184;;;:::o;14727:373::-;;14890:67;14954:2;14949:3;14890:67;:::i;:::-;14883:74;;14987:34;14983:1;14978:3;14974:11;14967:55;15053:11;15048:2;15043:3;15039:12;15032:33;15091:2;15086:3;15082:12;15075:19;;14873:227;;;:::o;15106:379::-;;15269:67;15333:2;15328:3;15269:67;:::i;:::-;15262:74;;15366:34;15362:1;15357:3;15353:11;15346:55;15432:17;15427:2;15422:3;15418:12;15411:39;15476:2;15471:3;15467:12;15460:19;;15252:233;;;:::o;15491:369::-;;15654:67;15718:2;15713:3;15654:67;:::i;:::-;15647:74;;15751:34;15747:1;15742:3;15738:11;15731:55;15817:7;15812:2;15807:3;15803:12;15796:29;15851:2;15846:3;15842:12;15835:19;;15637:223;;;:::o;15866:365::-;;16029:67;16093:2;16088:3;16029:67;:::i;:::-;16022:74;;16126:34;16122:1;16117:3;16113:11;16106:55;16192:3;16187:2;16182:3;16178:12;16171:25;16222:2;16217:3;16213:12;16206:19;;16012:219;;;:::o;16237:381::-;;16400:67;16464:2;16459:3;16400:67;:::i;:::-;16393:74;;16497:34;16493:1;16488:3;16484:11;16477:55;16563:19;16558:2;16553:3;16549:12;16542:41;16609:2;16604:3;16600:12;16593:19;;16383:235;;;:::o;16624:376::-;;16787:67;16851:2;16846:3;16787:67;:::i;:::-;16780:74;;16884:34;16880:1;16875:3;16871:11;16864:55;16950:14;16945:2;16940:3;16936:12;16929:36;16991:2;16986:3;16982:12;16975:19;;16770:230;;;:::o;17006:118::-;17093:24;17111:5;17093:24;:::i;:::-;17088:3;17081:37;17071:53;;:::o;17130:435::-;;17332:95;17423:3;17414:6;17332:95;:::i;:::-;17325:102;;17444:95;17535:3;17526:6;17444:95;:::i;:::-;17437:102;;17556:3;17549:10;;17314:251;;;;;:::o;17571:222::-;;17702:2;17691:9;17687:18;17679:26;;17715:71;17783:1;17772:9;17768:17;17759:6;17715:71;:::i;:::-;17669:124;;;;:::o;17799:640::-;;18032:3;18021:9;18017:19;18009:27;;18046:71;18114:1;18103:9;18099:17;18090:6;18046:71;:::i;:::-;18127:72;18195:2;18184:9;18180:18;18171:6;18127:72;:::i;:::-;18209;18277:2;18266:9;18262:18;18253:6;18209:72;:::i;:::-;18328:9;18322:4;18318:20;18313:2;18302:9;18298:18;18291:48;18356:76;18427:4;18418:6;18356:76;:::i;:::-;18348:84;;17999:440;;;;;;;:::o;18445:210::-;;18570:2;18559:9;18555:18;18547:26;;18583:65;18645:1;18634:9;18630:17;18621:6;18583:65;:::i;:::-;18537:118;;;;:::o;18661:313::-;;18812:2;18801:9;18797:18;18789:26;;18861:9;18855:4;18851:20;18847:1;18836:9;18832:17;18825:47;18889:78;18962:4;18953:6;18889:78;:::i;:::-;18881:86;;18779:195;;;;:::o;18980:419::-;;19184:2;19173:9;19169:18;19161:26;;19233:9;19227:4;19223:20;19219:1;19208:9;19204:17;19197:47;19261:131;19387:4;19261:131;:::i;:::-;19253:139;;19151:248;;;:::o;19405:419::-;;19609:2;19598:9;19594:18;19586:26;;19658:9;19652:4;19648:20;19644:1;19633:9;19629:17;19622:47;19686:131;19812:4;19686:131;:::i;:::-;19678:139;;19576:248;;;:::o;19830:419::-;;20034:2;20023:9;20019:18;20011:26;;20083:9;20077:4;20073:20;20069:1;20058:9;20054:17;20047:47;20111:131;20237:4;20111:131;:::i;:::-;20103:139;;20001:248;;;:::o;20255:419::-;;20459:2;20448:9;20444:18;20436:26;;20508:9;20502:4;20498:20;20494:1;20483:9;20479:17;20472:47;20536:131;20662:4;20536:131;:::i;:::-;20528:139;;20426:248;;;:::o;20680:419::-;;20884:2;20873:9;20869:18;20861:26;;20933:9;20927:4;20923:20;20919:1;20908:9;20904:17;20897:47;20961:131;21087:4;20961:131;:::i;:::-;20953:139;;20851:248;;;:::o;21105:419::-;;21309:2;21298:9;21294:18;21286:26;;21358:9;21352:4;21348:20;21344:1;21333:9;21329:17;21322:47;21386:131;21512:4;21386:131;:::i;:::-;21378:139;;21276:248;;;:::o;21530:419::-;;21734:2;21723:9;21719:18;21711:26;;21783:9;21777:4;21773:20;21769:1;21758:9;21754:17;21747:47;21811:131;21937:4;21811:131;:::i;:::-;21803:139;;21701:248;;;:::o;21955:419::-;;22159:2;22148:9;22144:18;22136:26;;22208:9;22202:4;22198:20;22194:1;22183:9;22179:17;22172:47;22236:131;22362:4;22236:131;:::i;:::-;22228:139;;22126:248;;;:::o;22380:419::-;;22584:2;22573:9;22569:18;22561:26;;22633:9;22627:4;22623:20;22619:1;22608:9;22604:17;22597:47;22661:131;22787:4;22661:131;:::i;:::-;22653:139;;22551:248;;;:::o;22805:419::-;;23009:2;22998:9;22994:18;22986:26;;23058:9;23052:4;23048:20;23044:1;23033:9;23029:17;23022:47;23086:131;23212:4;23086:131;:::i;:::-;23078:139;;22976:248;;;:::o;23230:419::-;;23434:2;23423:9;23419:18;23411:26;;23483:9;23477:4;23473:20;23469:1;23458:9;23454:17;23447:47;23511:131;23637:4;23511:131;:::i;:::-;23503:139;;23401:248;;;:::o;23655:419::-;;23859:2;23848:9;23844:18;23836:26;;23908:9;23902:4;23898:20;23894:1;23883:9;23879:17;23872:47;23936:131;24062:4;23936:131;:::i;:::-;23928:139;;23826:248;;;:::o;24080:419::-;;24284:2;24273:9;24269:18;24261:26;;24333:9;24327:4;24323:20;24319:1;24308:9;24304:17;24297:47;24361:131;24487:4;24361:131;:::i;:::-;24353:139;;24251:248;;;:::o;24505:419::-;;24709:2;24698:9;24694:18;24686:26;;24758:9;24752:4;24748:20;24744:1;24733:9;24729:17;24722:47;24786:131;24912:4;24786:131;:::i;:::-;24778:139;;24676:248;;;:::o;24930:419::-;;25134:2;25123:9;25119:18;25111:26;;25183:9;25177:4;25173:20;25169:1;25158:9;25154:17;25147:47;25211:131;25337:4;25211:131;:::i;:::-;25203:139;;25101:248;;;:::o;25355:419::-;;25559:2;25548:9;25544:18;25536:26;;25608:9;25602:4;25598:20;25594:1;25583:9;25579:17;25572:47;25636:131;25762:4;25636:131;:::i;:::-;25628:139;;25526:248;;;:::o;25780:419::-;;25984:2;25973:9;25969:18;25961:26;;26033:9;26027:4;26023:20;26019:1;26008:9;26004:17;25997:47;26061:131;26187:4;26061:131;:::i;:::-;26053:139;;25951:248;;;:::o;26205:419::-;;26409:2;26398:9;26394:18;26386:26;;26458:9;26452:4;26448:20;26444:1;26433:9;26429:17;26422:47;26486:131;26612:4;26486:131;:::i;:::-;26478:139;;26376:248;;;:::o;26630:419::-;;26834:2;26823:9;26819:18;26811:26;;26883:9;26877:4;26873:20;26869:1;26858:9;26854:17;26847:47;26911:131;27037:4;26911:131;:::i;:::-;26903:139;;26801:248;;;:::o;27055:419::-;;27259:2;27248:9;27244:18;27236:26;;27308:9;27302:4;27298:20;27294:1;27283:9;27279:17;27272:47;27336:131;27462:4;27336:131;:::i;:::-;27328:139;;27226:248;;;:::o;27480:419::-;;27684:2;27673:9;27669:18;27661:26;;27733:9;27727:4;27723:20;27719:1;27708:9;27704:17;27697:47;27761:131;27887:4;27761:131;:::i;:::-;27753:139;;27651:248;;;:::o;27905:419::-;;28109:2;28098:9;28094:18;28086:26;;28158:9;28152:4;28148:20;28144:1;28133:9;28129:17;28122:47;28186:131;28312:4;28186:131;:::i;:::-;28178:139;;28076:248;;;:::o;28330:419::-;;28534:2;28523:9;28519:18;28511:26;;28583:9;28577:4;28573:20;28569:1;28558:9;28554:17;28547:47;28611:131;28737:4;28611:131;:::i;:::-;28603:139;;28501:248;;;:::o;28755:419::-;;28959:2;28948:9;28944:18;28936:26;;29008:9;29002:4;28998:20;28994:1;28983:9;28979:17;28972:47;29036:131;29162:4;29036:131;:::i;:::-;29028:139;;28926:248;;;:::o;29180:419::-;;29384:2;29373:9;29369:18;29361:26;;29433:9;29427:4;29423:20;29419:1;29408:9;29404:17;29397:47;29461:131;29587:4;29461:131;:::i;:::-;29453:139;;29351:248;;;:::o;29605:419::-;;29809:2;29798:9;29794:18;29786:26;;29858:9;29852:4;29848:20;29844:1;29833:9;29829:17;29822:47;29886:131;30012:4;29886:131;:::i;:::-;29878:139;;29776:248;;;:::o;30030:222::-;;30161:2;30150:9;30146:18;30138:26;;30174:71;30242:1;30231:9;30227:17;30218:6;30174:71;:::i;:::-;30128:124;;;;:::o;30258:283::-;;30324:2;30318:9;30308:19;;30366:4;30358:6;30354:17;30473:6;30461:10;30458:22;30437:18;30425:10;30422:34;30419:62;30416:2;;;30484:18;;:::i;:::-;30416:2;30524:10;30520:2;30513:22;30298:243;;;;:::o;30547:331::-;;30698:18;30690:6;30687:30;30684:2;;;30720:18;;:::i;:::-;30684:2;30805:4;30801:9;30794:4;30786:6;30782:17;30778:33;30770:41;;30866:4;30860;30856:15;30848:23;;30613:265;;;:::o;30884:332::-;;31036:18;31028:6;31025:30;31022:2;;;31058:18;;:::i;:::-;31022:2;31143:4;31139:9;31132:4;31124:6;31120:17;31116:33;31108:41;;31204:4;31198;31194:15;31186:23;;30951:265;;;:::o;31222:98::-;;31307:5;31301:12;31291:22;;31280:40;;;:::o;31326:99::-;;31412:5;31406:12;31396:22;;31385:40;;;:::o;31431:168::-;;31548:6;31543:3;31536:19;31588:4;31583:3;31579:14;31564:29;;31526:73;;;;:::o;31605:169::-;;31723:6;31718:3;31711:19;31763:4;31758:3;31754:14;31739:29;;31701:73;;;;:::o;31780:148::-;;31919:3;31904:18;;31894:34;;;;:::o;31934:305::-;;31993:20;32011:1;31993:20;:::i;:::-;31988:25;;32027:20;32045:1;32027:20;:::i;:::-;32022:25;;32181:1;32113:66;32109:74;32106:1;32103:81;32100:2;;;32187:18;;:::i;:::-;32100:2;32231:1;32228;32224:9;32217:16;;31978:261;;;;:::o;32245:185::-;;32302:20;32320:1;32302:20;:::i;:::-;32297:25;;32336:20;32354:1;32336:20;:::i;:::-;32331:25;;32375:1;32365:2;;32380:18;;:::i;:::-;32365:2;32422:1;32419;32415:9;32410:14;;32287:143;;;;:::o;32436:348::-;;32499:20;32517:1;32499:20;:::i;:::-;32494:25;;32533:20;32551:1;32533:20;:::i;:::-;32528:25;;32721:1;32653:66;32649:74;32646:1;32643:81;32638:1;32631:9;32624:17;32620:105;32617:2;;;32728:18;;:::i;:::-;32617:2;32776:1;32773;32769:9;32758:20;;32484:300;;;;:::o;32790:191::-;;32850:20;32868:1;32850:20;:::i;:::-;32845:25;;32884:20;32902:1;32884:20;:::i;:::-;32879:25;;32923:1;32920;32917:8;32914:2;;;32928:18;;:::i;:::-;32914:2;32973:1;32970;32966:9;32958:17;;32835:146;;;;:::o;32987:96::-;;33053:24;33071:5;33053:24;:::i;:::-;33042:35;;33032:51;;;:::o;33089:90::-;;33166:5;33159:13;33152:21;33141:32;;33131:48;;;:::o;33185:149::-;;33261:66;33254:5;33250:78;33239:89;;33229:105;;;:::o;33340:126::-;;33417:42;33410:5;33406:54;33395:65;;33385:81;;;:::o;33472:77::-;;33538:5;33527:16;;33517:32;;;:::o;33555:154::-;33639:6;33634:3;33629;33616:30;33701:1;33692:6;33687:3;33683:16;33676:27;33606:103;;;:::o;33715:307::-;33783:1;33793:113;33807:6;33804:1;33801:13;33793:113;;;33892:1;33887:3;33883:11;33877:18;33873:1;33868:3;33864:11;33857:39;33829:2;33826:1;33822:10;33817:15;;33793:113;;;33924:6;33921:1;33918:13;33915:2;;;34004:1;33995:6;33990:3;33986:16;33979:27;33915:2;33764:258;;;;:::o;34028:320::-;;34109:1;34103:4;34099:12;34089:22;;34156:1;34150:4;34146:12;34177:18;34167:2;;34233:4;34225:6;34221:17;34211:27;;34167:2;34295;34287:6;34284:14;34264:18;34261:38;34258:2;;;34314:18;;:::i;:::-;34258:2;34079:269;;;;:::o;34354:233::-;;34416:24;34434:5;34416:24;:::i;:::-;34407:33;;34462:66;34455:5;34452:77;34449:2;;;34532:18;;:::i;:::-;34449:2;34579:1;34572:5;34568:13;34561:20;;34397:190;;;:::o;34593:176::-;;34642:20;34660:1;34642:20;:::i;:::-;34637:25;;34676:20;34694:1;34676:20;:::i;:::-;34671:25;;34715:1;34705:2;;34720:18;;:::i;:::-;34705:2;34761:1;34758;34754:9;34749:14;;34627:142;;;;:::o;34775:180::-;34823:77;34820:1;34813:88;34920:4;34917:1;34910:15;34944:4;34941:1;34934:15;34961:180;35009:77;35006:1;34999:88;35106:4;35103:1;35096:15;35130:4;35127:1;35120:15;35147:180;35195:77;35192:1;35185:88;35292:4;35289:1;35282:15;35316:4;35313:1;35306:15;35333:180;35381:77;35378:1;35371:88;35478:4;35475:1;35468:15;35502:4;35499:1;35492:15;35519:102;;35611:2;35607:7;35602:2;35595:5;35591:14;35587:28;35577:38;;35567:54;;;:::o;35627:122::-;35700:24;35718:5;35700:24;:::i;:::-;35693:5;35690:35;35680:2;;35739:1;35736;35729:12;35680:2;35670:79;:::o;35755:116::-;35825:21;35840:5;35825:21;:::i;:::-;35818:5;35815:32;35805:2;;35861:1;35858;35851:12;35805:2;35795:76;:::o;35877:120::-;35949:23;35966:5;35949:23;:::i;:::-;35942:5;35939:34;35929:2;;35987:1;35984;35977:12;35929:2;35919:78;:::o;36003:122::-;36076:24;36094:5;36076:24;:::i;:::-;36069:5;36066:35;36056:2;;36115:1;36112;36105:12;36056:2;36046:79;:::o
Swarm Source
ipfs://5d063a651333d5b7a05c262a89f79cfb2629eb11102d7d086bfbae448163b882
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.