ERC-721
Overview
Max Total Supply
212 KUKAI
Holders
92
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 KUKAILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KuKai
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-17 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; 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); } /** * @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; } /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } /** * @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); } /** * @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); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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; } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { 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 { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } /** * @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); } /** * @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(); } } contract KuKai is ERC721Enumerable, ReentrancyGuard, Ownable { // NFT upper limit uint256 public maxLimit = 8888; mapping (uint256 => uint256) private numbers; // background struct Color{ string backGroundColor; string strokeWidth; string strokeColor; string fillTextColor; string strokeTextColor; string taijiColor; string name; } string[] private fiveElements = [ unicode"地", unicode"水", unicode"火", unicode"風", unicode"空" ]; string[] private gossip = [ unicode"高", unicode"力", unicode"自", unicode"合", unicode"事", unicode"京", unicode"部", unicode"代" ]; string[] private tenDry = [ unicode"日", unicode"一", unicode"大", unicode"中", unicode"会", unicode"人", unicode"本", unicode"月", unicode"長", unicode"三" ]; string[] private earthlyBranch = [ unicode"子", unicode"丑", unicode"寅", unicode"卯", unicode"辰", unicode"巳", unicode"午", unicode"未", unicode"申", unicode"酉", unicode"戌", unicode"亥" ]; function random(string memory input) internal pure returns (uint256) { return uint256(keccak256(abi.encodePacked(input))); } function getFiveElements(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "FIVEELEMENTS", fiveElements); } function getGossip(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "GOSSIP", gossip); } function getTenDry(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "TENDRY", tenDry); } function geTearthlyBranch(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "EARTHLYBRANCH", earthlyBranch); } function pluck(uint256 tokenId, string memory keyPrefix, string[] memory sourceArray) internal view returns (string memory) { uint256 number = numbers[tokenId]; require( number != 0, "tokenId is invalid"); uint256 rand = random(string(abi.encodePacked(keyPrefix, toString(tokenId+number)))); string memory output = sourceArray[rand % sourceArray.length]; return output; } function getBackGround(uint256 tokenId) public view returns (Color memory info){ uint256 number = numbers[tokenId]; require( number != 0, "tokenId is invalid"); uint256 rand = random(string(abi.encodePacked('BACKGROUNDCOLOR', toString(tokenId+number)))); uint256 greatness = rand % 100; if (greatness <= 19) { info = Color({ backGroundColor: unicode' fill="#23e6f7"/> ', strokeWidth: unicode' stroke-width="1.5" ', strokeColor: unicode' stroke="#000000"/> ', fillTextColor: unicode' fill="#000000" ', strokeTextColor: unicode' stroke="#000000" ', taijiColor: unicode' fill="#bc9d6e" ', name: 'yellow' }); }else if (greatness >89) { info = Color({ backGroundColor: unicode' fill="#71f723"/> ', strokeWidth: unicode' stroke-width="1.5" ', strokeColor: unicode' stroke="#000000"/> ', fillTextColor: unicode' fill="#000000" ', strokeTextColor: unicode' stroke="#000000" ', taijiColor: unicode' fill="#ffffff" ', name: 'white' }); }else{ info = Color({ backGroundColor: unicode' fill="#f759b8"/> ', strokeWidth: unicode' stroke-width="1.5" ', strokeColor: unicode' stroke="#dfc082"/> ', fillTextColor: unicode' fill="#dfc082" ', strokeTextColor: unicode' stroke="#dfc082" ', taijiColor: unicode' fill="#dfc082" ', name: 'black' }); } return info; } function tokenURI(uint256 tokenId) override public view returns (string memory) { string[60] memory parts; Color memory info = getBackGround(tokenId); parts[0] = unicode'<svg viewBox="0 0 350 350" xmlns="http://www.w3.org/2000/svg">'; parts[1] = unicode'<g><title>background</title><rect x="-1" y="-1" width="100%" height="100%" id="canvas_background"'; parts[2] = info.backGroundColor; parts[3] = unicode'<g id="canvasGrid" display="none"><rect id="svg_1" width="100%" height="100%" x="0" y="0" stroke-width="0" fill="url(#gridpattern)"/></g></g>'; parts[4] = unicode'<g><title>Layer 1</title><g id="svg_16" stroke="null"><g id="svg_8" fill="none" fill-rule="evenodd" transform="matrix(1.0289597692403862,0,0,1.0289597692403862,79.4289146949628,44.69235436252555)"><g id="svg_9" stroke="null"><g id="svg_10" stroke="null"><circle id="svg_14" '; parts[5] = info.strokeWidth; parts[6] = unicode'cx="93.56665" cy="76.789077" r="50.25" '; parts[7] = info.strokeColor; parts[8] = unicode'<path d="m93.56665,27.03298c27.47953,0 49.7561,22.27657 49.7561,49.7561c0,27.20474 -21.83326,49.31005 -48.93329,49.74943l-0.38557,0.0029c13.53805,-0.23331 24.44081,-11.28056 24.44081,-24.87428c0,-13.73977 -11.13828,-24.87805 -24.87805,-24.87805l-0.4114,-0.00333c-13.55002,-0.2197 -24.46665,-11.27235 -24.46665,-24.87472c0,-13.60237 10.91663,-24.65502 24.46665,-24.87471l0.4114,-0.00334zm0,12.43903c-6.86988,0 -12.43902,5.56914 -12.43902,12.43902c0,6.86988 5.56914,12.43903 12.43902,12.43903c6.86988,0 12.43902,-5.56915 12.43902,-12.43903c0,-6.86988 -5.56914,-12.43902 -12.43902,-12.43902z" id="svg_13" '; parts[9] = info.taijiColor; parts[10] = unicode'stroke="null"/><path d="m93.09825,27.0373c-13.52362,0.24972 -24.40965,11.29044 -24.40965,24.87373c0,13.60237 10.91663,24.65502 24.46665,24.87472l0.4114,0.00333c13.73977,0 24.87805,11.13828 24.87805,24.87805c0,13.60237 -10.91663,24.65502 -24.46665,24.87471l-0.4114,0.00334c-27.47953,0 -49.7561,-22.27657 -49.7561,-49.7561c0,-27.20474 21.83326,-49.31005 48.93329,-49.74943l0.35441,-0.00235zm0.4684,62.18704c-6.86988,0 -12.43902,5.56914 -12.43902,12.43902c0,6.86989 5.56914,12.43903 12.43902,12.43903c6.86988,0 12.43902,-5.56914 12.43902,-12.43903c0,-6.86988 -5.56914,-12.43902 -12.43902,-12.43902z" id="svg_12" fill="#000000" stroke="null"/><circle id="svg_11" '; parts[11] = info.taijiColor; parts[12] = unicode'cx="93.56665" cy="101.663361" r="12.439024" stroke="null"/><circle id="椭圆形" fill="#000000" cx="93.56665" cy="51.924022" r="12.439024" stroke="null"/></g></g></g></g>'; parts[13] = unicode'<text letter-spacing="1px" style="cursor: move;" '; parts[14] = info.fillTextColor; parts[15] = unicode'stroke="#000" stroke-width="0" x="24" y="33" id="svg_17" font-size="14" font-family="宋体" text-anchor="start" xml:space="preserve">#</text><line fill="none" '; parts[16] = info.strokeTextColor; parts[17] = unicode'stroke-width="0.5" x1="87" y1="224" x2="87" y2="299" id="svg_20" stroke-linejoin="undefined" stroke-linecap="undefined" fill-opacity="0"/><line fill="none" '; parts[18] = info.strokeTextColor; parts[19] = unicode'stroke-width="0.5" x1="135" y1="224" x2="135" y2="299" id="svg_2" stroke-linejoin="undefined" stroke-linecap="undefined" fill-opacity="0"/><line fill="none" '; parts[20] = info.strokeTextColor; parts[21] = unicode'stroke-width="0.5" x1="183" y1="224" x2="183" y2="299" id="svg_3" stroke-linejoin="undefined" stroke-linecap="undefined" fill-opacity="0"/><line fill="none" '; parts[22] = info.strokeTextColor; parts[23] = unicode'stroke-width="0.5" x1="231" y1="224" x2="231" y2="299" id="svg_4" stroke-linejoin="undefined" stroke-linecap="undefined" fill-opacity="0"/><text font-weight="normal" letter-spacing="5px" writing-mode="tb-rl" xml:space="preserve" text-anchor="start" font-family="宋体" font-size="12" id="svg_6" y="226.500001" x="98" stroke-width="0" '; parts[24] = info.strokeTextColor; parts[25] = info.fillTextColor; parts[26] = unicode'>五行</text><text font-weight="normal" letter-spacing="5px" writing-mode="tb-rl" xml:space="preserve" text-anchor="start" font-family="宋体" font-size="12" id="svg_7" y="226.259257" x="146" stroke-width="0" '; parts[27] = info.strokeTextColor; parts[28] = info.fillTextColor; parts[29] = unicode'>八卦</text><text style="cursor: move;" letter-spacing="5px" writing-mode="tb-rl" xml:space="preserve" text-anchor="start" font-family="宋体" font-size="12" id="svg_15" y="227" x="192.875001" stroke-width="0" '; parts[30] = info.strokeTextColor; parts[31] = info.fillTextColor; parts[32] = unicode'>天干</text><text style="cursor: move;" letter-spacing="5px" writing-mode="tb-rl" xml:space="preserve" text-anchor="start" font-family="宋体" font-size="12" id="svg_19" y="227.249995" x="241.951429" stroke-width="0" '; parts[33] = info.strokeTextColor; parts[34] = info.fillTextColor; parts[35] = unicode'>地支</text><text '; parts[36] = info.fillTextColor; parts[37] = unicode' stroke="#000" stroke-width="0" x="33.812748" y="33" id="svg_21" font-size="14" font-family="宋体" text-anchor="start" xml:space="preserve">'; parts[38] = toString(tokenId); parts[39] = unicode'</text><text font-weight="bold" letter-spacing="5px" writing-mode="tb-rl" xml:space="preserve" text-anchor="start" font-family="宋体" font-size="24" id="svg_22" y="271.062036" x="104.875" stroke-width="0" '; parts[40] = info.strokeTextColor; parts[41] = info.fillTextColor; parts[42] = unicode'>'; parts[43] = getFiveElements(tokenId); parts[44] = unicode'</text><text font-weight="bold" letter-spacing="5px" writing-mode="tb-rl" xml:space="preserve" text-anchor="start" font-family="宋体" font-size="24" id="svg_23" y="271.062036" x="153.037991" stroke-width="0" '; parts[45] = info.strokeTextColor; parts[46] = info.fillTextColor; parts[47] = unicode'>'; parts[48] = getGossip(tokenId); parts[49] = unicode'</text><text font-weight="bold" letter-spacing="5px" writing-mode="tb-rl" xml:space="preserve" text-anchor="start" font-family="宋体" font-size="24" id="svg_24" y="271.062036" x="201" stroke-width="0" '; parts[50] = info.strokeTextColor; parts[51] = info.fillTextColor; parts[52] = unicode'>'; parts[53] = getTenDry(tokenId); parts[54] = unicode'</text><text font-weight="bold" letter-spacing="5px" writing-mode="tb-rl" xml:space="preserve" text-anchor="start" font-family="宋体" font-size="24" id="svg_25" y="271.062036" x="249.355301" stroke-width="0" '; parts[55] = info.strokeTextColor; parts[56] = info.fillTextColor; parts[57] = unicode'>'; parts[58] = geTearthlyBranch(tokenId); parts[59] = '</text></g></svg>'; string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7],parts[8])); output = string(abi.encodePacked(output, parts[9], parts[10], parts[11], parts[12], parts[13], parts[14],parts[15],parts[16])); output = string(abi.encodePacked(output, parts[17], parts[18], parts[19], parts[20], parts[21],parts[22],parts[23],parts[24])); output = string(abi.encodePacked(output, parts[25], parts[26], parts[27], parts[28], parts[29],parts[30],parts[31],parts[32])); output = string(abi.encodePacked(output, parts[33], parts[34], parts[35], parts[36], parts[37], parts[38],parts[39],parts[40])); output = string(abi.encodePacked(output, parts[41], parts[42], parts[43], parts[44], parts[45], parts[46],parts[47],parts[48])); output = string(abi.encodePacked(output, parts[49], parts[50], parts[51], parts[52], parts[53], parts[54],parts[55],parts[56])); output = string(abi.encodePacked(output, parts[57], parts[58], parts[59])); string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Kukai #', toString(tokenId), '", "description": "Kukai major work, the Then Stages of Consciousness has all existing Buddhist literature written into 8888 stages, which led Kukai to a leading rank among intellectual figures of Japanese Buddhism. There are NFTs ranging from #1 to #8888, from which a person can create their own stage and start divination.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}')))); output = string(abi.encodePacked('data:application/json;base64,', json)); return output; } function claim() public nonReentrant { uint256 tokenId = totalSupply()+1; require(tokenId <= maxLimit, "The upper limit of token ID is 8888"); numbers[tokenId] = block.timestamp; _safeMint(_msgSender(), tokenId); } function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT license // 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); } constructor() ERC721("KuKai", "KUKAI") Ownable() {} } /// [MIT License] /// @title Base64 /// @notice Provides a function for encoding some bytes in base64 /// @author Brecht Devos <[email protected]> library Base64 { bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /// @notice Encodes some bytes to the base64 representation function encode(bytes memory data) internal pure returns (string memory) { uint256 len = data.length; if (len == 0) return ""; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((len + 2) / 3); // Add some extra buffer at the end bytes memory result = new bytes(encodedLen + 32); bytes memory table = TABLE; assembly { let tablePtr := add(table, 1) let resultPtr := add(result, 32) for { let i := 0 } lt(i, len) { } { i := add(i, 3) let input := and(mload(add(data, i)), 0xffffff) let out := mload(add(tablePtr, and(shr(18, input), 0x3F))) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)) out := shl(224, out) mstore(resultPtr, out) resultPtr := add(resultPtr, 4) } switch mod(len, 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } mstore(result, encodedLen) } return string(result); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"geTearthlyBranch","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getBackGround","outputs":[{"components":[{"internalType":"string","name":"backGroundColor","type":"string"},{"internalType":"string","name":"strokeWidth","type":"string"},{"internalType":"string","name":"strokeColor","type":"string"},{"internalType":"string","name":"fillTextColor","type":"string"},{"internalType":"string","name":"strokeTextColor","type":"string"},{"internalType":"string","name":"taijiColor","type":"string"},{"internalType":"string","name":"name","type":"string"}],"internalType":"struct KuKai.Color","name":"info","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFiveElements","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getGossip","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTenDry","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":[],"name":"maxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]
Contract Creation Code
6122b8600c556003610120818152620e59cb60ec1b6101405260809081526101608281526239ac2d60ea1b6101805260a0526101a082815262e781ab60e81b6101c05260c0526101e0828152621d345560eb1b6102005260e0526102606040526102209182526273d4dd60e91b61024052610100919091526200008790600e906005620004f9565b50604080516101408101825260036101008201818152621d357360eb1b61012084015282528251808401845281815262e58a9b60e81b6020828101919091528084019190915283518085018552828152627443d560e91b818301528385015283518085018552828152621cb21160eb1b8183015260608401528351808501855282815262e4ba8b60e81b8183015260808401528351808501855282815262392eab60ea1b8183015260a084015283518085018552828152621d307560eb1b8183015260c0840152835180850190945290835262e4bba360e81b9083015260e08101919091526200017c90600f9060086200055d565b5060408051610180810182526003610140820181815262e697a560e81b6101608401528252825180840184528181526201c97160ef1b602082810191909152808401919091528351808501855282815262e5a4a760e81b81830152838501528351808501855282815262e4b8ad60e81b8183015260608401528351808501855282815262725e4d60e91b8183015260808401528351808501855282815262725d5d60e91b8183015260a0840152835180850185528281526239a72b60ea1b8183015260c084015283518085018552828152621cd39160eb1b8183015260e08401528351808501855282815262e995b760e81b81830152610100840152835180850190945290835262e4b88960e81b90830152610120810191909152620002a790601090600a620005af565b50604080516101c08101825260036101808201818152620e5ad960ec1b6101a084015282528251808401845281815262e4b89160e81b602082810191909152808401919091528351808501855282815262e5af8560e81b81830152838501528351808501855282815262e58daf60e81b81830152606084015283518085018552828152620e8beb60ec1b8183015260808401528351808501855282815262e5b7b360e81b8183015260a084015283518085018552828152621cb1b160eb1b8183015260c08401528351808501855282815262734e5560e91b8183015260e08401528351808501855282815262e794b360e81b818301526101008401528351808501855282815262e9858960e81b81830152610120840152835180850185528281526239a22360ea1b81830152610140840152835180850190945290835262e4baa560e81b908301526101608101919091526200040890601190600c62000601565b503480156200041657600080fd5b50604051806040016040528060058152602001644b754b616960d81b815250604051806040016040528060058152602001644b554b414960d81b81525081600090805190602001906200046b92919062000653565b5080516200048190600190602084019062000653565b50506001600a55506200049d62000497620004a3565b620004a7565b62000798565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280548282559060005260206000209081019282156200054b579160200282015b828111156200054b57825180516200053a91849160209091019062000653565b50916020019190600101906200051a565b5062000559929150620006de565b5090565b8280548282559060005260206000209081019282156200054b579160200282015b828111156200054b57825180516200059e91849160209091019062000653565b50916020019190600101906200057e565b8280548282559060005260206000209081019282156200054b579160200282015b828111156200054b5782518051620005f091849160209091019062000653565b5091602001919060010190620005d0565b8280548282559060005260206000209081019282156200054b579160200282015b828111156200054b57825180516200064291849160209091019062000653565b509160200191906001019062000622565b82805462000661906200075b565b90600052602060002090601f016020900481019282620006855760008555620006d0565b82601f10620006a057805160ff1916838001178555620006d0565b82800160010185558215620006d0579182015b82811115620006d0578251825591602001919060010190620006b3565b5062000559929150620006ff565b8082111562000559576000620006f5828262000716565b50600101620006de565b5b8082111562000559576000815560010162000700565b50805462000724906200075b565b6000825580601f1062000738575062000758565b601f016020900490600052602060002090810190620007589190620006ff565b50565b6002810460018216806200077057607f821691505b602082108114156200079257634e487b7160e01b600052602260045260246000fd5b50919050565b61466180620007a86000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80636352211e116100de578063b88d4fde11610097578063dc1cfce611610071578063dc1cfce614610327578063e6d9b7ad1461033a578063e985e9c51461035a578063f2fde38b1461036d5761018e565b8063b88d4fde146102ee578063c79bc98114610301578063c87b56dd146103145761018e565b80636352211e1461029d57806370a08231146102b0578063715018a6146102c35780638da5cb5b146102cb57806395d89b41146102d3578063a22cb465146102db5761018e565b80631a861d261161014b57806342842e0e1161012557806342842e0e1461025c578063428f55201461026f5780634e71d92d146102825780634f6ccce71461028a5761018e565b80631a861d261461022e57806323b872dd146102365780632f745c59146102495761018e565b8063016769cd1461019357806301ffc9a7146101bc57806306fdde03146101dc578063081812fc146101e4578063095ea7b31461020457806318160ddd14610219575b600080fd5b6101a66101a1366004612767565b610380565b6040516101b39190612c1b565b60405180910390f35b6101cf6101ca36600461272f565b610484565b6040516101b39190612c10565b6101a66104a9565b6101f76101f2366004612767565b61053b565b6040516101b39190612bbf565b610217610212366004612706565b610587565b005b61022161061f565b6040516101b3919061324f565b610221610625565b6102176102443660046125c5565b61062b565b610221610257366004612706565b610663565b61021761026a3660046125c5565b6106b5565b6101a661027d366004612767565b6106d0565b6102176107ca565b610221610298366004612767565b610855565b6101f76102ab366004612767565b6108b0565b6102216102be366004612572565b6108e5565b610217610929565b6101f7610974565b6101a6610983565b6102176102e93660046126cc565b610992565b6102176102fc366004612600565b610a60565b6101a661030f366004612767565b610a9f565b6101a6610322366004612767565b610b98565b6101a6610335366004612767565b611384565b61034d610348366004612767565b611477565b6040516101b39190613182565b6101cf610368366004612593565b611906565b61021761037b366004612572565b611934565b606061047c82604051806040016040528060068152602001650474f535349560d41b815250600f805480602002602001604051908101604052809291908181526020016000905b828210156104735783829060005260206000200180546103e6906132e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610412906132e6565b801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050815260200190600101906103c7565b505050506119a5565b90505b919050565b60006001600160e01b0319821663780e9d6360e01b148061047c575061047c82611a3f565b6060600080546104b8906132e6565b80601f01602080910402602001604051908101604052809291908181526020018280546104e4906132e6565b80156105315780601f1061050657610100808354040283529160200191610531565b820191906000526020600020905b81548152906001019060200180831161051457829003601f168201915b5050505050905090565b600061054682611a7f565b61056b5760405162461bcd60e51b815260040161056290612f77565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610592826108b0565b9050806001600160a01b0316836001600160a01b031614156105c65760405162461bcd60e51b815260040161056290613041565b806001600160a01b03166105d8611a9c565b6001600160a01b031614806105f457506105f481610368611a9c565b6106105760405162461bcd60e51b815260040161056290612e52565b61061a8383611aa0565b505050565b60085490565b600c5481565b61063c610636611a9c565b82611b0e565b6106585760405162461bcd60e51b815260040161056290613082565b61061a838383611b93565b600061066e836108e5565b821061068c5760405162461bcd60e51b815260040161056290612c2e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61061a83838360405180602001604052806000815250610a60565b606061047c826040518060400160405280600d81526020016c08a82a4a89098b284a4829c869609b1b8152506011805480602002602001604051908101604052809291908181526020016000905b8282101561047357838290600052602060002001805461073d906132e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610769906132e6565b80156107b65780601f1061078b576101008083540402835291602001916107b6565b820191906000526020600020905b81548152906001019060200180831161079957829003601f168201915b50505050508152602001906001019061071e565b6002600a5414156107ed5760405162461bcd60e51b81526004016105629061311f565b6002600a5560006107fc61061f565b610807906001613258565b9050600c5481111561082b5760405162461bcd60e51b815260040161056290612dc3565b6000818152600d6020526040902042905561084d610847611a9c565b82611cc0565b506001600a55565b600061085f61061f565b821061087d5760405162461bcd60e51b8152600401610562906130d3565b6008828154811061089e57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061047c5760405162461bcd60e51b815260040161056290612ef9565b60006001600160a01b03821661090d5760405162461bcd60e51b815260040161056290612eaf565b506001600160a01b031660009081526003602052604090205490565b610931611a9c565b6001600160a01b0316610942610974565b6001600160a01b0316146109685760405162461bcd60e51b815260040161056290612fc3565b6109726000611cde565b565b600b546001600160a01b031690565b6060600180546104b8906132e6565b61099a611a9c565b6001600160a01b0316826001600160a01b031614156109cb5760405162461bcd60e51b815260040161056290612d8c565b80600560006109d8611a9c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610a1c611a9c565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610a549190612c10565b60405180910390a35050565b610a71610a6b611a9c565b83611b0e565b610a8d5760405162461bcd60e51b815260040161056290613082565b610a9984848484611d30565b50505050565b606061047c826040518060400160405280600c81526020016b46495645454c454d454e545360a01b815250600e805480602002602001604051908101604052809291908181526020016000905b82821015610473578382906000526020600020018054610b0b906132e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b37906132e6565b8015610b845780601f10610b5957610100808354040283529160200191610b84565b820191906000526020600020905b815481529060010190602001808311610b6757829003601f168201915b505050505081526020019060010190610aec565b6060610ba26124f6565b6000610bad84611477565b90506040518060600160405280603e81526020016144c4603e913982526040805160a081019091526061808252613e5a60208301398260016020020152805182600260200201819052506040518060c00160405280608d8152602001614502608d9139606083015260408051610140810190915261011280825261362d6020830139608083015260208181015160a0840152604080516060810190915260278082529091613b859083013960c083015260408181015160e08401528051610280810190915261025a80825261373f602083013961010083015260a0810151610120830152604080516102c081019091526102938082526140f8602083013961014083015260a08101516101608301526040805160e0810190915260ab808252614419602083013961018083015260408051606081019091526031808252613c8860208301396101a083015260608101516101c08301526040805160c0810190915260a080825261405860208301396101e083015260808101516102008301526040805160c08101909152609c808252613bac602083013961022083015260808101516102408301526040805160c08101909152609d808252613ae8602083013961026083015260808101516102808301526040805160c08101909152609d80825261458f60208301396102a083015260808101516102c083015260408051610180810190915261014f80825261399960208301396102e08301526080810151610300830152606081015161032083015260408051610100810190915260d380825261348560208301396103408301526080810151610360830152606081015161038083015260408051610100810190915260d580825261355860208301396103a083015260808101516103c083015260608101516103e083015260408051610100810190915260dc8082526133a960208301396104008301526080810151610420830152606081015161044083015260408051808201909152601481527301f72ce58734a579e17ba32bc3a1f1e3a32bc3a160651b60208201528260236020020152606081015182602460200201819052506040518060c00160405280608e815260200161438b608e91396104a0830152610ee784611d63565b6104c083015260408051610100810190915260cf808252613d8b60208301396104e0830152608081015161050083015260608101516105208301526040805180820190915260018152601f60f91b6020820152610540830152610f4984610a9f565b61056083015260408051610100810190915260d2808252613cb9602083013961058083015260808101516105a083015260608101516105c08301526040805180820190915260018152601f60f91b60208201526105e0830152610fab84610380565b61060083015260408051610100810190915260cb808252613ebb6020830139610620830152608081015161064083015260608101516106608301526040805180820190915260018152601f60f91b602082015261068083015261100d84611384565b6106a083015260408051610100810190915260d2808252613f8660208301396106c083015260808101516106e083015260608101516107008301526040805180820190915260018152601f60f91b602082015261072083015261106f846106d0565b61074083015260408051808201825260118152701e17ba32bc3a1f1e17b39f1e17b9bb339f60791b602080830191909152610760850191909152835181850151838601516060870151608088015160a089015160c08a015160e08b01516101008c0151995160009a6110e39a909101612877565b60408051808303601f19018152908290526101208501516101408601516101608701516101808801516101a08901516101c08a01516101e08b01516102008c0151979950611136988a9890602001612877565b60408051808303601f19018152908290526102208501516102408601516102608701516102808801516102a08901516102c08a01516102e08b01516103008c0151979950611189988a9890602001612877565b60408051601f19818403018152908290526103208501516103408601516103608701516103808801516103a08901516103c08a01516103e08b01516104008c01519799506111dc988a9890602001612877565b60408051808303601f19018152908290526104208501516104408601516104608701516104808801516104a08901516104c08a01516104e08b01516105008c015197995061122f988a9890602001612877565b60408051808303601f19018152908290526105208501516105408601516105608701516105808801516105a08901516105c08a01516105e08b01516106008c0151979950611282988a9890602001612877565b60408051808303601f19018152908290526106208501516106408601516106608701516106808801516106a08901516106c08a01516106e08b01516107008c01519799506112d5988a9890602001612877565b60408051808303601f190181529082905261072085015161074086015161076087015192945061130a93859390602001612820565b6040516020818303038152906040529050600061135761132987611d63565b61133284611e7e565b604051602001611343929190612938565b604051602081830303815290604052611e7e565b90508060405160200161136a9190612b7a565b60408051808303601f190181529190529695505050505050565b606061047c826040518060400160405280600681526020016554454e44525960d01b8152506010805480602002602001604051908101604052809291908181526020016000905b828210156104735783829060005260206000200180546113ea906132e6565b80601f0160208091040260200160405190810160405280929190818152602001828054611416906132e6565b80156114635780601f1061143857610100808354040283529160200191611463565b820191906000526020600020905b81548152906001019060200180831161144657829003601f168201915b5050505050815260200190600101906113cb565b61147f61251e565b6000828152600d6020526040902054806114ab5760405162461bcd60e51b815260040161056290613156565b60006114e66114c26114bd8487613258565b611d63565b6040516020016114d29190612b43565b604051602081830303815290604052611ff2565b905060006114f560648361333c565b905060138111611653576040518060e00160405280604051806040016040528060128152602001710103334b6361e91119919b29b331b91179f160751b81525081526020016040518060400160405280601481526020017301039ba3937b5b296bbb4b23a341e9118971a91160651b81525081526020016040518060400160405280601481526020017301039ba3937b5b29e911198181818181811179f160651b81525081526020016040518060400160405280601081526020016f0103334b6361e911198181818181811160851b81525081526020016040518060400160405280601281526020017101039ba3937b5b29e911198181818181811160751b81525081526020016040518060400160405280601081526020016f0103334b6361e9111b1319cb21b3291160851b81525081526020016040518060400160405280600681526020016579656c6c6f7760d01b81525081525093506118fe565b60598111156117af576040518060e00160405280604051806040016040528060128152602001710103334b6361e91119b98b31b991991179f160751b81525081526020016040518060400160405280601481526020017301039ba3937b5b296bbb4b23a341e9118971a91160651b81525081526020016040518060400160405280601481526020017301039ba3937b5b29e911198181818181811179f160651b81525081526020016040518060400160405280601081526020016f0103334b6361e911198181818181811160851b81525081526020016040518060400160405280601281526020017101039ba3937b5b29e911198181818181811160751b81525081526020016040518060400160405280601081526020016f0103334b6361e9111b3333333333311160851b815250815260200160405180604001604052806005815260200164776869746560d81b81525081525093506118fe565b6040518060e00160405280604051806040016040528060128152602001710103334b6361e9111b31b9a9cb11c11179f160751b81525081526020016040518060400160405280601481526020017301039ba3937b5b296bbb4b23a341e9118971a91160651b81525081526020016040518060400160405280601481526020017301039ba3937b5b29e9111b23331981c1911179f160651b81525081526020016040518060400160405280601081526020016f0103334b6361e9111b23331981c1911160851b81525081526020016040518060400160405280601281526020017101039ba3937b5b29e9111b23331981c1911160751b81525081526020016040518060400160405280601081526020016f0103334b6361e9111b23331981c1911160851b815250815260200160405180604001604052806005815260200164626c61636b60d81b81525081525093505b505050919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61193c611a9c565b6001600160a01b031661194d610974565b6001600160a01b0316146119735760405162461bcd60e51b815260040161056290612fc3565b6001600160a01b0381166119995760405162461bcd60e51b815260040161056290612ccb565b6119a281611cde565b50565b6000838152600d6020526040902054606090806119d45760405162461bcd60e51b815260040161056290613156565b60006119f8856119e76114bd858a613258565b6040516020016114d29291906127f1565b9050600084855183611a0a919061333c565b81518110611a2857634e487b7160e01b600052603260045260246000fd5b602002602001015190508093505050509392505050565b60006001600160e01b031982166380ac58cd60e01b1480611a7057506001600160e01b03198216635b5e139f60e01b145b8061047c575061047c82612023565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ad5826108b0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b1982611a7f565b611b355760405162461bcd60e51b815260040161056290612e06565b6000611b40836108b0565b9050806001600160a01b0316846001600160a01b03161480611b7b5750836001600160a01b0316611b708461053b565b6001600160a01b0316145b80611b8b5750611b8b8185611906565b949350505050565b826001600160a01b0316611ba6826108b0565b6001600160a01b031614611bcc5760405162461bcd60e51b815260040161056290612ff8565b6001600160a01b038216611bf25760405162461bcd60e51b815260040161056290612d48565b611bfd83838361203c565b611c08600082611aa0565b6001600160a01b0383166000908152600360205260408120805460019290611c319084906132a3565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c5f908490613258565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611cda8282604051806020016040528060008152506120c5565b5050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d3b848484611b93565b611d47848484846120f8565b610a995760405162461bcd60e51b815260040161056290612c79565b606081611d8857506040805180820190915260018152600360fc1b602082015261047f565b8160005b8115611db25780611d9c81613321565b9150611dab9050600a83613270565b9150611d8c565b60008167ffffffffffffffff811115611ddb57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e05576020820181803683370190505b5090505b8415611b8b57611e1a6001836132a3565b9150611e27600a8661333c565b611e32906030613258565b60f81b818381518110611e5557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611e77600a86613270565b9450611e09565b805160609080611e9e57505060408051602081019091526000815261047f565b60006003611ead836002613258565b611eb79190613270565b611ec2906004613284565b90506000611ed1826020613258565b67ffffffffffffffff811115611ef757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f21576020820181803683370190505b5090506000604051806060016040528060408152602001613c48604091399050600181016020830160005b86811015611fad576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101611f4c565b506003860660018114611fc75760028114611fd857611fe4565b613d3d60f01b600119830152611fe4565b603d60f81b6000198301525b505050918152949350505050565b60008160405160200161200591906127d5565b60408051601f19818403018152919052805160209091012092915050565b6001600160e01b031981166301ffc9a760e01b14919050565b61204783838361061a565b6001600160a01b0383166120635761205e81612213565b612086565b816001600160a01b0316836001600160a01b031614612086576120868382612257565b6001600160a01b0382166120a25761209d816122f4565b61061a565b826001600160a01b0316826001600160a01b03161461061a5761061a82826123cd565b6120cf8383612411565b6120dc60008484846120f8565b61061a5760405162461bcd60e51b815260040161056290612c79565b600061210c846001600160a01b03166124f0565b1561220857836001600160a01b031663150b7a02612128611a9c565b8786866040518563ffffffff1660e01b815260040161214a9493929190612bd3565b602060405180830381600087803b15801561216457600080fd5b505af1925050508015612194575060408051601f3d908101601f191682019092526121919181019061274b565b60015b6121ee573d8080156121c2576040519150601f19603f3d011682016040523d82523d6000602084013e6121c7565b606091505b5080516121e65760405162461bcd60e51b815260040161056290612c79565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b8b565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001612264846108e5565b61226e91906132a3565b6000838152600760205260409020549091508082146122c1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612306906001906132a3565b6000838152600960205260408120546008805493945090928490811061233c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061236b57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806123b157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006123d8836108e5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166124375760405162461bcd60e51b815260040161056290612f42565b61244081611a7f565b1561245d5760405162461bcd60e51b815260040161056290612d11565b6124696000838361203c565b6001600160a01b0382166000908152600360205260408120805460019290612492908490613258565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b604051806107800160405280603c905b60608152602001906001900390816125065790505090565b6040518060e00160405280606081526020016060815260200160608152602001606081526020016060815260200160608152602001606081525090565b80356001600160a01b038116811461047f57600080fd5b600060208284031215612583578081fd5b61258c8261255b565b9392505050565b600080604083850312156125a5578081fd5b6125ae8361255b565b91506125bc6020840161255b565b90509250929050565b6000806000606084860312156125d9578081fd5b6125e28461255b565b92506125f06020850161255b565b9150604084013590509250925092565b60008060008060808587031215612615578081fd5b61261e8561255b565b9350602061262d81870161255b565b935060408601359250606086013567ffffffffffffffff80821115612650578384fd5b818801915088601f830112612663578384fd5b8135818111156126755761267561337c565b604051601f8201601f19168101850183811182821017156126985761269861337c565b60405281815283820185018b10156126ae578586fd5b81858501868301379081019093019390935250939692955090935050565b600080604083850312156126de578182fd5b6126e78361255b565b9150602083013580151581146126fb578182fd5b809150509250929050565b60008060408385031215612718578182fd5b6127218361255b565b946020939093013593505050565b600060208284031215612740578081fd5b813561258c81613392565b60006020828403121561275c578081fd5b815161258c81613392565b600060208284031215612778578081fd5b5035919050565b600081518084526127978160208601602086016132ba565b601f01601f19169290920160200192915050565b600081516127bd8185602086016132ba565b9290920192915050565b61227d60f01b815260020190565b600082516127e78184602087016132ba565b9190910192915050565b600083516128038184602088016132ba565b8351908301906128178183602088016132ba565b01949350505050565b60008551612832818460208a016132ba565b855190830190612846818360208a016132ba565b85519101906128598183602089016132ba565b845191019061286c8183602088016132ba565b019695505050505050565b60008a51612889818460208f016132ba565b8a5161289b8183860160208f016132ba565b8a5191840101906128b0818360208e016132ba565b89516128c28183850160208e016132ba565b89519290910101906128d8818360208c016132ba565b87516128ea8183850160208c016132ba565b8751929091010190612900818360208a016132ba565b85516129128183850160208a016132ba565b85519290910101906129288183602088016132ba565b019b9a5050505050505050505050565b707b226e616d65223a20224b756b6169202360781b815282516000906129658160118501602088016132ba565b7f222c20226465736372697074696f6e223a20224b756b6169206d616a6f7220776011918401918201527f6f726b2c20746865205468656e20537461676573206f6620436f6e7363696f7560318201527f736e6573732068617320616c6c206578697374696e672042756464686973742060518201527f6c697465726174757265207772697474656e20696e746f20383838382073746160718201527f6765732c207768696368206c6564204b756b616920746f2061206c656164696e60918201527f672072616e6b20616d6f6e6720696e74656c6c65637475616c2066696775726560b18201527f73206f66204a6170616e65736520427564646869736d2e20546865726520617260d18201527f65204e4654732072616e67696e672066726f6d20233120746f2023383838382c60f18201527f2066726f6d207768696368206120706572736f6e2063616e20637265617465206101118201527f7468656972206f776e20737461676520616e6420737461727420646976696e616101318201527f74696f6e2e222c2022696d616765223a2022646174613a696d6167652f7376676101518201526b0ade1b5b0ed8985cd94d8d0b60a21b610171820152612b3a612b3561017d8301866127ab565b6127c7565b95945050505050565b60006e2120a1a5a3a927aaa72221a7a627a960891b82528251612b6d81600f8501602087016132ba565b91909101600f0192915050565b60007f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000082528251612bb281601d8501602087016132ba565b91909101601d0192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c069083018461277f565b9695505050505050565b901515815260200190565b60006020825261258c602083018461277f565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526023908201527f546865207570706572206c696d6974206f6620746f6b656e204944206973203860408201526207070760eb1b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601290820152711d1bdad95b9259081a5cc81a5b9d985b1a5960721b604082015260600190565b600060208252825160e0602084015261319f61010084018261277f565b90506020840151601f19808584030160408601526131bd838361277f565b925060408601519150808584030160608601526131da838361277f565b925060608601519150808584030160808601526131f7838361277f565b925060808601519150808584030160a0860152613214838361277f565b925060a08601519150808584030160c0860152613231838361277f565b925060c08601519150808584030160e086015250612b3a828261277f565b90815260200190565b6000821982111561326b5761326b613350565b500190565b60008261327f5761327f613366565b500490565b600081600019048311821515161561329e5761329e613350565b500290565b6000828210156132b5576132b5613350565b500390565b60005b838110156132d55781810151838201526020016132bd565b83811115610a995750506000910152565b6002810460018216806132fa57607f821691505b6020821081141561331b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561333557613335613350565b5060010190565b60008261334b5761334b613366565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146119a257600080fdfe3ee5a4a9e5b9b23c2f746578743e3c74657874207374796c653d22637572736f723a206d6f76653b22206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223132222069643d227376675f31392220793d223232372e3234393939352220783d223234312e39353134323922207374726f6b652d77696474683d223022203ee4ba94e8a18c3c2f746578743e3c7465787420666f6e742d7765696768743d226e6f726d616c22206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223132222069643d227376675f372220793d223232362e3235393235372220783d2231343622207374726f6b652d77696474683d223022203ee585abe58da63c2f746578743e3c74657874207374796c653d22637572736f723a206d6f76653b22206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223132222069643d227376675f31352220793d223232372220783d223139322e38373530303122207374726f6b652d77696474683d223022203c673e3c7469746c653e4c6179657220313c2f7469746c653e3c672069643d227376675f313622207374726f6b653d226e756c6c223e3c672069643d227376675f38222066696c6c3d226e6f6e65222066696c6c2d72756c653d226576656e6f646422207472616e73666f726d3d226d617472697828312e303238393539373639323430333836322c302c302c312e303238393539373639323430333836322c37392e343238393134363934393632382c34342e363932333534333632353235353529223e3c672069643d227376675f3922207374726f6b653d226e756c6c223e3c672069643d227376675f313022207374726f6b653d226e756c6c223e3c636972636c652069643d227376675f313422203c7061746820643d226d39332e35363636352c32372e30333239386332372e34373935332c302034392e373536312c32322e32373635372034392e373536312c34392e3735363163302c32372e3230343734202d32312e38333332362c34392e3331303035202d34382e39333332392c34392e37343934336c2d302e33383535372c302e303032396331332e35333830352c2d302e32333333312032342e34343038312c2d31312e32383035362032342e34343038312c2d32342e383734323863302c2d31332e3733393737202d31312e31333832382c2d32342e3837383035202d32342e38373830352c2d32342e38373830356c2d302e343131342c2d302e3030333333632d31332e35353030322c2d302e32313937202d32342e34363636352c2d31312e3237323335202d32342e34363636352c2d32342e383734373263302c2d31332e36303233372031302e39313636332c2d32342e36353530322032342e34363636352c2d32342e38373437316c302e343131342c2d302e30303333347a6d302c31322e3433393033632d362e38363938382c30202d31322e34333930322c352e3536393134202d31322e34333930322c31322e343339303263302c362e383639383820352e35363931342c31322e34333930332031322e34333930322c31322e343339303363362e38363938382c302031322e34333930322c2d352e35363931352031322e34333930322c2d31322e343339303363302c2d362e3836393838202d352e35363931342c2d31322e3433393032202d31322e34333930322c2d31322e34333930327a222069643d227376675f313322207374726f6b652d77696474683d22302e35222078313d22323331222079313d22323234222078323d22323331222079323d22323939222069643d227376675f3422207374726f6b652d6c696e656a6f696e3d22756e646566696e656422207374726f6b652d6c696e656361703d22756e646566696e6564222066696c6c2d6f7061636974793d2230222f3e3c7465787420666f6e742d7765696768743d226e6f726d616c22206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223132222069643d227376675f362220793d223232362e3530303030312220783d22393822207374726f6b652d77696474683d223022207374726f6b652d77696474683d22302e35222078313d22313335222079313d22323234222078323d22313335222079323d22323939222069643d227376675f3222207374726f6b652d6c696e656a6f696e3d22756e646566696e656422207374726f6b652d6c696e656361703d22756e646566696e6564222066696c6c2d6f7061636974793d2230222f3e3c6c696e652066696c6c3d226e6f6e65222063783d2239332e3536363635222063793d2237362e3738393037372220723d2235302e323522207374726f6b652d77696474683d22302e35222078313d223837222079313d22323234222078323d223837222079323d22323939222069643d227376675f323022207374726f6b652d6c696e656a6f696e3d22756e646566696e656422207374726f6b652d6c696e656361703d22756e646566696e6564222066696c6c2d6f7061636974793d2230222f3e3c6c696e652066696c6c3d226e6f6e6522204142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c74657874206c65747465722d73706163696e673d2231707822207374796c653d22637572736f723a206d6f76653b22203c2f746578743e3c7465787420666f6e742d7765696768743d22626f6c6422206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223234222069643d227376675f32332220793d223237312e3036323033362220783d223135332e30333739393122207374726f6b652d77696474683d223022203c2f746578743e3c7465787420666f6e742d7765696768743d22626f6c6422206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223234222069643d227376675f32322220793d223237312e3036323033362220783d223130342e38373522207374726f6b652d77696474683d223022203c673e3c7469746c653e6261636b67726f756e643c2f7469746c653e3c7265637420783d222d312220793d222d31222077696474683d223130302522206865696768743d2231303025222069643d2263616e7661735f6261636b67726f756e64223c2f746578743e3c7465787420666f6e742d7765696768743d22626f6c6422206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223234222069643d227376675f32342220793d223237312e3036323033362220783d2232303122207374726f6b652d77696474683d223022203c2f746578743e3c7465787420666f6e742d7765696768743d22626f6c6422206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223234222069643d227376675f32352220793d223237312e3036323033362220783d223234392e33353533303122207374726f6b652d77696474683d223022207374726f6b653d222330303022207374726f6b652d77696474683d22302220783d2232342220793d223333222069643d227376675f31372220666f6e742d73697a653d2231342220666f6e742d66616d696c793d22e5ae8be4bd932220746578742d616e63686f723d2273746172742220786d6c3a73706163653d227072657365727665223e233c2f746578743e3c6c696e652066696c6c3d226e6f6e6522207374726f6b653d226e756c6c222f3e3c7061746820643d226d39332e30393832352c32372e30333733632d31332e35323336322c302e3234393732202d32342e34303936352c31312e3239303434202d32342e34303936352c32342e383733373363302c31332e36303233372031302e39313636332c32342e36353530322032342e34363636352c32342e38373437326c302e343131342c302e30303333336331332e37333937372c302032342e38373830352c31312e31333832382032342e38373830352c32342e383738303563302c31332e3630323337202d31302e39313636332c32342e3635353032202d32342e34363636352c32342e38373437316c2d302e343131342c302e3030333334632d32372e34373935332c30202d34392e373536312c2d32322e3237363537202d34392e373536312c2d34392e3735363163302c2d32372e32303437342032312e38333332362c2d34392e33313030352034382e39333332392c2d34392e37343934336c302e33353434312c2d302e30303233357a6d302e343638342c36322e3138373034632d362e38363938382c30202d31322e34333930322c352e3536393134202d31322e34333930322c31322e343339303263302c362e383639383920352e35363931342c31322e34333930332031322e34333930322c31322e343339303363362e38363938382c302031322e34333930322c2d352e35363931342031322e34333930322c2d31322e343339303363302c2d362e3836393838202d352e35363931342c2d31322e3433393032202d31322e34333930322c2d31322e34333930327a222069643d227376675f3132222066696c6c3d222330303030303022207374726f6b653d226e756c6c222f3e3c636972636c652069643d227376675f31312220207374726f6b653d222330303022207374726f6b652d77696474683d22302220783d2233332e3831323734382220793d223333222069643d227376675f32312220666f6e742d73697a653d2231342220666f6e742d66616d696c793d22e5ae8be4bd932220746578742d616e63686f723d2273746172742220786d6c3a73706163653d227072657365727665223e63783d2239332e3536363635222063793d223130312e3636333336312220723d2231322e34333930323422207374726f6b653d226e756c6c222f3e3c636972636c652069643d22e6a4ade59c86e5bda2222066696c6c3d2223303030303030222063783d2239332e3536363635222063793d2235312e3932343032322220723d2231322e34333930323422207374726f6b653d226e756c6c222f3e3c2f673e3c2f673e3c2f673e3c2f673e3c7376672076696577426f783d2230203020333530203335302220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c672069643d2263616e766173477269642220646973706c61793d226e6f6e65223e3c726563742069643d227376675f31222077696474683d223130302522206865696768743d22313030252220783d22302220793d223022207374726f6b652d77696474683d2230222066696c6c3d2275726c2823677269647061747465726e29222f3e3c2f673e3c2f673e7374726f6b652d77696474683d22302e35222078313d22313833222079313d22323234222078323d22313833222079323d22323939222069643d227376675f3322207374726f6b652d6c696e656a6f696e3d22756e646566696e656422207374726f6b652d6c696e656361703d22756e646566696e6564222066696c6c2d6f7061636974793d2230222f3e3c6c696e652066696c6c3d226e6f6e652220a2646970667358221220c22c84d1d373ae99c522645d467daad0765a3ec5dc7b6c7ea8435bd08a6fd4ca64736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80636352211e116100de578063b88d4fde11610097578063dc1cfce611610071578063dc1cfce614610327578063e6d9b7ad1461033a578063e985e9c51461035a578063f2fde38b1461036d5761018e565b8063b88d4fde146102ee578063c79bc98114610301578063c87b56dd146103145761018e565b80636352211e1461029d57806370a08231146102b0578063715018a6146102c35780638da5cb5b146102cb57806395d89b41146102d3578063a22cb465146102db5761018e565b80631a861d261161014b57806342842e0e1161012557806342842e0e1461025c578063428f55201461026f5780634e71d92d146102825780634f6ccce71461028a5761018e565b80631a861d261461022e57806323b872dd146102365780632f745c59146102495761018e565b8063016769cd1461019357806301ffc9a7146101bc57806306fdde03146101dc578063081812fc146101e4578063095ea7b31461020457806318160ddd14610219575b600080fd5b6101a66101a1366004612767565b610380565b6040516101b39190612c1b565b60405180910390f35b6101cf6101ca36600461272f565b610484565b6040516101b39190612c10565b6101a66104a9565b6101f76101f2366004612767565b61053b565b6040516101b39190612bbf565b610217610212366004612706565b610587565b005b61022161061f565b6040516101b3919061324f565b610221610625565b6102176102443660046125c5565b61062b565b610221610257366004612706565b610663565b61021761026a3660046125c5565b6106b5565b6101a661027d366004612767565b6106d0565b6102176107ca565b610221610298366004612767565b610855565b6101f76102ab366004612767565b6108b0565b6102216102be366004612572565b6108e5565b610217610929565b6101f7610974565b6101a6610983565b6102176102e93660046126cc565b610992565b6102176102fc366004612600565b610a60565b6101a661030f366004612767565b610a9f565b6101a6610322366004612767565b610b98565b6101a6610335366004612767565b611384565b61034d610348366004612767565b611477565b6040516101b39190613182565b6101cf610368366004612593565b611906565b61021761037b366004612572565b611934565b606061047c82604051806040016040528060068152602001650474f535349560d41b815250600f805480602002602001604051908101604052809291908181526020016000905b828210156104735783829060005260206000200180546103e6906132e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610412906132e6565b801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050815260200190600101906103c7565b505050506119a5565b90505b919050565b60006001600160e01b0319821663780e9d6360e01b148061047c575061047c82611a3f565b6060600080546104b8906132e6565b80601f01602080910402602001604051908101604052809291908181526020018280546104e4906132e6565b80156105315780601f1061050657610100808354040283529160200191610531565b820191906000526020600020905b81548152906001019060200180831161051457829003601f168201915b5050505050905090565b600061054682611a7f565b61056b5760405162461bcd60e51b815260040161056290612f77565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610592826108b0565b9050806001600160a01b0316836001600160a01b031614156105c65760405162461bcd60e51b815260040161056290613041565b806001600160a01b03166105d8611a9c565b6001600160a01b031614806105f457506105f481610368611a9c565b6106105760405162461bcd60e51b815260040161056290612e52565b61061a8383611aa0565b505050565b60085490565b600c5481565b61063c610636611a9c565b82611b0e565b6106585760405162461bcd60e51b815260040161056290613082565b61061a838383611b93565b600061066e836108e5565b821061068c5760405162461bcd60e51b815260040161056290612c2e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61061a83838360405180602001604052806000815250610a60565b606061047c826040518060400160405280600d81526020016c08a82a4a89098b284a4829c869609b1b8152506011805480602002602001604051908101604052809291908181526020016000905b8282101561047357838290600052602060002001805461073d906132e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610769906132e6565b80156107b65780601f1061078b576101008083540402835291602001916107b6565b820191906000526020600020905b81548152906001019060200180831161079957829003601f168201915b50505050508152602001906001019061071e565b6002600a5414156107ed5760405162461bcd60e51b81526004016105629061311f565b6002600a5560006107fc61061f565b610807906001613258565b9050600c5481111561082b5760405162461bcd60e51b815260040161056290612dc3565b6000818152600d6020526040902042905561084d610847611a9c565b82611cc0565b506001600a55565b600061085f61061f565b821061087d5760405162461bcd60e51b8152600401610562906130d3565b6008828154811061089e57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061047c5760405162461bcd60e51b815260040161056290612ef9565b60006001600160a01b03821661090d5760405162461bcd60e51b815260040161056290612eaf565b506001600160a01b031660009081526003602052604090205490565b610931611a9c565b6001600160a01b0316610942610974565b6001600160a01b0316146109685760405162461bcd60e51b815260040161056290612fc3565b6109726000611cde565b565b600b546001600160a01b031690565b6060600180546104b8906132e6565b61099a611a9c565b6001600160a01b0316826001600160a01b031614156109cb5760405162461bcd60e51b815260040161056290612d8c565b80600560006109d8611a9c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610a1c611a9c565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610a549190612c10565b60405180910390a35050565b610a71610a6b611a9c565b83611b0e565b610a8d5760405162461bcd60e51b815260040161056290613082565b610a9984848484611d30565b50505050565b606061047c826040518060400160405280600c81526020016b46495645454c454d454e545360a01b815250600e805480602002602001604051908101604052809291908181526020016000905b82821015610473578382906000526020600020018054610b0b906132e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b37906132e6565b8015610b845780601f10610b5957610100808354040283529160200191610b84565b820191906000526020600020905b815481529060010190602001808311610b6757829003601f168201915b505050505081526020019060010190610aec565b6060610ba26124f6565b6000610bad84611477565b90506040518060600160405280603e81526020016144c4603e913982526040805160a081019091526061808252613e5a60208301398260016020020152805182600260200201819052506040518060c00160405280608d8152602001614502608d9139606083015260408051610140810190915261011280825261362d6020830139608083015260208181015160a0840152604080516060810190915260278082529091613b859083013960c083015260408181015160e08401528051610280810190915261025a80825261373f602083013961010083015260a0810151610120830152604080516102c081019091526102938082526140f8602083013961014083015260a08101516101608301526040805160e0810190915260ab808252614419602083013961018083015260408051606081019091526031808252613c8860208301396101a083015260608101516101c08301526040805160c0810190915260a080825261405860208301396101e083015260808101516102008301526040805160c08101909152609c808252613bac602083013961022083015260808101516102408301526040805160c08101909152609d808252613ae8602083013961026083015260808101516102808301526040805160c08101909152609d80825261458f60208301396102a083015260808101516102c083015260408051610180810190915261014f80825261399960208301396102e08301526080810151610300830152606081015161032083015260408051610100810190915260d380825261348560208301396103408301526080810151610360830152606081015161038083015260408051610100810190915260d580825261355860208301396103a083015260808101516103c083015260608101516103e083015260408051610100810190915260dc8082526133a960208301396104008301526080810151610420830152606081015161044083015260408051808201909152601481527301f72ce58734a579e17ba32bc3a1f1e3a32bc3a160651b60208201528260236020020152606081015182602460200201819052506040518060c00160405280608e815260200161438b608e91396104a0830152610ee784611d63565b6104c083015260408051610100810190915260cf808252613d8b60208301396104e0830152608081015161050083015260608101516105208301526040805180820190915260018152601f60f91b6020820152610540830152610f4984610a9f565b61056083015260408051610100810190915260d2808252613cb9602083013961058083015260808101516105a083015260608101516105c08301526040805180820190915260018152601f60f91b60208201526105e0830152610fab84610380565b61060083015260408051610100810190915260cb808252613ebb6020830139610620830152608081015161064083015260608101516106608301526040805180820190915260018152601f60f91b602082015261068083015261100d84611384565b6106a083015260408051610100810190915260d2808252613f8660208301396106c083015260808101516106e083015260608101516107008301526040805180820190915260018152601f60f91b602082015261072083015261106f846106d0565b61074083015260408051808201825260118152701e17ba32bc3a1f1e17b39f1e17b9bb339f60791b602080830191909152610760850191909152835181850151838601516060870151608088015160a089015160c08a015160e08b01516101008c0151995160009a6110e39a909101612877565b60408051808303601f19018152908290526101208501516101408601516101608701516101808801516101a08901516101c08a01516101e08b01516102008c0151979950611136988a9890602001612877565b60408051808303601f19018152908290526102208501516102408601516102608701516102808801516102a08901516102c08a01516102e08b01516103008c0151979950611189988a9890602001612877565b60408051601f19818403018152908290526103208501516103408601516103608701516103808801516103a08901516103c08a01516103e08b01516104008c01519799506111dc988a9890602001612877565b60408051808303601f19018152908290526104208501516104408601516104608701516104808801516104a08901516104c08a01516104e08b01516105008c015197995061122f988a9890602001612877565b60408051808303601f19018152908290526105208501516105408601516105608701516105808801516105a08901516105c08a01516105e08b01516106008c0151979950611282988a9890602001612877565b60408051808303601f19018152908290526106208501516106408601516106608701516106808801516106a08901516106c08a01516106e08b01516107008c01519799506112d5988a9890602001612877565b60408051808303601f190181529082905261072085015161074086015161076087015192945061130a93859390602001612820565b6040516020818303038152906040529050600061135761132987611d63565b61133284611e7e565b604051602001611343929190612938565b604051602081830303815290604052611e7e565b90508060405160200161136a9190612b7a565b60408051808303601f190181529190529695505050505050565b606061047c826040518060400160405280600681526020016554454e44525960d01b8152506010805480602002602001604051908101604052809291908181526020016000905b828210156104735783829060005260206000200180546113ea906132e6565b80601f0160208091040260200160405190810160405280929190818152602001828054611416906132e6565b80156114635780601f1061143857610100808354040283529160200191611463565b820191906000526020600020905b81548152906001019060200180831161144657829003601f168201915b5050505050815260200190600101906113cb565b61147f61251e565b6000828152600d6020526040902054806114ab5760405162461bcd60e51b815260040161056290613156565b60006114e66114c26114bd8487613258565b611d63565b6040516020016114d29190612b43565b604051602081830303815290604052611ff2565b905060006114f560648361333c565b905060138111611653576040518060e00160405280604051806040016040528060128152602001710103334b6361e91119919b29b331b91179f160751b81525081526020016040518060400160405280601481526020017301039ba3937b5b296bbb4b23a341e9118971a91160651b81525081526020016040518060400160405280601481526020017301039ba3937b5b29e911198181818181811179f160651b81525081526020016040518060400160405280601081526020016f0103334b6361e911198181818181811160851b81525081526020016040518060400160405280601281526020017101039ba3937b5b29e911198181818181811160751b81525081526020016040518060400160405280601081526020016f0103334b6361e9111b1319cb21b3291160851b81525081526020016040518060400160405280600681526020016579656c6c6f7760d01b81525081525093506118fe565b60598111156117af576040518060e00160405280604051806040016040528060128152602001710103334b6361e91119b98b31b991991179f160751b81525081526020016040518060400160405280601481526020017301039ba3937b5b296bbb4b23a341e9118971a91160651b81525081526020016040518060400160405280601481526020017301039ba3937b5b29e911198181818181811179f160651b81525081526020016040518060400160405280601081526020016f0103334b6361e911198181818181811160851b81525081526020016040518060400160405280601281526020017101039ba3937b5b29e911198181818181811160751b81525081526020016040518060400160405280601081526020016f0103334b6361e9111b3333333333311160851b815250815260200160405180604001604052806005815260200164776869746560d81b81525081525093506118fe565b6040518060e00160405280604051806040016040528060128152602001710103334b6361e9111b31b9a9cb11c11179f160751b81525081526020016040518060400160405280601481526020017301039ba3937b5b296bbb4b23a341e9118971a91160651b81525081526020016040518060400160405280601481526020017301039ba3937b5b29e9111b23331981c1911179f160651b81525081526020016040518060400160405280601081526020016f0103334b6361e9111b23331981c1911160851b81525081526020016040518060400160405280601281526020017101039ba3937b5b29e9111b23331981c1911160751b81525081526020016040518060400160405280601081526020016f0103334b6361e9111b23331981c1911160851b815250815260200160405180604001604052806005815260200164626c61636b60d81b81525081525093505b505050919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61193c611a9c565b6001600160a01b031661194d610974565b6001600160a01b0316146119735760405162461bcd60e51b815260040161056290612fc3565b6001600160a01b0381166119995760405162461bcd60e51b815260040161056290612ccb565b6119a281611cde565b50565b6000838152600d6020526040902054606090806119d45760405162461bcd60e51b815260040161056290613156565b60006119f8856119e76114bd858a613258565b6040516020016114d29291906127f1565b9050600084855183611a0a919061333c565b81518110611a2857634e487b7160e01b600052603260045260246000fd5b602002602001015190508093505050509392505050565b60006001600160e01b031982166380ac58cd60e01b1480611a7057506001600160e01b03198216635b5e139f60e01b145b8061047c575061047c82612023565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ad5826108b0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b1982611a7f565b611b355760405162461bcd60e51b815260040161056290612e06565b6000611b40836108b0565b9050806001600160a01b0316846001600160a01b03161480611b7b5750836001600160a01b0316611b708461053b565b6001600160a01b0316145b80611b8b5750611b8b8185611906565b949350505050565b826001600160a01b0316611ba6826108b0565b6001600160a01b031614611bcc5760405162461bcd60e51b815260040161056290612ff8565b6001600160a01b038216611bf25760405162461bcd60e51b815260040161056290612d48565b611bfd83838361203c565b611c08600082611aa0565b6001600160a01b0383166000908152600360205260408120805460019290611c319084906132a3565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c5f908490613258565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611cda8282604051806020016040528060008152506120c5565b5050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d3b848484611b93565b611d47848484846120f8565b610a995760405162461bcd60e51b815260040161056290612c79565b606081611d8857506040805180820190915260018152600360fc1b602082015261047f565b8160005b8115611db25780611d9c81613321565b9150611dab9050600a83613270565b9150611d8c565b60008167ffffffffffffffff811115611ddb57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e05576020820181803683370190505b5090505b8415611b8b57611e1a6001836132a3565b9150611e27600a8661333c565b611e32906030613258565b60f81b818381518110611e5557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611e77600a86613270565b9450611e09565b805160609080611e9e57505060408051602081019091526000815261047f565b60006003611ead836002613258565b611eb79190613270565b611ec2906004613284565b90506000611ed1826020613258565b67ffffffffffffffff811115611ef757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f21576020820181803683370190505b5090506000604051806060016040528060408152602001613c48604091399050600181016020830160005b86811015611fad576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101611f4c565b506003860660018114611fc75760028114611fd857611fe4565b613d3d60f01b600119830152611fe4565b603d60f81b6000198301525b505050918152949350505050565b60008160405160200161200591906127d5565b60408051601f19818403018152919052805160209091012092915050565b6001600160e01b031981166301ffc9a760e01b14919050565b61204783838361061a565b6001600160a01b0383166120635761205e81612213565b612086565b816001600160a01b0316836001600160a01b031614612086576120868382612257565b6001600160a01b0382166120a25761209d816122f4565b61061a565b826001600160a01b0316826001600160a01b03161461061a5761061a82826123cd565b6120cf8383612411565b6120dc60008484846120f8565b61061a5760405162461bcd60e51b815260040161056290612c79565b600061210c846001600160a01b03166124f0565b1561220857836001600160a01b031663150b7a02612128611a9c565b8786866040518563ffffffff1660e01b815260040161214a9493929190612bd3565b602060405180830381600087803b15801561216457600080fd5b505af1925050508015612194575060408051601f3d908101601f191682019092526121919181019061274b565b60015b6121ee573d8080156121c2576040519150601f19603f3d011682016040523d82523d6000602084013e6121c7565b606091505b5080516121e65760405162461bcd60e51b815260040161056290612c79565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b8b565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001612264846108e5565b61226e91906132a3565b6000838152600760205260409020549091508082146122c1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612306906001906132a3565b6000838152600960205260408120546008805493945090928490811061233c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061236b57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806123b157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006123d8836108e5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166124375760405162461bcd60e51b815260040161056290612f42565b61244081611a7f565b1561245d5760405162461bcd60e51b815260040161056290612d11565b6124696000838361203c565b6001600160a01b0382166000908152600360205260408120805460019290612492908490613258565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b604051806107800160405280603c905b60608152602001906001900390816125065790505090565b6040518060e00160405280606081526020016060815260200160608152602001606081526020016060815260200160608152602001606081525090565b80356001600160a01b038116811461047f57600080fd5b600060208284031215612583578081fd5b61258c8261255b565b9392505050565b600080604083850312156125a5578081fd5b6125ae8361255b565b91506125bc6020840161255b565b90509250929050565b6000806000606084860312156125d9578081fd5b6125e28461255b565b92506125f06020850161255b565b9150604084013590509250925092565b60008060008060808587031215612615578081fd5b61261e8561255b565b9350602061262d81870161255b565b935060408601359250606086013567ffffffffffffffff80821115612650578384fd5b818801915088601f830112612663578384fd5b8135818111156126755761267561337c565b604051601f8201601f19168101850183811182821017156126985761269861337c565b60405281815283820185018b10156126ae578586fd5b81858501868301379081019093019390935250939692955090935050565b600080604083850312156126de578182fd5b6126e78361255b565b9150602083013580151581146126fb578182fd5b809150509250929050565b60008060408385031215612718578182fd5b6127218361255b565b946020939093013593505050565b600060208284031215612740578081fd5b813561258c81613392565b60006020828403121561275c578081fd5b815161258c81613392565b600060208284031215612778578081fd5b5035919050565b600081518084526127978160208601602086016132ba565b601f01601f19169290920160200192915050565b600081516127bd8185602086016132ba565b9290920192915050565b61227d60f01b815260020190565b600082516127e78184602087016132ba565b9190910192915050565b600083516128038184602088016132ba565b8351908301906128178183602088016132ba565b01949350505050565b60008551612832818460208a016132ba565b855190830190612846818360208a016132ba565b85519101906128598183602089016132ba565b845191019061286c8183602088016132ba565b019695505050505050565b60008a51612889818460208f016132ba565b8a5161289b8183860160208f016132ba565b8a5191840101906128b0818360208e016132ba565b89516128c28183850160208e016132ba565b89519290910101906128d8818360208c016132ba565b87516128ea8183850160208c016132ba565b8751929091010190612900818360208a016132ba565b85516129128183850160208a016132ba565b85519290910101906129288183602088016132ba565b019b9a5050505050505050505050565b707b226e616d65223a20224b756b6169202360781b815282516000906129658160118501602088016132ba565b7f222c20226465736372697074696f6e223a20224b756b6169206d616a6f7220776011918401918201527f6f726b2c20746865205468656e20537461676573206f6620436f6e7363696f7560318201527f736e6573732068617320616c6c206578697374696e672042756464686973742060518201527f6c697465726174757265207772697474656e20696e746f20383838382073746160718201527f6765732c207768696368206c6564204b756b616920746f2061206c656164696e60918201527f672072616e6b20616d6f6e6720696e74656c6c65637475616c2066696775726560b18201527f73206f66204a6170616e65736520427564646869736d2e20546865726520617260d18201527f65204e4654732072616e67696e672066726f6d20233120746f2023383838382c60f18201527f2066726f6d207768696368206120706572736f6e2063616e20637265617465206101118201527f7468656972206f776e20737461676520616e6420737461727420646976696e616101318201527f74696f6e2e222c2022696d616765223a2022646174613a696d6167652f7376676101518201526b0ade1b5b0ed8985cd94d8d0b60a21b610171820152612b3a612b3561017d8301866127ab565b6127c7565b95945050505050565b60006e2120a1a5a3a927aaa72221a7a627a960891b82528251612b6d81600f8501602087016132ba565b91909101600f0192915050565b60007f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000082528251612bb281601d8501602087016132ba565b91909101601d0192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c069083018461277f565b9695505050505050565b901515815260200190565b60006020825261258c602083018461277f565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526023908201527f546865207570706572206c696d6974206f6620746f6b656e204944206973203860408201526207070760eb1b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601290820152711d1bdad95b9259081a5cc81a5b9d985b1a5960721b604082015260600190565b600060208252825160e0602084015261319f61010084018261277f565b90506020840151601f19808584030160408601526131bd838361277f565b925060408601519150808584030160608601526131da838361277f565b925060608601519150808584030160808601526131f7838361277f565b925060808601519150808584030160a0860152613214838361277f565b925060a08601519150808584030160c0860152613231838361277f565b925060c08601519150808584030160e086015250612b3a828261277f565b90815260200190565b6000821982111561326b5761326b613350565b500190565b60008261327f5761327f613366565b500490565b600081600019048311821515161561329e5761329e613350565b500290565b6000828210156132b5576132b5613350565b500390565b60005b838110156132d55781810151838201526020016132bd565b83811115610a995750506000910152565b6002810460018216806132fa57607f821691505b6020821081141561331b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561333557613335613350565b5060010190565b60008261334b5761334b613366565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146119a257600080fdfe3ee5a4a9e5b9b23c2f746578743e3c74657874207374796c653d22637572736f723a206d6f76653b22206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223132222069643d227376675f31392220793d223232372e3234393939352220783d223234312e39353134323922207374726f6b652d77696474683d223022203ee4ba94e8a18c3c2f746578743e3c7465787420666f6e742d7765696768743d226e6f726d616c22206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223132222069643d227376675f372220793d223232362e3235393235372220783d2231343622207374726f6b652d77696474683d223022203ee585abe58da63c2f746578743e3c74657874207374796c653d22637572736f723a206d6f76653b22206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223132222069643d227376675f31352220793d223232372220783d223139322e38373530303122207374726f6b652d77696474683d223022203c673e3c7469746c653e4c6179657220313c2f7469746c653e3c672069643d227376675f313622207374726f6b653d226e756c6c223e3c672069643d227376675f38222066696c6c3d226e6f6e65222066696c6c2d72756c653d226576656e6f646422207472616e73666f726d3d226d617472697828312e303238393539373639323430333836322c302c302c312e303238393539373639323430333836322c37392e343238393134363934393632382c34342e363932333534333632353235353529223e3c672069643d227376675f3922207374726f6b653d226e756c6c223e3c672069643d227376675f313022207374726f6b653d226e756c6c223e3c636972636c652069643d227376675f313422203c7061746820643d226d39332e35363636352c32372e30333239386332372e34373935332c302034392e373536312c32322e32373635372034392e373536312c34392e3735363163302c32372e3230343734202d32312e38333332362c34392e3331303035202d34382e39333332392c34392e37343934336c2d302e33383535372c302e303032396331332e35333830352c2d302e32333333312032342e34343038312c2d31312e32383035362032342e34343038312c2d32342e383734323863302c2d31332e3733393737202d31312e31333832382c2d32342e3837383035202d32342e38373830352c2d32342e38373830356c2d302e343131342c2d302e3030333333632d31332e35353030322c2d302e32313937202d32342e34363636352c2d31312e3237323335202d32342e34363636352c2d32342e383734373263302c2d31332e36303233372031302e39313636332c2d32342e36353530322032342e34363636352c2d32342e38373437316c302e343131342c2d302e30303333347a6d302c31322e3433393033632d362e38363938382c30202d31322e34333930322c352e3536393134202d31322e34333930322c31322e343339303263302c362e383639383820352e35363931342c31322e34333930332031322e34333930322c31322e343339303363362e38363938382c302031322e34333930322c2d352e35363931352031322e34333930322c2d31322e343339303363302c2d362e3836393838202d352e35363931342c2d31322e3433393032202d31322e34333930322c2d31322e34333930327a222069643d227376675f313322207374726f6b652d77696474683d22302e35222078313d22323331222079313d22323234222078323d22323331222079323d22323939222069643d227376675f3422207374726f6b652d6c696e656a6f696e3d22756e646566696e656422207374726f6b652d6c696e656361703d22756e646566696e6564222066696c6c2d6f7061636974793d2230222f3e3c7465787420666f6e742d7765696768743d226e6f726d616c22206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223132222069643d227376675f362220793d223232362e3530303030312220783d22393822207374726f6b652d77696474683d223022207374726f6b652d77696474683d22302e35222078313d22313335222079313d22323234222078323d22313335222079323d22323939222069643d227376675f3222207374726f6b652d6c696e656a6f696e3d22756e646566696e656422207374726f6b652d6c696e656361703d22756e646566696e6564222066696c6c2d6f7061636974793d2230222f3e3c6c696e652066696c6c3d226e6f6e65222063783d2239332e3536363635222063793d2237362e3738393037372220723d2235302e323522207374726f6b652d77696474683d22302e35222078313d223837222079313d22323234222078323d223837222079323d22323939222069643d227376675f323022207374726f6b652d6c696e656a6f696e3d22756e646566696e656422207374726f6b652d6c696e656361703d22756e646566696e6564222066696c6c2d6f7061636974793d2230222f3e3c6c696e652066696c6c3d226e6f6e6522204142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c74657874206c65747465722d73706163696e673d2231707822207374796c653d22637572736f723a206d6f76653b22203c2f746578743e3c7465787420666f6e742d7765696768743d22626f6c6422206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223234222069643d227376675f32332220793d223237312e3036323033362220783d223135332e30333739393122207374726f6b652d77696474683d223022203c2f746578743e3c7465787420666f6e742d7765696768743d22626f6c6422206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223234222069643d227376675f32322220793d223237312e3036323033362220783d223130342e38373522207374726f6b652d77696474683d223022203c673e3c7469746c653e6261636b67726f756e643c2f7469746c653e3c7265637420783d222d312220793d222d31222077696474683d223130302522206865696768743d2231303025222069643d2263616e7661735f6261636b67726f756e64223c2f746578743e3c7465787420666f6e742d7765696768743d22626f6c6422206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223234222069643d227376675f32342220793d223237312e3036323033362220783d2232303122207374726f6b652d77696474683d223022203c2f746578743e3c7465787420666f6e742d7765696768743d22626f6c6422206c65747465722d73706163696e673d22357078222077726974696e672d6d6f64653d2274622d726c2220786d6c3a73706163653d2270726573657276652220746578742d616e63686f723d2273746172742220666f6e742d66616d696c793d22e5ae8be4bd932220666f6e742d73697a653d223234222069643d227376675f32352220793d223237312e3036323033362220783d223234392e33353533303122207374726f6b652d77696474683d223022207374726f6b653d222330303022207374726f6b652d77696474683d22302220783d2232342220793d223333222069643d227376675f31372220666f6e742d73697a653d2231342220666f6e742d66616d696c793d22e5ae8be4bd932220746578742d616e63686f723d2273746172742220786d6c3a73706163653d227072657365727665223e233c2f746578743e3c6c696e652066696c6c3d226e6f6e6522207374726f6b653d226e756c6c222f3e3c7061746820643d226d39332e30393832352c32372e30333733632d31332e35323336322c302e3234393732202d32342e34303936352c31312e3239303434202d32342e34303936352c32342e383733373363302c31332e36303233372031302e39313636332c32342e36353530322032342e34363636352c32342e38373437326c302e343131342c302e30303333336331332e37333937372c302032342e38373830352c31312e31333832382032342e38373830352c32342e383738303563302c31332e3630323337202d31302e39313636332c32342e3635353032202d32342e34363636352c32342e38373437316c2d302e343131342c302e3030333334632d32372e34373935332c30202d34392e373536312c2d32322e3237363537202d34392e373536312c2d34392e3735363163302c2d32372e32303437342032312e38333332362c2d34392e33313030352034382e39333332392c2d34392e37343934336c302e33353434312c2d302e30303233357a6d302e343638342c36322e3138373034632d362e38363938382c30202d31322e34333930322c352e3536393134202d31322e34333930322c31322e343339303263302c362e383639383920352e35363931342c31322e34333930332031322e34333930322c31322e343339303363362e38363938382c302031322e34333930322c2d352e35363931342031322e34333930322c2d31322e343339303363302c2d362e3836393838202d352e35363931342c2d31322e3433393032202d31322e34333930322c2d31322e34333930327a222069643d227376675f3132222066696c6c3d222330303030303022207374726f6b653d226e756c6c222f3e3c636972636c652069643d227376675f31312220207374726f6b653d222330303022207374726f6b652d77696474683d22302220783d2233332e3831323734382220793d223333222069643d227376675f32312220666f6e742d73697a653d2231342220666f6e742d66616d696c793d22e5ae8be4bd932220746578742d616e63686f723d2273746172742220786d6c3a73706163653d227072657365727665223e63783d2239332e3536363635222063793d223130312e3636333336312220723d2231322e34333930323422207374726f6b653d226e756c6c222f3e3c636972636c652069643d22e6a4ade59c86e5bda2222066696c6c3d2223303030303030222063783d2239332e3536363635222063793d2235312e3932343032322220723d2231322e34333930323422207374726f6b653d226e756c6c222f3e3c2f673e3c2f673e3c2f673e3c2f673e3c7376672076696577426f783d2230203020333530203335302220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c672069643d2263616e766173477269642220646973706c61793d226e6f6e65223e3c726563742069643d227376675f31222077696474683d223130302522206865696768743d22313030252220783d22302220793d223022207374726f6b652d77696474683d2230222066696c6c3d2275726c2823677269647061747465726e29222f3e3c2f673e3c2f673e7374726f6b652d77696474683d22302e35222078313d22313833222079313d22323234222078323d22313833222079323d22323939222069643d227376675f3322207374726f6b652d6c696e656a6f696e3d22756e646566696e656422207374726f6b652d6c696e656361703d22756e646566696e6564222066696c6c2d6f7061636974793d2230222f3e3c6c696e652066696c6c3d226e6f6e652220a2646970667358221220c22c84d1d373ae99c522645d467daad0765a3ec5dc7b6c7ea8435bd08a6fd4ca64736f6c63430008000033
Deployed Bytecode Sourcemap
44141:14276:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45878:130;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37991:224;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25115:100::-;;;:::i;26674:221::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26197:411::-;;;;;;:::i;:::-;;:::i;:::-;;38631:113;;;:::i;:::-;;;;;;;:::i;44233:30::-;;;:::i;27564:339::-;;;;;;:::i;:::-;;:::i;38299:256::-;;;;;;:::i;:::-;;:::i;27974:185::-;;;;;;:::i;:::-;;:::i;46158:151::-;;;;;;:::i;:::-;;:::i;57369:255::-;;;:::i;38821:233::-;;;;;;:::i;:::-;;:::i;24809:239::-;;;;;;:::i;:::-;;:::i;24539:208::-;;;;;;:::i;:::-;;:::i;9555:94::-;;;:::i;8904:87::-;;;:::i;25284:104::-;;;:::i;26967:295::-;;;;;;:::i;:::-;;:::i;28230:328::-;;;;;;:::i;:::-;;:::i;45718:148::-;;;;;;:::i;:::-;;:::i;48549:8812::-;;;;;;:::i;:::-;;:::i;46020:130::-;;;;;;:::i;:::-;;:::i;46746:1795::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27333:164::-;;;;;;:::i;:::-;;:::i;9804:192::-;;;;;;:::i;:::-;;:::i;45878:130::-;45935:13;45968:32;45974:7;45968:32;;;;;;;;;;;;;-1:-1:-1;;;45968:32:0;;;45993:6;45968:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:32::i;:::-;45961:39;;45878:130;;;;:::o;37991:224::-;38093:4;-1:-1:-1;;;;;;38117:50:0;;-1:-1:-1;;;38117:50:0;;:90;;;38171:36;38195:11;38171:23;:36::i;25115:100::-;25169:13;25202:5;25195:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25115:100;:::o;26674:221::-;26750:7;26778:16;26786:7;26778;:16::i;:::-;26770:73;;;;-1:-1:-1;;;26770:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;26863:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26863:24:0;;26674:221::o;26197:411::-;26278:13;26294:23;26309:7;26294:14;:23::i;:::-;26278:39;;26342:5;-1:-1:-1;;;;;26336:11:0;:2;-1:-1:-1;;;;;26336:11:0;;;26328:57;;;;-1:-1:-1;;;26328:57:0;;;;;;;:::i;:::-;26436:5;-1:-1:-1;;;;;26420:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26420:21:0;;:62;;;;26445:37;26462:5;26469:12;:10;:12::i;26445:37::-;26398:168;;;;-1:-1:-1;;;26398:168:0;;;;;;;:::i;:::-;26579:21;26588:2;26592:7;26579:8;:21::i;:::-;26197:411;;;:::o;38631:113::-;38719:10;:17;38631:113;:::o;44233:30::-;;;;:::o;27564:339::-;27759:41;27778:12;:10;:12::i;:::-;27792:7;27759:18;:41::i;:::-;27751:103;;;;-1:-1:-1;;;27751:103:0;;;;;;;:::i;:::-;27867:28;27877:4;27883:2;27887:7;27867:9;:28::i;38299:256::-;38396:7;38432:23;38449:5;38432:16;:23::i;:::-;38424:5;:31;38416:87;;;;-1:-1:-1;;;38416:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;38521:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38299:256::o;27974:185::-;28112:39;28129:4;28135:2;28139:7;28112:39;;;;;;;;;;;;:16;:39::i;46158:151::-;46222:13;46255:46;46261:7;46255:46;;;;;;;;;;;;;-1:-1:-1;;;46255:46:0;;;46287:13;46255:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57369:255;11843:1;12439:7;;:19;;12431:63;;;;-1:-1:-1;;;12431:63:0;;;;;;;:::i;:::-;11843:1;12572:7;:18;57417:15:::1;57435:13;:11;:13::i;:::-;:15;::::0;57449:1:::1;57435:15;:::i;:::-;57417:33;;57480:8;;57469:7;:19;;57461:67;;;;-1:-1:-1::0;;;57461:67:0::1;;;;;;;:::i;:::-;57539:16;::::0;;;:7:::1;:16;::::0;;;;57558:15:::1;57539:34:::0;;57584:32:::1;57594:12;:10;:12::i;:::-;57608:7;57584:9;:32::i;:::-;-1:-1:-1::0;11799:1:0;12751:7;:22;57369:255::o;38821:233::-;38896:7;38932:30;:28;:30::i;:::-;38924:5;:38;38916:95;;;;-1:-1:-1;;;38916:95:0;;;;;;;:::i;:::-;39029:10;39040:5;39029:17;;;;;;-1:-1:-1;;;39029:17:0;;;;;;;;;;;;;;;;;39022:24;;38821:233;;;:::o;24809:239::-;24881:7;24917:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24917:16:0;24952:19;24944:73;;;;-1:-1:-1;;;24944:73:0;;;;;;;:::i;24539:208::-;24611:7;-1:-1:-1;;;;;24639:19:0;;24631:74;;;;-1:-1:-1;;;24631:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;24723:16:0;;;;;:9;:16;;;;;;;24539:208::o;9555:94::-;9135:12;:10;:12::i;:::-;-1:-1:-1;;;;;9124:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9124:23:0;;9116:68;;;;-1:-1:-1;;;9116:68:0;;;;;;;:::i;:::-;9620:21:::1;9638:1;9620:9;:21::i;:::-;9555:94::o:0;8904:87::-;8977:6;;-1:-1:-1;;;;;8977:6:0;8904:87;:::o;25284:104::-;25340:13;25373:7;25366:14;;;;;:::i;26967:295::-;27082:12;:10;:12::i;:::-;-1:-1:-1;;;;;27070:24:0;:8;-1:-1:-1;;;;;27070:24:0;;;27062:62;;;;-1:-1:-1;;;27062:62:0;;;;;;;:::i;:::-;27182:8;27137:18;:32;27156:12;:10;:12::i;:::-;-1:-1:-1;;;;;27137:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;27137:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;27137:53:0;;;;;;;;;;;27221:12;:10;:12::i;:::-;-1:-1:-1;;;;;27206:48:0;;27245:8;27206:48;;;;;;:::i;:::-;;;;;;;;26967:295;;:::o;28230:328::-;28405:41;28424:12;:10;:12::i;:::-;28438:7;28405:18;:41::i;:::-;28397:103;;;;-1:-1:-1;;;28397:103:0;;;;;;;:::i;:::-;28511:39;28525:4;28531:2;28535:7;28544:5;28511:13;:39::i;:::-;28230:328;;;;:::o;45718:148::-;45781:13;45814:44;45820:7;45814:44;;;;;;;;;;;;;-1:-1:-1;;;45814:44:0;;;45845:12;45814:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48549:8812;48614:13;48640:23;;:::i;:::-;48674:17;48694:22;48708:7;48694:13;:22::i;:::-;48674:42;;48737:82;;;;;;;;;;;;;;;;;;;48834:117;;;;;;;;;;;;;;48737:8;48834:117;;;:5;48840:1;48834:8;;;:117;48973:20;;48962:5;48968:1;48962:8;;;:31;;;;49004:161;;;;;;;;;;;;;;;;;:8;;;:161;49176:294;;;;;;;;;;;;;;49004:8;49176:294;;;:8;;;:294;:8;49492:16;;;;49481:8;;;:27;49519:59;;;;;;;;;;;;;;;;;;;;:8;;;:59;49600:16;;;;;49589:8;;;:27;49627:622;;;;;;;;;;;;;49519:8;49627:622;;;:8;;;:622;50271:15;;;;50260:8;;;:26;50297:680;;;;;;;;;;;;;;49627:8;50297:680;;;:9;;;:680;51000:15;;;;50988:9;;;:27;51026:192;;;;;;;;;;;;;;50297:9;51026:192;;;:9;;;:192;51229:70;;;;;;;;;;;;;;51026:9;51229:70;;;:9;;;:70;51322:18;;;;51310:9;;;:30;51351:181;;;;;;;;;;;;;;51229:9;51351:181;;;:9;;;:181;51555:20;;;;51543:9;;;:32;51586:177;;;;;;;;;;;;;;51351:9;51586:177;;;:9;;;:177;51786:20;;;;51774:9;;;:32;51817:178;;;;;;;;;;;;;;51586:9;51817:178;;;:9;;;:178;52018:20;;;;52006:9;;;:32;52049:178;;;;;;;;;;;;;;51817:9;52049:178;;;:9;;;:178;52250:20;;;;52238:9;;;:32;52281:356;;;;;;;;;;;;;;52049:9;52281:356;;;:9;;;:356;52660:20;;;;52648:9;;;:32;52703:18;;;;52691:9;;;:30;52732:232;;;;;;;;;;;;;;52281:9;52732:232;;;:9;;;:232;52987:20;;;;52975:9;;;:32;53030:18;;;;53018:9;;;:30;53059:234;;;;;;;;;;;;;;52732:9;53059:234;;;:9;;;:234;53316:20;;;;53304:9;;;:32;53359:18;;;;53347:9;;;:30;53388:241;;;;;;;;;;;;;;53059:9;53388:241;;;:9;;;:241;53652:20;;;;53640:9;;;:32;53695:18;;;;53683:9;;;:30;53724:41;;;;;;;;;;;;-1:-1:-1;;;53394:2:0;53724:41;;;53388:5;53730:2;53724:9;;;:41;53788:18;;;;53776:5;53782:2;53776:9;;;:30;;;;53817:163;;;;;;;;;;;;;;;;;:9;;;:163;54003:17;54012:7;54003:8;:17::i;:::-;53991:9;;;:29;54031:228;;;;;;;;;;;;;;53991:9;54031:228;;;:9;;;:228;54282:20;;;;54270:9;;;:32;54325:18;;;;54313:9;;;:30;54354:22;;;;;;;;;;;;-1:-1:-1;;;54031:9:0;54354:22;;;:9;;;:22;54399:24;54415:7;54399:15;:24::i;:::-;54387:9;;;:36;54434:231;;;;;;;;;;;;;;54387:9;54434:231;;;:9;;;:231;54688:20;;;;54676:9;;;:32;54731:18;;;;54719:9;;;:30;54760:22;;;;;;;;;;;;-1:-1:-1;;;54434:9:0;54760:22;;;:9;;;:22;54805:18;54815:7;54805:9;:18::i;:::-;54793:9;;;:30;54834:224;;;;;;;;;;;;;;54793:9;54834:224;;;:9;;;:224;55081:20;;;;55069:9;;;:32;55124:18;;;;55112:9;;;:30;55153:22;;;;;;;;;;;;-1:-1:-1;;;54834:9:0;55153:22;;;:9;;;:22;55198:18;55208:7;55198:9;:18::i;:::-;55186:9;;;:30;55227:231;;;;;;;;;;;;;;55186:9;55227:231;;;:9;;;:231;55481:20;;;;55469:9;;;:32;55524:18;;;;55512:9;;;:30;55553:22;;;;;;;;;;;;-1:-1:-1;;;55227:9:0;55553:22;;;:9;;;:22;55598:25;55615:7;55598:16;:25::i;:::-;55586:9;;;:37;55634:31;;;;;;;;;;;-1:-1:-1;;;55586:9:0;55634:31;;;;;;;:9;;;:31;;;;55725:8;;55735;;;;55745;;;;55755;;;;55765;;;;55775;;;;55785;;;;55795;;;;55804;;;;55708:105;;-1:-1:-1;;55708:105:0;;55804:8;;55708:105;;:::i;:::-;;;;;;;-1:-1:-1;;55708:105:0;;;;;;;55866:8;;;;55876:9;;;;55887;;;;55898;;;;55909;;;;55920;;;;55930;;;;55940;;;;55708:105;;-1:-1:-1;55841:109:0;;55708:105;;55940:9;55866:8;55841:109;;:::i;:::-;;;;;;;-1:-1:-1;;55841:109:0;;;;;;;56003:9;;;;56014;;;;56025;;;;56036;;;;56047;;;;56057;;;;56067;;;;56077;;;;55841:109;;-1:-1:-1;55978:109:0;;55841;;56077:9;56003;55978:109;;:::i;:::-;;;;-1:-1:-1;;55978:109:0;;;;;;;;;;56140:9;;;;56151;;;;56162;;;;56173;;;;56184;;;;56194;;;;56204;;;;56214;;;;55978:109;;-1:-1:-1;56115:109:0;;55978;;56214:9;56140;56115:109;;:::i;:::-;;;;;;;-1:-1:-1;;56115:109:0;;;;;;;56277:9;;;;56288;;;;56299;;;;56310;;;;56321;;;;56332;;;;56342;;;;56352;;;;56115:109;;-1:-1:-1;56252:110:0;;56115:109;;56352:9;56277;56252:110;;:::i;:::-;;;;;;;-1:-1:-1;;56252:110:0;;;;;;;56415:9;;;;56426;;;;56437;;;;56448;;;;56459;;;;56470;;;;56480;;;;56490;;;;56252:110;;-1:-1:-1;56390:110:0;;56252;;56490:9;56415;56390:110;;:::i;:::-;;;;;;;-1:-1:-1;;56390:110:0;;;;;;;56553:9;;;;56564;;;;56575;;;;56586;;;;56597;;;;56608;;;;56618;;;;56628;;;;56390:110;;-1:-1:-1;56528:110:0;;56390;;56628:9;56553;56528:110;;:::i;:::-;;;;;;;-1:-1:-1;;56528:110:0;;;;;;;56691:9;;;;56702;;;;56713;;;;56528:110;;-1:-1:-1;56666:57:0;;56528:110;;56713:9;56691;56666:57;;:::i;:::-;;;;;;;;;;;;;56650:74;;56735:18;56756:490;56821:17;56830:7;56821:8;:17::i;:::-;57208:28;57228:6;57208:13;:28::i;:::-;56783:460;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56756:13;:490::i;:::-;56735:511;;57323:4;57273:55;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;57273:55:0;;;;;;;48549:8812;-1:-1:-1;;;;;;48549:8812:0:o;46020:130::-;46077:13;46110:32;46116:7;46110:32;;;;;;;;;;;;;-1:-1:-1;;;46110:32:0;;;46135:6;46110:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46746:1795;46807:17;;:::i;:::-;46836:14;46853:16;;;:7;:16;;;;;;46889:11;46880:43;;;;-1:-1:-1;;;46880:43:0;;;;;;;:::i;:::-;46934:12;46949:77;46999:24;47008:14;47016:6;47008:7;:14;:::i;:::-;46999:8;:24::i;:::-;46963:61;;;;;;;;:::i;:::-;;;;;;;;;;;;;46949:6;:77::i;:::-;46934:92;-1:-1:-1;47037:17:0;47057:10;47064:3;46934:92;47057:10;:::i;:::-;47037:30;;47100:2;47087:9;:15;47083:1419;;47126:420;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47126:420:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47126:420:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47126:420:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47126:420:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47126:420:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47126:420:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47126:420:0;;;;;;47119:427;;47083:1419;;;47578:2;47567:9;:13;47563:939;;;47606:418;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47606:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47606:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47606:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47606:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47606:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47606:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47606:418:0;;;;;;47599:425;;47563:939;;;48069:418;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48069:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48069:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48069:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48069:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48069:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48069:418:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48069:418:0;;;;;;48062:425;;47563:939;48522:11;;;46746:1795;;;:::o;27333:164::-;-1:-1:-1;;;;;27454:25:0;;;27430:4;27454:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27333:164::o;9804:192::-;9135:12;:10;:12::i;:::-;-1:-1:-1;;;;;9124:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9124:23:0;;9116:68;;;;-1:-1:-1;;;9116:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9893:22:0;::::1;9885:73;;;;-1:-1:-1::0;;;9885:73:0::1;;;;;;;:::i;:::-;9969:19;9979:8;9969:9;:19::i;:::-;9804:192:::0;:::o;46317:421::-;46452:14;46469:16;;;:7;:16;;;;;;46426:13;;46505:11;46496:43;;;;-1:-1:-1;;;46496:43:0;;;;;;;:::i;:::-;46550:12;46565:69;46596:9;46607:24;46616:14;46624:6;46616:7;:14;:::i;46607:24::-;46579:53;;;;;;;;;:::i;46565:69::-;46550:84;;46645:20;46668:11;46687;:18;46680:4;:25;;;;:::i;:::-;46668:38;;;;;;-1:-1:-1;;;46668:38:0;;;;;;;;;;;;;;;46645:61;;46724:6;46717:13;;;;;46317:421;;;;;:::o;24170:305::-;24272:4;-1:-1:-1;;;;;;24309:40:0;;-1:-1:-1;;;24309:40:0;;:105;;-1:-1:-1;;;;;;;24366:48:0;;-1:-1:-1;;;24366:48:0;24309:105;:158;;;;24431:36;24455:11;24431:23;:36::i;30068:127::-;30133:4;30157:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30157:16:0;:30;;;30068:127::o;7764:98::-;7844:10;7764:98;:::o;34050:174::-;34125:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34125:29:0;-1:-1:-1;;;;;34125:29:0;;;;;;;;:24;;34179:23;34125:24;34179:14;:23::i;:::-;-1:-1:-1;;;;;34170:46:0;;;;;;;;;;;34050:174;;:::o;30362:348::-;30455:4;30480:16;30488:7;30480;:16::i;:::-;30472:73;;;;-1:-1:-1;;;30472:73:0;;;;;;;:::i;:::-;30556:13;30572:23;30587:7;30572:14;:23::i;:::-;30556:39;;30625:5;-1:-1:-1;;;;;30614:16:0;:7;-1:-1:-1;;;;;30614:16:0;;:51;;;;30658:7;-1:-1:-1;;;;;30634:31:0;:20;30646:7;30634:11;:20::i;:::-;-1:-1:-1;;;;;30634:31:0;;30614:51;:87;;;;30669:32;30686:5;30693:7;30669:16;:32::i;:::-;30606:96;30362:348;-1:-1:-1;;;;30362:348:0:o;33354:578::-;33513:4;-1:-1:-1;;;;;33486:31:0;:23;33501:7;33486:14;:23::i;:::-;-1:-1:-1;;;;;33486:31:0;;33478:85;;;;-1:-1:-1;;;33478:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33582:16:0;;33574:65;;;;-1:-1:-1;;;33574:65:0;;;;;;;:::i;:::-;33652:39;33673:4;33679:2;33683:7;33652:20;:39::i;:::-;33756:29;33773:1;33777:7;33756:8;:29::i;:::-;-1:-1:-1;;;;;33798:15:0;;;;;;:9;:15;;;;;:20;;33817:1;;33798:15;:20;;33817:1;;33798:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33829:13:0;;;;;;:9;:13;;;;;:18;;33846:1;;33829:13;:18;;33846:1;;33829:18;:::i;:::-;;;;-1:-1:-1;;33858:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33858:21:0;-1:-1:-1;;;;;33858:21:0;;;;;;;;;33897:27;;33858:16;;33897:27;;;;;;;33354:578;;;:::o;31052:110::-;31128:26;31138:2;31142:7;31128:26;;;;;;;;;;;;:9;:26::i;:::-;31052:110;;:::o;10004:173::-;10079:6;;;-1:-1:-1;;;;;10096:17:0;;;-1:-1:-1;;;;;;10096:17:0;;;;;;;10129:40;;10079:6;;;10096:17;10079:6;;10129:40;;10060:16;;10129:40;10004:173;;:::o;29440:315::-;29597:28;29607:4;29613:2;29617:7;29597:9;:28::i;:::-;29644:48;29667:4;29673:2;29677:7;29686:5;29644:22;:48::i;:::-;29636:111;;;;-1:-1:-1;;;29636:111:0;;;;;;;:::i;57636:715::-;57692:13;57905:10;57901:53;;-1:-1:-1;57932:10:0;;;;;;;;;;;;-1:-1:-1;;;57932:10:0;;;;;;57901:53;57979:5;57964:12;58020:78;58027:9;;58020:78;;58053:8;;;;:::i;:::-;;-1:-1:-1;58076:10:0;;-1:-1:-1;58084:2:0;58076:10;;:::i;:::-;;;58020:78;;;58108:19;58140:6;58130:17;;;;;;-1:-1:-1;;;58130:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58130:17:0;;58108:39;;58158:154;58165:10;;58158:154;;58192:11;58202:1;58192:11;;:::i;:::-;;-1:-1:-1;58261:10:0;58269:2;58261:5;:10;:::i;:::-;58248:24;;:2;:24;:::i;:::-;58235:39;;58218:6;58225;58218:14;;;;;;-1:-1:-1;;;58218:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;58218:56:0;;;;;;;;-1:-1:-1;58289:11:0;58298:2;58289:11;;:::i;:::-;;;58158:154;;58768:1607;58866:11;;58826:13;;58892:8;58888:23;;-1:-1:-1;;58902:9:0;;;;;;;;;-1:-1:-1;58902:9:0;;;;58888:23;58963:18;59001:1;58990:7;:3;58996:1;58990:7;:::i;:::-;58989:13;;;;:::i;:::-;58984:19;;:1;:19;:::i;:::-;58963:40;-1:-1:-1;59061:19:0;59093:15;58963:40;59106:2;59093:15;:::i;:::-;59083:26;;;;;;-1:-1:-1;;;59083:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59083:26:0;;59061:48;;59122:18;59143:5;;;;;;;;;;;;;;;;;59122:26;;59212:1;59205:5;59201:13;59257:2;59249:6;59245:15;59308:1;59276:777;59331:3;59328:1;59325:10;59276:777;;;59386:1;59429:12;;;;;59423:19;59524:4;59512:2;59508:14;;;;;59490:40;;59484:47;59633:2;59629:14;;;59625:25;;59611:40;;59605:47;59762:1;59758:13;;;59754:24;;59740:39;;59734:46;59882:16;;;;59868:31;;59862:38;59560:1;59556:11;;;59654:4;59601:58;;;59592:68;59685:11;;59730:57;;;59721:67;;;;59813:11;;59858:49;;59849:59;59937:3;59933:13;59966:22;;60036:1;60021:17;;;;59379:9;59276:777;;;59280:44;60085:1;60080:3;60076:11;60106:1;60101:84;;;;60204:1;60199:82;;;;60069:212;;60101:84;-1:-1:-1;;;;;60134:17:0;;60127:43;60101:84;;60199:82;-1:-1:-1;;;;;60232:17:0;;60225:41;60069:212;-1:-1:-1;;;60297:26:0;;;;58768:1607;-1:-1:-1;;;;58768:1607:0:o;45568:138::-;45628:7;45690:5;45673:23;;;;;;;;:::i;:::-;;;;-1:-1:-1;;45673:23:0;;;;;;;;;45663:34;;45673:23;45663:34;;;;;45568:138;-1:-1:-1;;45568:138:0:o;22777:157::-;-1:-1:-1;;;;;;22886:40:0;;-1:-1:-1;;;22886:40:0;22777:157;;;:::o;39667:589::-;39811:45;39838:4;39844:2;39848:7;39811:26;:45::i;:::-;-1:-1:-1;;;;;39873:18:0;;39869:187;;39908:40;39940:7;39908:31;:40::i;:::-;39869:187;;;39978:2;-1:-1:-1;;;;;39970:10:0;:4;-1:-1:-1;;;;;39970:10:0;;39966:90;;39997:47;40030:4;40036:7;39997:32;:47::i;:::-;-1:-1:-1;;;;;40070:16:0;;40066:183;;40103:45;40140:7;40103:36;:45::i;:::-;40066:183;;;40176:4;-1:-1:-1;;;;;40170:10:0;:2;-1:-1:-1;;;;;40170:10:0;;40166:83;;40197:40;40225:2;40229:7;40197:27;:40::i;31389:321::-;31519:18;31525:2;31529:7;31519:5;:18::i;:::-;31570:54;31601:1;31605:2;31609:7;31618:5;31570:22;:54::i;:::-;31548:154;;;;-1:-1:-1;;;31548:154:0;;;;;;;:::i;34789:803::-;34944:4;34965:15;:2;-1:-1:-1;;;;;34965:13:0;;:15::i;:::-;34961:624;;;35017:2;-1:-1:-1;;;;;35001:36:0;;35038:12;:10;:12::i;:::-;35052:4;35058:7;35067:5;35001:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35001:72:0;;;;;;;;-1:-1:-1;;35001:72:0;;;;;;;;;;;;:::i;:::-;;;34997:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35247:13:0;;35243:272;;35290:60;;-1:-1:-1;;;35290:60:0;;;;;;;:::i;35243:272::-;35465:6;35459:13;35450:6;35446:2;35442:15;35435:38;34997:533;-1:-1:-1;;;;;;35124:55:0;-1:-1:-1;;;35124:55:0;;-1:-1:-1;35117:62:0;;34961:624;-1:-1:-1;35569:4:0;34789:803;;;;;;:::o;40979:164::-;41083:10;:17;;41056:24;;;;:15;:24;;;;;:44;;;41111:24;;;;;;;;;;;;40979:164::o;41770:988::-;42036:22;42086:1;42061:22;42078:4;42061:16;:22::i;:::-;:26;;;;:::i;:::-;42098:18;42119:26;;;:17;:26;;;;;;42036:51;;-1:-1:-1;42252:28:0;;;42248:328;;-1:-1:-1;;;;;42319:18:0;;42297:19;42319:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42370:30;;;;;;:44;;;42487:30;;:17;:30;;;;;:43;;;42248:328;-1:-1:-1;42672:26:0;;;;:17;:26;;;;;;;;42665:33;;;-1:-1:-1;;;;;42716:18:0;;;;;:12;:18;;;;;:34;;;;;;;42709:41;41770:988::o;43053:1079::-;43331:10;:17;43306:22;;43331:21;;43351:1;;43331:21;:::i;:::-;43363:18;43384:24;;;:15;:24;;;;;;43757:10;:26;;43306:46;;-1:-1:-1;43384:24:0;;43306:46;;43757:26;;;;-1:-1:-1;;;43757:26:0;;;;;;;;;;;;;;;;;43735:48;;43821:11;43796:10;43807;43796:22;;;;;;-1:-1:-1;;;43796:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;43901:28;;;:15;:28;;;;;;;:41;;;44073:24;;;;;44066:31;44108:10;:16;;;;;-1:-1:-1;;;44108:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;43053:1079;;;;:::o;40557:221::-;40642:14;40659:20;40676:2;40659:16;:20::i;:::-;-1:-1:-1;;;;;40690:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;40735:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40557:221:0:o;32046:382::-;-1:-1:-1;;;;;32126:16:0;;32118:61;;;;-1:-1:-1;;;32118:61:0;;;;;;;:::i;:::-;32199:16;32207:7;32199;:16::i;:::-;32198:17;32190:58;;;;-1:-1:-1;;;32190:58:0;;;;;;;:::i;:::-;32261:45;32290:1;32294:2;32298:7;32261:20;:45::i;:::-;-1:-1:-1;;;;;32319:13:0;;;;;;:9;:13;;;;;:18;;32336:1;;32319:13;:18;;32336:1;;32319:18;:::i;:::-;;;;-1:-1:-1;;32348:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32348:21:0;-1:-1:-1;;;;;32348:21:0;;;;;;;;32387:33;;32348:16;;;32387:33;;32348:16;;32387:33;32046:382;;:::o;14963:387::-;15286:20;15334:8;;;14963:387::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:1178::-;;;;;1195:3;1183:9;1174:7;1170:23;1166:33;1163:2;;;1217:6;1209;1202:22;1163:2;1245:31;1266:9;1245:31;:::i;:::-;1235:41;;1295:2;1316:40;1352:2;1341:9;1337:18;1316:40;:::i;:::-;1306:50;;1403:2;1392:9;1388:18;1375:32;1365:42;;1458:2;1447:9;1443:18;1430:32;1481:18;1522:2;1514:6;1511:14;1508:2;;;1543:6;1535;1528:22;1508:2;1586:6;1575:9;1571:22;1561:32;;1631:7;1624:4;1620:2;1616:13;1612:27;1602:2;;1658:6;1650;1643:22;1602:2;1699;1686:16;1721:2;1717;1714:10;1711:2;;;1727:18;;:::i;:::-;1776:2;1770:9;1845:2;1826:13;;-1:-1:-1;;1822:27:1;1810:40;;1806:49;;1870:18;;;1890:22;;;1867:46;1864:2;;;1916:18;;:::i;:::-;1952:2;1945:22;1976:18;;;2013:11;;;2009:20;;2006:33;-1:-1:-1;2003:2:1;;;2057:6;2049;2042:22;2003:2;2118;2113;2109;2105:11;2100:2;2092:6;2088:15;2075:46;2141:15;;;2137:24;;;2130:40;;;;-1:-1:-1;1153:1048:1;;;;-1:-1:-1;1153:1048:1;;-1:-1:-1;;1153:1048:1:o;2206:369::-;;;2332:2;2320:9;2311:7;2307:23;2303:32;2300:2;;;2353:6;2345;2338:22;2300:2;2381:31;2402:9;2381:31;:::i;:::-;2371:41;;2462:2;2451:9;2447:18;2434:32;2509:5;2502:13;2495:21;2488:5;2485:32;2475:2;;2536:6;2528;2521:22;2475:2;2564:5;2554:15;;;2290:285;;;;;:::o;2580:266::-;;;2709:2;2697:9;2688:7;2684:23;2680:32;2677:2;;;2730:6;2722;2715:22;2677:2;2758:31;2779:9;2758:31;:::i;:::-;2748:41;2836:2;2821:18;;;;2808:32;;-1:-1:-1;;;2667:179:1:o;2851:257::-;;2962:2;2950:9;2941:7;2937:23;2933:32;2930:2;;;2983:6;2975;2968:22;2930:2;3027:9;3014:23;3046:32;3072:5;3046:32;:::i;3113:261::-;;3235:2;3223:9;3214:7;3210:23;3206:32;3203:2;;;3256:6;3248;3241:22;3203:2;3293:9;3287:16;3312:32;3338:5;3312:32;:::i;3379:190::-;;3491:2;3479:9;3470:7;3466:23;3462:32;3459:2;;;3512:6;3504;3497:22;3459:2;-1:-1:-1;3540:23:1;;3449:120;-1:-1:-1;3449:120:1:o;3574:259::-;;3655:5;3649:12;3682:6;3677:3;3670:19;3698:63;3754:6;3747:4;3742:3;3738:14;3731:4;3724:5;3720:16;3698:63;:::i;:::-;3815:2;3794:15;-1:-1:-1;;3790:29:1;3781:39;;;;3822:4;3777:50;;3625:208;-1:-1:-1;;3625:208:1:o;3838:187::-;;3920:5;3914:12;3935:52;3980:6;3975:3;3968:4;3961:5;3957:16;3935:52;:::i;:::-;4003:16;;;;;3890:135;-1:-1:-1;;3890:135:1:o;4030:127::-;-1:-1:-1;;;4097:27:1;;4149:1;4140:11;;4087:70::o;4162:276::-;;4331:6;4325:13;4347:53;4393:6;4388:3;4381:4;4373:6;4369:17;4347:53;:::i;:::-;4416:16;;;;;4301:137;-1:-1:-1;;4301:137:1:o;4443:470::-;;4660:6;4654:13;4676:53;4722:6;4717:3;4710:4;4702:6;4698:17;4676:53;:::i;:::-;4792:13;;4751:16;;;;4814:57;4792:13;4751:16;4848:4;4836:17;;4814:57;:::i;:::-;4887:20;;4630:283;-1:-1:-1;;;;4630:283:1:o;4918:858::-;;5231:6;5225:13;5247:53;5293:6;5288:3;5281:4;5273:6;5269:17;5247:53;:::i;:::-;5363:13;;5322:16;;;;5385:57;5363:13;5322:16;5419:4;5407:17;;5385:57;:::i;:::-;5509:13;;5464:20;;;5531:57;5509:13;5464:20;5565:4;5553:17;;5531:57;:::i;:::-;5655:13;;5610:20;;;5677:57;5655:13;5610:20;5711:4;5699:17;;5677:57;:::i;:::-;5750:20;;5201:575;-1:-1:-1;;;;;;5201:575:1:o;5781:1767::-;;6334:6;6328:13;6350:53;6396:6;6391:3;6384:4;6376:6;6372:17;6350:53;:::i;:::-;6434:6;6428:13;6450:68;6509:8;6500:6;6495:3;6491:16;6484:4;6476:6;6472:17;6450:68;:::i;:::-;6596:13;;6544:16;;;6540:31;;6618:57;6596:13;6540:31;6652:4;6640:17;;6618:57;:::i;:::-;6706:6;6700:13;6722:72;6785:8;6774;6767:5;6763:20;6756:4;6748:6;6744:17;6722:72;:::i;:::-;6876:13;;6820:20;;;;6816:35;;6898:57;6876:13;6816:35;6932:4;6920:17;;6898:57;:::i;:::-;6986:6;6980:13;7002:72;7065:8;7054;7047:5;7043:20;7036:4;7028:6;7024:17;7002:72;:::i;:::-;7156:13;;7100:20;;;;7096:35;;7178:57;7156:13;7096:35;7212:4;7200:17;;7178:57;:::i;:::-;7266:6;7260:13;7282:72;7345:8;7334;7327:5;7323:20;7316:4;7308:6;7304:17;7282:72;:::i;:::-;7433:13;;7377:20;;;;7373:35;;7455:54;7433:13;7373:35;7489:4;7477:17;;7455:54;:::i;:::-;7525:17;;6304:1244;-1:-1:-1;;;;;;;;;;;6304:1244:1:o;7553:1618::-;-1:-1:-1;;;8053:59:1;;8135:13;;7553:1618;;8157:62;8135:13;8207:2;8198:12;;8191:4;8179:17;;8157:62;:::i;:::-;8283:66;8278:2;8238:16;;;8270:11;;;8263:87;8379:34;8374:2;8366:11;;8359:55;8443:34;8438:2;8430:11;;8423:55;8508:34;8502:3;8494:12;;8487:56;8573:34;8567:3;8559:12;;8552:56;8638:34;8632:3;8624:12;;8617:56;8703:34;8697:3;8689:12;;8682:56;8768:34;8762:3;8754:12;;8747:56;8833:34;8827:3;8819:12;;8812:56;8898:34;8892:3;8884:12;;8877:56;8963:66;8957:3;8949:12;;8942:88;-1:-1:-1;;;9054:3:1;9046:12;;9039:36;9091:74;9123:41;9159:3;9151:12;;9143:6;9123:41;:::i;:::-;9091:74;:::i;:::-;9084:81;8043:1128;-1:-1:-1;;;;;8043:1128:1:o;9176:434::-;;-1:-1:-1;;;9433:3:1;9426:30;9485:6;9479:13;9501:62;9556:6;9551:2;9546:3;9542:12;9535:4;9527:6;9523:17;9501:62;:::i;:::-;9583:16;;;;9601:2;9579:25;;9416:194;-1:-1:-1;;9416:194:1:o;9615:448::-;;9877:31;9872:3;9865:44;9938:6;9932:13;9954:62;10009:6;10004:2;9999:3;9995:12;9988:4;9980:6;9976:17;9954:62;:::i;:::-;10036:16;;;;10054:2;10032:25;;9855:208;-1:-1:-1;;9855:208:1:o;10068:203::-;-1:-1:-1;;;;;10232:32:1;;;;10214:51;;10202:2;10187:18;;10169:102::o;10276:490::-;-1:-1:-1;;;;;10545:15:1;;;10527:34;;10597:15;;10592:2;10577:18;;10570:43;10644:2;10629:18;;10622:34;;;10692:3;10687:2;10672:18;;10665:31;;;10276:490;;10713:47;;10740:19;;10732:6;10713:47;:::i;:::-;10705:55;10479:287;-1:-1:-1;;;;;;10479:287:1:o;10771:187::-;10936:14;;10929:22;10911:41;;10899:2;10884:18;;10866:92::o;10963:221::-;;11112:2;11101:9;11094:21;11132:46;11174:2;11163:9;11159:18;11151:6;11132:46;:::i;11189:407::-;11391:2;11373:21;;;11430:2;11410:18;;;11403:30;11469:34;11464:2;11449:18;;11442:62;-1:-1:-1;;;11535:2:1;11520:18;;11513:41;11586:3;11571:19;;11363:233::o;11601:414::-;11803:2;11785:21;;;11842:2;11822:18;;;11815:30;11881:34;11876:2;11861:18;;11854:62;-1:-1:-1;;;11947:2:1;11932:18;;11925:48;12005:3;11990:19;;11775:240::o;12020:402::-;12222:2;12204:21;;;12261:2;12241:18;;;12234:30;12300:34;12295:2;12280:18;;12273:62;-1:-1:-1;;;12366:2:1;12351:18;;12344:36;12412:3;12397:19;;12194:228::o;12427:352::-;12629:2;12611:21;;;12668:2;12648:18;;;12641:30;12707;12702:2;12687:18;;12680:58;12770:2;12755:18;;12601:178::o;12784:400::-;12986:2;12968:21;;;13025:2;13005:18;;;12998:30;13064:34;13059:2;13044:18;;13037:62;-1:-1:-1;;;13130:2:1;13115:18;;13108:34;13174:3;13159:19;;12958:226::o;13189:349::-;13391:2;13373:21;;;13430:2;13410:18;;;13403:30;13469:27;13464:2;13449:18;;13442:55;13529:2;13514:18;;13363:175::o;13543:399::-;13745:2;13727:21;;;13784:2;13764:18;;;13757:30;13823:34;13818:2;13803:18;;13796:62;-1:-1:-1;;;13889:2:1;13874:18;;13867:33;13932:3;13917:19;;13717:225::o;13947:408::-;14149:2;14131:21;;;14188:2;14168:18;;;14161:30;14227:34;14222:2;14207:18;;14200:62;-1:-1:-1;;;14293:2:1;14278:18;;14271:42;14345:3;14330:19;;14121:234::o;14360:420::-;14562:2;14544:21;;;14601:2;14581:18;;;14574:30;14640:34;14635:2;14620:18;;14613:62;14711:26;14706:2;14691:18;;14684:54;14770:3;14755:19;;14534:246::o;14785:406::-;14987:2;14969:21;;;15026:2;15006:18;;;14999:30;15065:34;15060:2;15045:18;;15038:62;-1:-1:-1;;;15131:2:1;15116:18;;15109:40;15181:3;15166:19;;14959:232::o;15196:405::-;15398:2;15380:21;;;15437:2;15417:18;;;15410:30;15476:34;15471:2;15456:18;;15449:62;-1:-1:-1;;;15542:2:1;15527:18;;15520:39;15591:3;15576:19;;15370:231::o;15606:356::-;15808:2;15790:21;;;15827:18;;;15820:30;15886:34;15881:2;15866:18;;15859:62;15953:2;15938:18;;15780:182::o;15967:408::-;16169:2;16151:21;;;16208:2;16188:18;;;16181:30;16247:34;16242:2;16227:18;;16220:62;-1:-1:-1;;;16313:2:1;16298:18;;16291:42;16365:3;16350:19;;16141:234::o;16380:356::-;16582:2;16564:21;;;16601:18;;;16594:30;16660:34;16655:2;16640:18;;16633:62;16727:2;16712:18;;16554:182::o;16741:405::-;16943:2;16925:21;;;16982:2;16962:18;;;16955:30;17021:34;17016:2;17001:18;;16994:62;-1:-1:-1;;;17087:2:1;17072:18;;17065:39;17136:3;17121:19;;16915:231::o;17151:397::-;17353:2;17335:21;;;17392:2;17372:18;;;17365:30;17431:34;17426:2;17411:18;;17404:62;-1:-1:-1;;;17497:2:1;17482:18;;17475:31;17538:3;17523:19;;17325:223::o;17553:413::-;17755:2;17737:21;;;17794:2;17774:18;;;17767:30;17833:34;17828:2;17813:18;;17806:62;-1:-1:-1;;;17899:2:1;17884:18;;17877:47;17956:3;17941:19;;17727:239::o;17971:408::-;18173:2;18155:21;;;18212:2;18192:18;;;18185:30;18251:34;18246:2;18231:18;;18224:62;-1:-1:-1;;;18317:2:1;18302:18;;18295:42;18369:3;18354:19;;18145:234::o;18384:355::-;18586:2;18568:21;;;18625:2;18605:18;;;18598:30;18664:33;18659:2;18644:18;;18637:61;18730:2;18715:18;;18558:181::o;18744:342::-;18946:2;18928:21;;;18985:2;18965:18;;;18958:30;-1:-1:-1;;;19019:2:1;19004:18;;18997:48;19077:2;19062:18;;18918:168::o;19091:1487::-;;19266:2;19255:9;19248:21;19304:6;19298:13;19347:4;19342:2;19331:9;19327:18;19320:32;19375:53;19423:3;19412:9;19408:19;19394:12;19375:53;:::i;:::-;19361:67;;19477:2;19469:6;19465:15;19459:22;19504:2;19500:7;19571:2;19559:9;19551:6;19547:22;19543:31;19538:2;19527:9;19523:18;19516:59;19598:42;19633:6;19617:14;19598:42;:::i;:::-;19584:56;;19689:2;19681:6;19677:15;19671:22;19649:44;;19757:2;19745:9;19737:6;19733:22;19729:31;19724:2;19713:9;19709:18;19702:59;19784:42;19819:6;19803:14;19784:42;:::i;:::-;19770:56;;19875:2;19867:6;19863:15;19857:22;19835:44;;19944:2;19932:9;19924:6;19920:22;19916:31;19910:3;19899:9;19895:19;19888:60;19971:42;20006:6;19990:14;19971:42;:::i;:::-;19957:56;;20062:3;20054:6;20050:16;20044:23;20022:45;;20132:2;20120:9;20112:6;20108:22;20104:31;20098:3;20087:9;20083:19;20076:60;20159:42;20194:6;20178:14;20159:42;:::i;:::-;20145:56;;20250:3;20242:6;20238:16;20232:23;20210:45;;20320:2;20308:9;20300:6;20296:22;20292:31;20286:3;20275:9;20271:19;20264:60;20347:42;20382:6;20366:14;20347:42;:::i;:::-;20333:56;;20438:3;20430:6;20426:16;20420:23;20398:45;;20509:2;20497:9;20489:6;20485:22;20481:31;20474:4;20463:9;20459:20;20452:61;;20530:42;20565:6;20549:14;20530:42;:::i;20583:177::-;20729:25;;;20717:2;20702:18;;20684:76::o;20765:128::-;;20836:1;20832:6;20829:1;20826:13;20823:2;;;20842:18;;:::i;:::-;-1:-1:-1;20878:9:1;;20813:80::o;20898:120::-;;20964:1;20954:2;;20969:18;;:::i;:::-;-1:-1:-1;21003:9:1;;20944:74::o;21023:168::-;;21129:1;21125;21121:6;21117:14;21114:1;21111:21;21106:1;21099:9;21092:17;21088:45;21085:2;;;21136:18;;:::i;:::-;-1:-1:-1;21176:9:1;;21075:116::o;21196:125::-;;21264:1;21261;21258:8;21255:2;;;21269:18;;:::i;:::-;-1:-1:-1;21306:9:1;;21245:76::o;21326:258::-;21398:1;21408:113;21422:6;21419:1;21416:13;21408:113;;;21498:11;;;21492:18;21479:11;;;21472:39;21444:2;21437:10;21408:113;;;21539:6;21536:1;21533:13;21530:2;;;-1:-1:-1;;21574:1:1;21556:16;;21549:27;21379:205::o;21589:380::-;21674:1;21664:12;;21721:1;21711:12;;;21732:2;;21786:4;21778:6;21774:17;21764:27;;21732:2;21839;21831:6;21828:14;21808:18;21805:38;21802:2;;;21885:10;21880:3;21876:20;21873:1;21866:31;21920:4;21917:1;21910:15;21948:4;21945:1;21938:15;21802:2;;21644:325;;;:::o;21974:135::-;;-1:-1:-1;;22034:17:1;;22031:2;;;22054:18;;:::i;:::-;-1:-1:-1;22101:1:1;22090:13;;22021:88::o;22114:112::-;;22172:1;22162:2;;22177:18;;:::i;:::-;-1:-1:-1;22211:9:1;;22152:74::o;22231:127::-;22292:10;22287:3;22283:20;22280:1;22273:31;22323:4;22320:1;22313:15;22347:4;22344:1;22337:15;22363:127;22424:10;22419:3;22415:20;22412:1;22405:31;22455:4;22452:1;22445:15;22479:4;22476:1;22469:15;22495:127;22556:10;22551:3;22547:20;22544:1;22537:31;22587:4;22584:1;22577:15;22611:4;22608:1;22601:15;22627:133;-1:-1:-1;;;;;;22703:32:1;;22693:43;;22683:2;;22750:1;22747;22740:12
Swarm Source
ipfs://c22c84d1d373ae99c522645d467daad0765a3ec5dc7b6c7ea8435bd08a6fd4ca
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.