Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 55 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer Ownersh... | 16957334 | 1060 days ago | IN | 0 ETH | 0.0005161 | ||||
| Safe Transfer Fr... | 16740483 | 1091 days ago | IN | 0 ETH | 0.00146654 | ||||
| Mint Tokens | 16313552 | 1151 days ago | IN | 0 ETH | 0.00229882 | ||||
| Set Base URI | 16313548 | 1151 days ago | IN | 0 ETH | 0.00063447 | ||||
| Set Approval For... | 15920310 | 1206 days ago | IN | 0 ETH | 0.00129813 | ||||
| Set Approval For... | 15783760 | 1225 days ago | IN | 0 ETH | 0.00224157 | ||||
| Set Base URI | 15771102 | 1226 days ago | IN | 0 ETH | 0.00059391 | ||||
| Mint Tokens | 15771102 | 1226 days ago | IN | 0 ETH | 0.00229882 | ||||
| Set Approval For... | 15687284 | 1238 days ago | IN | 0 ETH | 0.00025225 | ||||
| Set Approval For... | 15681549 | 1239 days ago | IN | 0 ETH | 0.00011186 | ||||
| Set Approval For... | 15549860 | 1257 days ago | IN | 0 ETH | 0.00018491 | ||||
| Set Approval For... | 15524695 | 1261 days ago | IN | 0 ETH | 0.00040468 | ||||
| Mint Tokens | 15501898 | 1265 days ago | IN | 0 ETH | 0.00152255 | ||||
| Set Base URI | 15501898 | 1265 days ago | IN | 0 ETH | 0.00039335 | ||||
| Set Approval For... | 15476638 | 1269 days ago | IN | 0 ETH | 0.00030607 | ||||
| Transfer Ownersh... | 15476554 | 1269 days ago | IN | 0 ETH | 0.00024248 | ||||
| Set Approval For... | 15211233 | 1311 days ago | IN | 0 ETH | 0.00031837 | ||||
| Transfer From | 15159172 | 1319 days ago | IN | 0 ETH | 0.00029795 | ||||
| Transfer From | 15159164 | 1319 days ago | IN | 0 ETH | 0.00086868 | ||||
| Transfer From | 15158728 | 1319 days ago | IN | 0 ETH | 0.00113988 | ||||
| Transfer From | 15158443 | 1319 days ago | IN | 0 ETH | 0.00095528 | ||||
| Set Approval For... | 15156226 | 1319 days ago | IN | 0 ETH | 0.00105591 | ||||
| Transfer From | 15156189 | 1319 days ago | IN | 0 ETH | 0.00202957 | ||||
| Set Approval For... | 15068602 | 1333 days ago | IN | 0 ETH | 0.00056341 | ||||
| Transfer From | 15055698 | 1335 days ago | IN | 0 ETH | 0.0020528 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
TheSevensSE
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-09-15
*/
// SPDX-License-Identifier: MIT
// File @openzeppelin/contracts/utils/Context.sol@v4.2.0
pragma solidity ^0.8.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File @openzeppelin/contracts/access/Ownable.sol@v4.2.0
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_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);
}
}
// File @openzeppelin/contracts/utils/introspection/IERC165.sol@v4.2.0
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File @openzeppelin/contracts/token/ERC721/IERC721.sol@v4.2.0
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// File @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol@v4.2.0
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol@v4.2.0
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File @openzeppelin/contracts/utils/Address.sol@v4.2.0
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
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);
}
}
}
}
// File @openzeppelin/contracts/utils/Strings.sol@v4.2.0
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File @openzeppelin/contracts/utils/introspection/ERC165.sol@v4.2.0
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File @openzeppelin/contracts/token/ERC721/ERC721.sol@v4.2.0
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
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 {}
}
// File @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol@v4.2.0
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// File @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol@v4.2.0
pragma solidity ^0.8.0;
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// File contracts/TheSevensSE.sol
pragma solidity =0.8.7;
contract TheSevensSE is ERC721Enumerable, Ownable {
event IsBurnEnabledChanged(bool newIsBurnEnabled);
event BaseURIChanged(string newBaseURI);
uint256 public nextTokenId;
bool public isBurnEnabled;
string public baseURI;
constructor() ERC721("Sevens Special Edition", "SEVENS-SE") {}
function setIsBurnEnabled(bool _isBurnEnabled) external onlyOwner {
isBurnEnabled = _isBurnEnabled;
emit IsBurnEnabledChanged(_isBurnEnabled);
}
function setBaseURI(string calldata newbaseURI) external onlyOwner {
baseURI = newbaseURI;
emit BaseURIChanged(newbaseURI);
}
function mintTokens(address recipient, uint256 count) external onlyOwner {
require(recipient != address(0), "TheSevensSE: zero address");
// Gas optimization
uint256 _nextTokenId = nextTokenId;
require(count > 0, "TheSevensSE: invalid count");
for (uint256 ind = 0; ind < count; ind++) {
_safeMint(recipient, _nextTokenId + ind);
}
nextTokenId += count;
}
function burn(uint256 tokenId) external {
require(isBurnEnabled, "TheSevensSE: burning disabled");
require(_isApprovedOrOwner(msg.sender, tokenId), "TheSevensSE: burn caller is not owner nor approved");
_burn(tokenId);
}
function _baseURI() internal view override returns (string memory) {
return baseURI;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"newIsBurnEnabled","type":"bool"}],"name":"IsBurnEnabledChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"string","name":"newbaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isBurnEnabled","type":"bool"}],"name":"setIsBurnEnabled","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
60806040523480156200001157600080fd5b50604080518082018252601681527f536576656e73205370656369616c2045646974696f6e00000000000000000000602080830191825283518085019094526009845268534556454e532d534560b81b908401528151919291620000789160009162000107565b5080516200008e90600190602084019062000107565b505050620000ab620000a5620000b160201b60201c565b620000b5565b620001ea565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011590620001ad565b90600052602060002090601f01602090048101928262000139576000855562000184565b82601f106200015457805160ff191683800117855562000184565b8280016001018555821562000184579182015b828111156200018457825182559160200191906001019062000167565b506200019292915062000196565b5090565b5b8082111562000192576000815560010162000197565b600181811c90821680620001c257607f821691505b60208210811415620001e457634e487b7160e01b600052602260045260246000fd5b50919050565b612bb880620001fa6000396000f3fe608060405234801561001057600080fd5b50600436106101ae5760003560e01c80636c0360eb116100ee57806395d89b4111610097578063c87b56dd11610071578063c87b56dd1461036c578063e985e9c51461037f578063f0dda65c146103c8578063f2fde38b146103db57600080fd5b806395d89b411461033e578063a22cb46514610346578063b88d4fde1461035957600080fd5b8063715018a6116100c8578063715018a61461030f57806375794a3c146103175780638da5cb5b1461032057600080fd5b80636c0360eb146102e15780636e0e5b19146102e957806370a08231146102fc57600080fd5b806323b872dd1161015b57806342966c681161013557806342966c68146102955780634f6ccce7146102a857806355f804b3146102bb5780636352211e146102ce57600080fd5b806323b872dd1461025c5780632f745c591461026f57806342842e0e1461028257600080fd5b8063081812fc1161018c578063081812fc146101fd578063095ea7b31461023557806318160ddd1461024a57600080fd5b806301ffc9a7146101b357806306fdde03146101db57806307ebec27146101f0575b600080fd5b6101c66101c1366004612772565b6103ee565b60405190151581526020015b60405180910390f35b6101e361044a565b6040516101d29190612946565b600c546101c69060ff1681565b61021061020b36600461281e565b6104dc565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101d2565b61024861024336600461272d565b6105bb565b005b6008545b6040519081526020016101d2565b61024861026a3660046125cd565b610748565b61024e61027d36600461272d565b6107e9565b6102486102903660046125cd565b6108b8565b6102486102a336600461281e565b6108d3565b61024e6102b636600461281e565b6109e1565b6102486102c93660046127ac565b610a9f565b6102106102dc36600461281e565b610b6a565b6101e3610c1c565b6102486102f7366004612757565b610caa565b61024e61030a36600461257f565b610d90565b610248610e5e565b61024e600b5481565b600a5473ffffffffffffffffffffffffffffffffffffffff16610210565b6101e3610eeb565b610248610354366004612703565b610efa565b610248610367366004612609565b611011565b6101e361037a36600461281e565b6110b9565b6101c661038d36600461259a565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102486103d636600461272d565b6111c9565b6102486103e936600461257f565b61137e565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806104445750610444826114ab565b92915050565b606060008054610459906129c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610485906129c8565b80156104d25780601f106104a7576101008083540402835291602001916104d2565b820191906000526020600020905b8154815290600101906020018083116104b557829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006105c682610b6a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610589565b3373ffffffffffffffffffffffffffffffffffffffff821614806106ad57506106ad813361038d565b610739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610589565b610743838361158e565b505050565b610752338261162e565b6107de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610589565b61074383838361179e565b60006107f483610d90565b8210610882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610589565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b61074383838360405180602001604052806000815250611011565b600c5460ff1661093f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f546865536576656e7353453a206275726e696e672064697361626c65640000006044820152606401610589565b610949338261162e565b6109d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f546865536576656e7353453a206275726e2063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610589565b6109de81611a10565b50565b60006109ec60085490565b8210610a7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610589565b60088281548110610a8d57610a8d612af6565b90600052602060002001549050919050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610b20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610589565b610b2c600d838361248f565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051610b5e9291906128f9565b60405180910390a15050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610589565b600d8054610c29906129c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610c55906129c8565b8015610ca25780601f10610c7757610100808354040283529160200191610ca2565b820191906000526020600020905b815481529060010190602001808311610c8557829003601f168201915b505050505081565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610d2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610589565b600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215159081179091556040519081527f430864ad215aa849052adf33b0cae7eb033aa8a4f9cf45fb3973699038505ff39060200160405180910390a150565b600073ffffffffffffffffffffffffffffffffffffffff8216610e35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610589565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610edf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610589565b610ee96000611ae9565b565b606060018054610459906129c8565b73ffffffffffffffffffffffffffffffffffffffff8216331415610f7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610589565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61101b338361162e565b6110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610589565b6110b384848484611b60565b50505050565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff1661116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610589565b6000611177611c03565b9050600081511161119757604051806020016040528060008152506111c2565b806111a184611c12565b6040516020016111b2929190612881565b6040516020818303038152906040525b9392505050565b600a5473ffffffffffffffffffffffffffffffffffffffff16331461124a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610589565b73ffffffffffffffffffffffffffffffffffffffff82166112c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f546865536576656e7353453a207a65726f2061646472657373000000000000006044820152606401610589565b600b5481611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f546865536576656e7353453a20696e76616c696420636f756e740000000000006044820152606401610589565b60005b828110156113615761134f8461134a8385612959565b611d44565b8061135981612a1c565b915050611334565b5081600b60008282546113749190612959565b9091555050505050565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146113ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610589565b73ffffffffffffffffffffffffffffffffffffffff81166114a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610589565b6109de81611ae9565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061153e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061044457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610444565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906115e882610b6a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff166116df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610589565b60006116ea83610b6a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061175957508373ffffffffffffffffffffffffffffffffffffffff16611741846104dc565b73ffffffffffffffffffffffffffffffffffffffff16145b80611796575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff166117be82610b6a565b73ffffffffffffffffffffffffffffffffffffffff1614611861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610589565b73ffffffffffffffffffffffffffffffffffffffff8216611903576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610589565b61190e838383611d62565b61191960008261158e565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260036020526040812080546001929061194f908490612985565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080546001929061198a908490612959565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611a1b82610b6a565b9050611a2981600084611d62565b611a3460008361158e565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600360205260408120805460019290611a6a908490612985565b909155505060008281526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b6b84848461179e565b611b7784848484611e68565b6110b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610589565b6060600d8054610459906129c8565b606081611c5257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611c7c5780611c6681612a1c565b9150611c759050600a83612971565b9150611c56565b60008167ffffffffffffffff811115611c9757611c97612b25565b6040519080825280601f01601f191660200182016040528015611cc1576020820181803683370190505b5090505b841561179657611cd6600183612985565b9150611ce3600a86612a55565b611cee906030612959565b60f81b818381518110611d0357611d03612af6565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611d3d600a86612971565b9450611cc5565b611d5e828260405180602001604052806000815250612067565b5050565b73ffffffffffffffffffffffffffffffffffffffff8316611dca57611dc581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e07565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e0757611e07838261210a565b73ffffffffffffffffffffffffffffffffffffffff8216611e2b57610743816121c1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610743576107438282612270565b600073ffffffffffffffffffffffffffffffffffffffff84163b1561205c576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611edf9033908990889088906004016128b0565b602060405180830381600087803b158015611ef957600080fd5b505af1925050508015611f47575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611f449181019061278f565b60015b612011573d808015611f75576040519150601f19603f3d011682016040523d82523d6000602084013e611f7a565b606091505b508051612009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610589565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611796565b506001949350505050565b61207183836122c1565b61207e6000848484611e68565b610743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610589565b6000600161211784610d90565b6121219190612985565b6000838152600760205260409020549091508082146121815773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b6008546000906121d390600190612985565b600083815260096020526040812054600880549394509092849081106121fb576121fb612af6565b90600052602060002001549050806008838154811061221c5761221c612af6565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061225457612254612ac7565b6001900381819060005260206000200160009055905550505050565b600061227b83610d90565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b73ffffffffffffffffffffffffffffffffffffffff821661233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610589565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16156123ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610589565b6123d660008383611d62565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080546001929061240c908490612959565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461249b906129c8565b90600052602060002090601f0160209004810192826124bd5760008555612521565b82601f106124f4578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612521565b82800160010185558215612521579182015b82811115612521578235825591602001919060010190612506565b5061252d929150612531565b5090565b5b8082111561252d5760008155600101612532565b803573ffffffffffffffffffffffffffffffffffffffff8116811461256a57600080fd5b919050565b8035801515811461256a57600080fd5b60006020828403121561259157600080fd5b6111c282612546565b600080604083850312156125ad57600080fd5b6125b683612546565b91506125c460208401612546565b90509250929050565b6000806000606084860312156125e257600080fd5b6125eb84612546565b92506125f960208501612546565b9150604084013590509250925092565b6000806000806080858703121561261f57600080fd5b61262885612546565b935061263660208601612546565b925060408501359150606085013567ffffffffffffffff8082111561265a57600080fd5b818701915087601f83011261266e57600080fd5b81358181111561268057612680612b25565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019083821181831017156126c6576126c6612b25565b816040528281528a60208487010111156126df57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561271657600080fd5b61271f83612546565b91506125c46020840161256f565b6000806040838503121561274057600080fd5b61274983612546565b946020939093013593505050565b60006020828403121561276957600080fd5b6111c28261256f565b60006020828403121561278457600080fd5b81356111c281612b54565b6000602082840312156127a157600080fd5b81516111c281612b54565b600080602083850312156127bf57600080fd5b823567ffffffffffffffff808211156127d757600080fd5b818501915085601f8301126127eb57600080fd5b8135818111156127fa57600080fd5b86602082850101111561280c57600080fd5b60209290920196919550909350505050565b60006020828403121561283057600080fd5b5035919050565b6000815180845261284f81602086016020860161299c565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6000835161289381846020880161299c565b8351908301906128a781836020880161299c565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526128ef6080830184612837565b9695505050505050565b60208152816020820152818360408301376000818301604090810191909152601f9092017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0160101919050565b6020815260006111c26020830184612837565b6000821982111561296c5761296c612a69565b500190565b60008261298057612980612a98565b500490565b60008282101561299757612997612a69565b500390565b60005b838110156129b757818101518382015260200161299f565b838111156110b35750506000910152565b600181811c908216806129dc57607f821691505b60208210811415612a16577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612a4e57612a4e612a69565b5060010190565b600082612a6457612a64612a98565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff00000000000000000000000000000000000000000000000000000000811681146109de57600080fdfea2646970667358221220ed8f388c413af04c055f6136add52cf44a3b6359ae29f2555321dea83e969c0064736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101ae5760003560e01c80636c0360eb116100ee57806395d89b4111610097578063c87b56dd11610071578063c87b56dd1461036c578063e985e9c51461037f578063f0dda65c146103c8578063f2fde38b146103db57600080fd5b806395d89b411461033e578063a22cb46514610346578063b88d4fde1461035957600080fd5b8063715018a6116100c8578063715018a61461030f57806375794a3c146103175780638da5cb5b1461032057600080fd5b80636c0360eb146102e15780636e0e5b19146102e957806370a08231146102fc57600080fd5b806323b872dd1161015b57806342966c681161013557806342966c68146102955780634f6ccce7146102a857806355f804b3146102bb5780636352211e146102ce57600080fd5b806323b872dd1461025c5780632f745c591461026f57806342842e0e1461028257600080fd5b8063081812fc1161018c578063081812fc146101fd578063095ea7b31461023557806318160ddd1461024a57600080fd5b806301ffc9a7146101b357806306fdde03146101db57806307ebec27146101f0575b600080fd5b6101c66101c1366004612772565b6103ee565b60405190151581526020015b60405180910390f35b6101e361044a565b6040516101d29190612946565b600c546101c69060ff1681565b61021061020b36600461281e565b6104dc565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101d2565b61024861024336600461272d565b6105bb565b005b6008545b6040519081526020016101d2565b61024861026a3660046125cd565b610748565b61024e61027d36600461272d565b6107e9565b6102486102903660046125cd565b6108b8565b6102486102a336600461281e565b6108d3565b61024e6102b636600461281e565b6109e1565b6102486102c93660046127ac565b610a9f565b6102106102dc36600461281e565b610b6a565b6101e3610c1c565b6102486102f7366004612757565b610caa565b61024e61030a36600461257f565b610d90565b610248610e5e565b61024e600b5481565b600a5473ffffffffffffffffffffffffffffffffffffffff16610210565b6101e3610eeb565b610248610354366004612703565b610efa565b610248610367366004612609565b611011565b6101e361037a36600461281e565b6110b9565b6101c661038d36600461259a565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102486103d636600461272d565b6111c9565b6102486103e936600461257f565b61137e565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806104445750610444826114ab565b92915050565b606060008054610459906129c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610485906129c8565b80156104d25780601f106104a7576101008083540402835291602001916104d2565b820191906000526020600020905b8154815290600101906020018083116104b557829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006105c682610b6a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610589565b3373ffffffffffffffffffffffffffffffffffffffff821614806106ad57506106ad813361038d565b610739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610589565b610743838361158e565b505050565b610752338261162e565b6107de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610589565b61074383838361179e565b60006107f483610d90565b8210610882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610589565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b61074383838360405180602001604052806000815250611011565b600c5460ff1661093f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f546865536576656e7353453a206275726e696e672064697361626c65640000006044820152606401610589565b610949338261162e565b6109d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f546865536576656e7353453a206275726e2063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610589565b6109de81611a10565b50565b60006109ec60085490565b8210610a7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610589565b60088281548110610a8d57610a8d612af6565b90600052602060002001549050919050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610b20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610589565b610b2c600d838361248f565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051610b5e9291906128f9565b60405180910390a15050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610589565b600d8054610c29906129c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610c55906129c8565b8015610ca25780601f10610c7757610100808354040283529160200191610ca2565b820191906000526020600020905b815481529060010190602001808311610c8557829003601f168201915b505050505081565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610d2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610589565b600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215159081179091556040519081527f430864ad215aa849052adf33b0cae7eb033aa8a4f9cf45fb3973699038505ff39060200160405180910390a150565b600073ffffffffffffffffffffffffffffffffffffffff8216610e35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610589565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610edf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610589565b610ee96000611ae9565b565b606060018054610459906129c8565b73ffffffffffffffffffffffffffffffffffffffff8216331415610f7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610589565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61101b338361162e565b6110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610589565b6110b384848484611b60565b50505050565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff1661116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610589565b6000611177611c03565b9050600081511161119757604051806020016040528060008152506111c2565b806111a184611c12565b6040516020016111b2929190612881565b6040516020818303038152906040525b9392505050565b600a5473ffffffffffffffffffffffffffffffffffffffff16331461124a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610589565b73ffffffffffffffffffffffffffffffffffffffff82166112c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f546865536576656e7353453a207a65726f2061646472657373000000000000006044820152606401610589565b600b5481611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f546865536576656e7353453a20696e76616c696420636f756e740000000000006044820152606401610589565b60005b828110156113615761134f8461134a8385612959565b611d44565b8061135981612a1c565b915050611334565b5081600b60008282546113749190612959565b9091555050505050565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146113ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610589565b73ffffffffffffffffffffffffffffffffffffffff81166114a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610589565b6109de81611ae9565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061153e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061044457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610444565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906115e882610b6a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff166116df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610589565b60006116ea83610b6a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061175957508373ffffffffffffffffffffffffffffffffffffffff16611741846104dc565b73ffffffffffffffffffffffffffffffffffffffff16145b80611796575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff166117be82610b6a565b73ffffffffffffffffffffffffffffffffffffffff1614611861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610589565b73ffffffffffffffffffffffffffffffffffffffff8216611903576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610589565b61190e838383611d62565b61191960008261158e565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260036020526040812080546001929061194f908490612985565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080546001929061198a908490612959565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611a1b82610b6a565b9050611a2981600084611d62565b611a3460008361158e565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600360205260408120805460019290611a6a908490612985565b909155505060008281526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b6b84848461179e565b611b7784848484611e68565b6110b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610589565b6060600d8054610459906129c8565b606081611c5257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611c7c5780611c6681612a1c565b9150611c759050600a83612971565b9150611c56565b60008167ffffffffffffffff811115611c9757611c97612b25565b6040519080825280601f01601f191660200182016040528015611cc1576020820181803683370190505b5090505b841561179657611cd6600183612985565b9150611ce3600a86612a55565b611cee906030612959565b60f81b818381518110611d0357611d03612af6565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611d3d600a86612971565b9450611cc5565b611d5e828260405180602001604052806000815250612067565b5050565b73ffffffffffffffffffffffffffffffffffffffff8316611dca57611dc581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e07565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e0757611e07838261210a565b73ffffffffffffffffffffffffffffffffffffffff8216611e2b57610743816121c1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610743576107438282612270565b600073ffffffffffffffffffffffffffffffffffffffff84163b1561205c576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611edf9033908990889088906004016128b0565b602060405180830381600087803b158015611ef957600080fd5b505af1925050508015611f47575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611f449181019061278f565b60015b612011573d808015611f75576040519150601f19603f3d011682016040523d82523d6000602084013e611f7a565b606091505b508051612009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610589565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611796565b506001949350505050565b61207183836122c1565b61207e6000848484611e68565b610743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610589565b6000600161211784610d90565b6121219190612985565b6000838152600760205260409020549091508082146121815773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b6008546000906121d390600190612985565b600083815260096020526040812054600880549394509092849081106121fb576121fb612af6565b90600052602060002001549050806008838154811061221c5761221c612af6565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061225457612254612ac7565b6001900381819060005260206000200160009055905550505050565b600061227b83610d90565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b73ffffffffffffffffffffffffffffffffffffffff821661233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610589565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16156123ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610589565b6123d660008383611d62565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080546001929061240c908490612959565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461249b906129c8565b90600052602060002090601f0160209004810192826124bd5760008555612521565b82601f106124f4578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612521565b82800160010185558215612521579182015b82811115612521578235825591602001919060010190612506565b5061252d929150612531565b5090565b5b8082111561252d5760008155600101612532565b803573ffffffffffffffffffffffffffffffffffffffff8116811461256a57600080fd5b919050565b8035801515811461256a57600080fd5b60006020828403121561259157600080fd5b6111c282612546565b600080604083850312156125ad57600080fd5b6125b683612546565b91506125c460208401612546565b90509250929050565b6000806000606084860312156125e257600080fd5b6125eb84612546565b92506125f960208501612546565b9150604084013590509250925092565b6000806000806080858703121561261f57600080fd5b61262885612546565b935061263660208601612546565b925060408501359150606085013567ffffffffffffffff8082111561265a57600080fd5b818701915087601f83011261266e57600080fd5b81358181111561268057612680612b25565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019083821181831017156126c6576126c6612b25565b816040528281528a60208487010111156126df57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561271657600080fd5b61271f83612546565b91506125c46020840161256f565b6000806040838503121561274057600080fd5b61274983612546565b946020939093013593505050565b60006020828403121561276957600080fd5b6111c28261256f565b60006020828403121561278457600080fd5b81356111c281612b54565b6000602082840312156127a157600080fd5b81516111c281612b54565b600080602083850312156127bf57600080fd5b823567ffffffffffffffff808211156127d757600080fd5b818501915085601f8301126127eb57600080fd5b8135818111156127fa57600080fd5b86602082850101111561280c57600080fd5b60209290920196919550909350505050565b60006020828403121561283057600080fd5b5035919050565b6000815180845261284f81602086016020860161299c565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6000835161289381846020880161299c565b8351908301906128a781836020880161299c565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526128ef6080830184612837565b9695505050505050565b60208152816020820152818360408301376000818301604090810191909152601f9092017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0160101919050565b6020815260006111c26020830184612837565b6000821982111561296c5761296c612a69565b500190565b60008261298057612980612a98565b500490565b60008282101561299757612997612a69565b500390565b60005b838110156129b757818101518382015260200161299f565b838111156110b35750506000910152565b600181811c908216806129dc57607f821691505b60208210811415612a16577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612a4e57612a4e612a69565b5060010190565b600082612a6457612a64612a98565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff00000000000000000000000000000000000000000000000000000000811681146109de57600080fdfea2646970667358221220ed8f388c413af04c055f6136add52cf44a3b6359ae29f2555321dea83e969c0064736f6c63430008070033
Deployed Bytecode Sourcemap
42996:1472:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36784:224;;;;;;:::i;:::-;;:::i;:::-;;;6068:14:1;;6061:22;6043:41;;6031:2;6016:18;36784:224:0;;;;;;;;23683:100;;;:::i;:::-;;;;;;;:::i;43190:25::-;;;;;;;;;25242:221;;;;;;:::i;:::-;;:::i;:::-;;;5332:42:1;5320:55;;;5302:74;;5290:2;5275:18;25242:221:0;5156:226:1;24765:411:0;;;;;;:::i;:::-;;:::i;:::-;;37424:113;37512:10;:17;37424:113;;;15612:25:1;;;15600:2;15585:18;37424:113:0;15466:177:1;26132:339:0;;;;;;:::i;:::-;;:::i;37092:256::-;;;;;;:::i;:::-;;:::i;26542:185::-;;;;;;:::i;:::-;;:::i;44105:252::-;;;;;;:::i;:::-;;:::i;37614:233::-;;;;;;:::i;:::-;;:::i;43499:148::-;;;;;;:::i;:::-;;:::i;23377:239::-;;;;;;:::i;:::-;;:::i;43224:21::-;;;:::i;43324:167::-;;;;;;:::i;:::-;;:::i;23107:208::-;;;;;;:::i;:::-;;:::i;2524:94::-;;;:::i;43157:26::-;;;;;;1873:87;1946:6;;;;1873:87;;23852:104;;;:::i;25535:295::-;;;;;;:::i;:::-;;:::i;26798:328::-;;;;;;:::i;:::-;;:::i;24027:334::-;;;;;;:::i;:::-;;:::i;25901:164::-;;;;;;:::i;:::-;26022:25;;;;25998:4;26022:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25901:164;43655:442;;;;;;:::i;:::-;;:::i;2773:192::-;;;;;;:::i;:::-;;:::i;36784:224::-;36886:4;36910:50;;;36925:35;36910:50;;:90;;;36964:36;36988:11;36964:23;:36::i;:::-;36903:97;36784:224;-1:-1:-1;;36784:224:0:o;23683:100::-;23737:13;23770:5;23763:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23683:100;:::o;25242:221::-;25318:7;28725:16;;;:7;:16;;;;;;:30;:16;25338:73;;;;;;;12123:2:1;25338:73:0;;;12105:21:1;12162:2;12142:18;;;12135:30;12201:34;12181:18;;;12174:62;12272:14;12252:18;;;12245:42;12304:19;;25338:73:0;;;;;;;;;-1:-1:-1;25431:24:0;;;;:15;:24;;;;;;;;;25242:221::o;24765:411::-;24846:13;24862:23;24877:7;24862:14;:23::i;:::-;24846:39;;24910:5;24904:11;;:2;:11;;;;24896:57;;;;;;;13723:2:1;24896:57:0;;;13705:21:1;13762:2;13742:18;;;13735:30;13801:34;13781:18;;;13774:62;13872:3;13852:18;;;13845:31;13893:19;;24896:57:0;13521:397:1;24896:57:0;741:10;24988:21;;;;;:62;;-1:-1:-1;25013:37:0;25030:5;741:10;25901:164;:::i;25013:37::-;24966:168;;;;;;;10161:2:1;24966:168:0;;;10143:21:1;10200:2;10180:18;;;10173:30;10239:34;10219:18;;;10212:62;10310:26;10290:18;;;10283:54;10354:19;;24966:168:0;9959:420:1;24966:168:0;25147:21;25156:2;25160:7;25147:8;:21::i;:::-;24835:341;24765:411;;:::o;26132:339::-;26327:41;741:10;26360:7;26327:18;:41::i;:::-;26319:103;;;;;;;14125:2:1;26319:103:0;;;14107:21:1;14164:2;14144:18;;;14137:30;14203:34;14183:18;;;14176:62;14274:19;14254:18;;;14247:47;14311:19;;26319:103:0;13923:413:1;26319:103:0;26435:28;26445:4;26451:2;26455:7;26435:9;:28::i;37092:256::-;37189:7;37225:23;37242:5;37225:16;:23::i;:::-;37217:5;:31;37209:87;;;;;;;6975:2:1;37209:87:0;;;6957:21:1;7014:2;6994:18;;;6987:30;7053:34;7033:18;;;7026:62;7124:13;7104:18;;;7097:41;7155:19;;37209:87:0;6773:407:1;37209:87:0;-1:-1:-1;37314:19:0;;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37092:256::o;26542:185::-;26680:39;26697:4;26703:2;26707:7;26680:39;;;;;;;;;;;;:16;:39::i;44105:252::-;44164:13;;;;44156:55;;;;;;;15310:2:1;44156:55:0;;;15292:21:1;15349:2;15329:18;;;15322:30;15388:31;15368:18;;;15361:59;15437:18;;44156:55:0;15108:353:1;44156:55:0;44230:39;44249:10;44261:7;44230:18;:39::i;:::-;44222:102;;;;;;;9742:2:1;44222:102:0;;;9724:21:1;9781:2;9761:18;;;9754:30;9820:34;9800:18;;;9793:62;9891:20;9871:18;;;9864:48;9929:19;;44222:102:0;9540:414:1;44222:102:0;44335:14;44341:7;44335:5;:14::i;:::-;44105:252;:::o;37614:233::-;37689:7;37725:30;37512:10;:17;;37424:113;37725:30;37717:5;:38;37709:95;;;;;;;14543:2:1;37709:95:0;;;14525:21:1;14582:2;14562:18;;;14555:30;14621:34;14601:18;;;14594:62;14692:14;14672:18;;;14665:42;14724:19;;37709:95:0;14341:408:1;37709:95:0;37822:10;37833:5;37822:17;;;;;;;;:::i;:::-;;;;;;;;;37815:24;;37614:233;;;:::o;43499:148::-;1946:6;;2093:23;1946:6;741:10;2093:23;2085:68;;;;;;;12536:2:1;2085:68:0;;;12518:21:1;;;12555:18;;;12548:30;12614:34;12594:18;;;12587:62;12666:18;;2085:68:0;12334:356:1;2085:68:0;43577:20:::1;:7;43587:10:::0;;43577:20:::1;:::i;:::-;;43613:26;43628:10;;43613:26;;;;;;;:::i;:::-;;;;;;;;43499:148:::0;;:::o;23377:239::-;23449:7;23485:16;;;:7;:16;;;;;;;;23520:19;23512:73;;;;;;;10997:2:1;23512:73:0;;;10979:21:1;11036:2;11016:18;;;11009:30;11075:34;11055:18;;;11048:62;11146:11;11126:18;;;11119:39;11175:19;;23512:73:0;10795:405:1;43224:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43324:167::-;1946:6;;2093:23;1946:6;741:10;2093:23;2085:68;;;;;;;12536:2:1;2085:68:0;;;12518:21:1;;;12555:18;;;12548:30;12614:34;12594:18;;;12587:62;12666:18;;2085:68:0;12334:356:1;2085:68:0;43401:13:::1;:30:::0;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;43447:36:::1;::::0;6043:41:1;;;43447:36:0::1;::::0;6031:2:1;6016:18;43447:36:0::1;;;;;;;43324:167:::0;:::o;23107:208::-;23179:7;23207:19;;;23199:74;;;;;;;10586:2:1;23199:74:0;;;10568:21:1;10625:2;10605:18;;;10598:30;10664:34;10644:18;;;10637:62;10735:12;10715:18;;;10708:40;10765:19;;23199:74:0;10384:406:1;23199:74:0;-1:-1:-1;23291:16:0;;;;;;:9;:16;;;;;;;23107:208::o;2524:94::-;1946:6;;2093:23;1946:6;741:10;2093:23;2085:68;;;;;;;12536:2:1;2085:68:0;;;12518:21:1;;;12555:18;;;12548:30;12614:34;12594:18;;;12587:62;12666:18;;2085:68:0;12334:356:1;2085:68:0;2589:21:::1;2607:1;2589:9;:21::i;:::-;2524:94::o:0;23852:104::-;23908:13;23941:7;23934:14;;;;;:::i;25535:295::-;25638:24;;;741:10;25638:24;;25630:62;;;;;;;8975:2:1;25630:62:0;;;8957:21:1;9014:2;8994:18;;;8987:30;9053:27;9033:18;;;9026:55;9098:18;;25630:62:0;8773:349:1;25630:62:0;741:10;25705:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;25774:48;;6043:41:1;;;25705:42:0;;741:10;25774:48;;6016:18:1;25774:48:0;;;;;;;25535:295;;:::o;26798:328::-;26973:41;741:10;27006:7;26973:18;:41::i;:::-;26965:103;;;;;;;14125:2:1;26965:103:0;;;14107:21:1;14164:2;14144:18;;;14137:30;14203:34;14183:18;;;14176:62;14274:19;14254:18;;;14247:47;14311:19;;26965:103:0;13923:413:1;26965:103:0;27079:39;27093:4;27099:2;27103:7;27112:5;27079:13;:39::i;:::-;26798:328;;;;:::o;24027:334::-;28701:4;28725:16;;;:7;:16;;;;;;24100:13;;28725:30;:16;24126:76;;;;;;;13307:2:1;24126:76:0;;;13289:21:1;13346:2;13326:18;;;13319:30;13385:34;13365:18;;;13358:62;13456:17;13436:18;;;13429:45;13491:19;;24126:76:0;13105:411:1;24126:76:0;24215:21;24239:10;:8;:10::i;:::-;24215:34;;24291:1;24273:7;24267:21;:25;:86;;;;;;;;;;;;;;;;;24319:7;24328:18;:7;:16;:18::i;:::-;24302:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24267:86;24260:93;24027:334;-1:-1:-1;;;24027:334:0:o;43655:442::-;1946:6;;2093:23;1946:6;741:10;2093:23;2085:68;;;;;;;12536:2:1;2085:68:0;;;12518:21:1;;;12555:18;;;12548:30;12614:34;12594:18;;;12587:62;12666:18;;2085:68:0;12334:356:1;2085:68:0;43747:23:::1;::::0;::::1;43739:61;;;::::0;::::1;::::0;;14956:2:1;43739:61:0::1;::::0;::::1;14938:21:1::0;14995:2;14975:18;;;14968:30;15034:27;15014:18;;;15007:55;15079:18;;43739:61:0::1;14754:349:1::0;43739:61:0::1;43865:11;::::0;43897:9;43889:48:::1;;;::::0;::::1;::::0;;11768:2:1;43889:48:0::1;::::0;::::1;11750:21:1::0;11807:2;11787:18;;;11780:30;11846:28;11826:18;;;11819:56;11892:18;;43889:48:0::1;11566:350:1::0;43889:48:0::1;43955:11;43950:109;43978:5;43972:3;:11;43950:109;;;44007:40;44017:9:::0;44028:18:::1;44043:3:::0;44028:12;:18:::1;:::i;:::-;44007:9;:40::i;:::-;43985:5:::0;::::1;::::0;::::1;:::i;:::-;;;;43950:109;;;;44084:5;44069:11;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;43655:442:0:o;2773:192::-;1946:6;;2093:23;1946:6;741:10;2093:23;2085:68;;;;;;;12536:2:1;2085:68:0;;;12518:21:1;;;12555:18;;;12548:30;12614:34;12594:18;;;12587:62;12666:18;;2085:68:0;12334:356:1;2085:68:0;2862:22:::1;::::0;::::1;2854:73;;;::::0;::::1;::::0;;7806:2:1;2854:73:0::1;::::0;::::1;7788:21:1::0;7845:2;7825:18;;;7818:30;7884:34;7864:18;;;7857:62;7955:8;7935:18;;;7928:36;7981:19;;2854:73:0::1;7604:402:1::0;2854:73:0::1;2938:19;2948:8;2938:9;:19::i;22738:305::-:0;22840:4;22877:40;;;22892:25;22877:40;;:105;;-1:-1:-1;22934:48:0;;;22949:33;22934:48;22877:105;:158;;;-1:-1:-1;21378:25:0;21363:40;;;;22999:36;21254:157;32618:174;32693:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;32747:23;32693:24;32747:14;:23::i;:::-;32738:46;;;;;;;;;;;;32618:174;;:::o;28930:348::-;29023:4;28725:16;;;:7;:16;;;;;;:30;:16;29040:73;;;;;;;9329:2:1;29040:73:0;;;9311:21:1;9368:2;9348:18;;;9341:30;9407:34;9387:18;;;9380:62;9478:14;9458:18;;;9451:42;9510:19;;29040:73:0;9127:408:1;29040:73:0;29124:13;29140:23;29155:7;29140:14;:23::i;:::-;29124:39;;29193:5;29182:16;;:7;:16;;;:51;;;;29226:7;29202:31;;:20;29214:7;29202:11;:20::i;:::-;:31;;;29182:51;:87;;;-1:-1:-1;26022:25:0;;;;25998:4;26022:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29237:32;29174:96;28930:348;-1:-1:-1;;;;28930:348:0:o;31922:578::-;32081:4;32054:31;;:23;32069:7;32054:14;:23::i;:::-;:31;;;32046:85;;;;;;;12897:2:1;32046:85:0;;;12879:21:1;12936:2;12916:18;;;12909:30;12975:34;12955:18;;;12948:62;13046:11;13026:18;;;13019:39;13075:19;;32046:85:0;12695:405:1;32046:85:0;32150:16;;;32142:65;;;;;;;8570:2:1;32142:65:0;;;8552:21:1;8609:2;8589:18;;;8582:30;8648:34;8628:18;;;8621:62;8719:6;8699:18;;;8692:34;8743:19;;32142:65:0;8368:400:1;32142:65:0;32220:39;32241:4;32247:2;32251:7;32220:20;:39::i;:::-;32324:29;32341:1;32345:7;32324:8;:29::i;:::-;32366:15;;;;;;;:9;:15;;;;;:20;;32385:1;;32366:15;:20;;32385:1;;32366:20;:::i;:::-;;;;-1:-1:-1;;32397:13:0;;;;;;;:9;:13;;;;;:18;;32414:1;;32397:13;:18;;32414:1;;32397:18;:::i;:::-;;;;-1:-1:-1;;32426:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;32465:27;;32426:16;;32465:27;;;;;;;31922:578;;;:::o;31225:360::-;31285:13;31301:23;31316:7;31301:14;:23::i;:::-;31285:39;;31337:48;31358:5;31373:1;31377:7;31337:20;:48::i;:::-;31426:29;31443:1;31447:7;31426:8;:29::i;:::-;31468:16;;;;;;;:9;:16;;;;;:21;;31488:1;;31468:16;:21;;31488:1;;31468:21;:::i;:::-;;;;-1:-1:-1;;31507:16:0;;;;:7;:16;;;;;;31500:23;;;;;;31541:36;31515:7;;31507:16;31500:23;31541:36;;;;;31507:16;;31541:36;31274:311;31225:360;:::o;2973:173::-;3048:6;;;;3065:17;;;;;;;;;;;3098:40;;3048:6;;;3065:17;3048:6;;3098:40;;3029:16;;3098:40;3018:128;2973:173;:::o;28008:315::-;28165:28;28175:4;28181:2;28185:7;28165:9;:28::i;:::-;28212:48;28235:4;28241:2;28245:7;28254:5;28212:22;:48::i;:::-;28204:111;;;;;;;7387:2:1;28204:111:0;;;7369:21:1;7426:2;7406:18;;;7399:30;7465:34;7445:18;;;7438:62;7536:20;7516:18;;;7509:48;7574:19;;28204:111:0;7185:414:1;44365:100:0;44417:13;44450:7;44443:14;;;;;:::i;18697:723::-;18753:13;18974:10;18970:53;;-1:-1:-1;;19001:10:0;;;;;;;;;;;;;;;;;;18697:723::o;18970:53::-;19048:5;19033:12;19089:78;19096:9;;19089:78;;19122:8;;;;:::i;:::-;;-1:-1:-1;19145:10:0;;-1:-1:-1;19153:2:0;19145:10;;:::i;:::-;;;19089:78;;;19177:19;19209:6;19199:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19199:17:0;;19177:39;;19227:154;19234:10;;19227:154;;19261:11;19271:1;19261:11;;:::i;:::-;;-1:-1:-1;19330:10:0;19338:2;19330:5;:10;:::i;:::-;19317:24;;:2;:24;:::i;:::-;19304:39;;19287:6;19294;19287:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;19358:11:0;19367:2;19358:11;;:::i;:::-;;;19227:154;;29620:110;29696:26;29706:2;29710:7;29696:26;;;;;;;;;;;;:9;:26::i;:::-;29620:110;;:::o;38460:589::-;38666:18;;;38662:187;;38701:40;38733:7;39876:10;:17;;39849:24;;;;:15;:24;;;;;:44;;;39904:24;;;;;;;;;;;;39772:164;38701:40;38662:187;;;38771:2;38763:10;;:4;:10;;;38759:90;;38790:47;38823:4;38829:7;38790:32;:47::i;:::-;38863:16;;;38859:183;;38896:45;38933:7;38896:36;:45::i;38859:183::-;38969:4;38963:10;;:2;:10;;;38959:83;;38990:40;39018:2;39022:7;38990:27;:40::i;33357:803::-;33512:4;33533:13;;;11593:20;11641:8;33529:624;;33569:72;;;;;:36;;;;;;:72;;741:10;;33620:4;;33626:7;;33635:5;;33569:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33569:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33565:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33815:13:0;;33811:272;;33858:60;;;;;7387:2:1;33858:60:0;;;7369:21:1;7426:2;7406:18;;;7399:30;7465:34;7445:18;;;7438:62;7536:20;7516:18;;;7509:48;7574:19;;33858:60:0;7185:414:1;33811:272:0;34033:6;34027:13;34018:6;34014:2;34010:15;34003:38;33565:533;33692:55;;33702:45;33692:55;;-1:-1:-1;33685:62:0;;33529:624;-1:-1:-1;34137:4:0;33357:803;;;;;;:::o;29957:321::-;30087:18;30093:2;30097:7;30087:5;:18::i;:::-;30138:54;30169:1;30173:2;30177:7;30186:5;30138:22;:54::i;:::-;30116:154;;;;;;;7387:2:1;30116:154:0;;;7369:21:1;7426:2;7406:18;;;7399:30;7465:34;7445:18;;;7438:62;7536:20;7516:18;;;7509:48;7574:19;;30116:154:0;7185:414:1;40563:988:0;40829:22;40879:1;40854:22;40871:4;40854:16;:22::i;:::-;:26;;;;:::i;:::-;40891:18;40912:26;;;:17;:26;;;;;;40829:51;;-1:-1:-1;41045:28:0;;;41041:328;;41112:18;;;41090:19;41112:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41163:30;;;;;;:44;;;41280:30;;:17;:30;;;;;:43;;;41041:328;-1:-1:-1;41465:26:0;;;;:17;:26;;;;;;;;41458:33;;;41509:18;;;;;;:12;:18;;;;;:34;;;;;;;41502:41;40563:988::o;41846:1079::-;42124:10;:17;42099:22;;42124:21;;42144:1;;42124:21;:::i;:::-;42156:18;42177:24;;;:15;:24;;;;;;42550:10;:26;;42099:46;;-1:-1:-1;42177:24:0;;42099:46;;42550:26;;;;;;:::i;:::-;;;;;;;;;42528:48;;42614:11;42589:10;42600;42589:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42694:28;;;:15;:28;;;;;;;:41;;;42866:24;;;;;42859:31;42901:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41917:1008;;;41846:1079;:::o;39350:221::-;39435:14;39452:20;39469:2;39452:16;:20::i;:::-;39483:16;;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39528:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39350:221:0:o;30614:382::-;30694:16;;;30686:61;;;;;;;11407:2:1;30686:61:0;;;11389:21:1;;;11426:18;;;11419:30;11485:34;11465:18;;;11458:62;11537:18;;30686:61:0;11205:356:1;30686:61:0;28701:4;28725:16;;;:7;:16;;;;;;:30;:16;:30;30758:58;;;;;;;8213:2:1;30758:58:0;;;8195:21:1;8252:2;8232:18;;;8225:30;8291;8271:18;;;8264:58;8339:18;;30758:58:0;8011:352:1;30758:58:0;30829:45;30858:1;30862:2;30866:7;30829:20;:45::i;:::-;30887:13;;;;;;;:9;:13;;;;;:18;;30904:1;;30887:13;:18;;30904:1;;30887:18;:::i;:::-;;;;-1:-1:-1;;30916:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;30955:33;;30916:16;;;30955:33;;30916:16;;30955:33;30614:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:196:1;82:20;;142:42;131:54;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:160::-;280:20;;336:13;;329:21;319:32;;309:60;;365:1;362;355:12;380:186;439:6;492:2;480:9;471:7;467:23;463:32;460:52;;;508:1;505;498:12;460:52;531:29;550:9;531:29;:::i;571:260::-;639:6;647;700:2;688:9;679:7;675:23;671:32;668:52;;;716:1;713;706:12;668:52;739:29;758:9;739:29;:::i;:::-;729:39;;787:38;821:2;810:9;806:18;787:38;:::i;:::-;777:48;;571:260;;;;;:::o;836:328::-;913:6;921;929;982:2;970:9;961:7;957:23;953:32;950:52;;;998:1;995;988:12;950:52;1021:29;1040:9;1021:29;:::i;:::-;1011:39;;1069:38;1103:2;1092:9;1088:18;1069:38;:::i;:::-;1059:48;;1154:2;1143:9;1139:18;1126:32;1116:42;;836:328;;;;;:::o;1169:1197::-;1264:6;1272;1280;1288;1341:3;1329:9;1320:7;1316:23;1312:33;1309:53;;;1358:1;1355;1348:12;1309:53;1381:29;1400:9;1381:29;:::i;:::-;1371:39;;1429:38;1463:2;1452:9;1448:18;1429:38;:::i;:::-;1419:48;;1514:2;1503:9;1499:18;1486:32;1476:42;;1569:2;1558:9;1554:18;1541:32;1592:18;1633:2;1625:6;1622:14;1619:34;;;1649:1;1646;1639:12;1619:34;1687:6;1676:9;1672:22;1662:32;;1732:7;1725:4;1721:2;1717:13;1713:27;1703:55;;1754:1;1751;1744:12;1703:55;1790:2;1777:16;1812:2;1808;1805:10;1802:36;;;1818:18;;:::i;:::-;1952:2;1946:9;2014:4;2006:13;;1857:66;2002:22;;;2026:2;1998:31;1994:40;1982:53;;;2050:18;;;2070:22;;;2047:46;2044:72;;;2096:18;;:::i;:::-;2136:10;2132:2;2125:22;2171:2;2163:6;2156:18;2211:7;2206:2;2201;2197;2193:11;2189:20;2186:33;2183:53;;;2232:1;2229;2222:12;2183:53;2288:2;2283;2279;2275:11;2270:2;2262:6;2258:15;2245:46;2333:1;2328:2;2323;2315:6;2311:15;2307:24;2300:35;2354:6;2344:16;;;;;;;1169:1197;;;;;;;:::o;2371:254::-;2436:6;2444;2497:2;2485:9;2476:7;2472:23;2468:32;2465:52;;;2513:1;2510;2503:12;2465:52;2536:29;2555:9;2536:29;:::i;:::-;2526:39;;2584:35;2615:2;2604:9;2600:18;2584:35;:::i;2630:254::-;2698:6;2706;2759:2;2747:9;2738:7;2734:23;2730:32;2727:52;;;2775:1;2772;2765:12;2727:52;2798:29;2817:9;2798:29;:::i;:::-;2788:39;2874:2;2859:18;;;;2846:32;;-1:-1:-1;;;2630:254:1:o;2889:180::-;2945:6;2998:2;2986:9;2977:7;2973:23;2969:32;2966:52;;;3014:1;3011;3004:12;2966:52;3037:26;3053:9;3037:26;:::i;3074:245::-;3132:6;3185:2;3173:9;3164:7;3160:23;3156:32;3153:52;;;3201:1;3198;3191:12;3153:52;3240:9;3227:23;3259:30;3283:5;3259:30;:::i;3324:249::-;3393:6;3446:2;3434:9;3425:7;3421:23;3417:32;3414:52;;;3462:1;3459;3452:12;3414:52;3494:9;3488:16;3513:30;3537:5;3513:30;:::i;3578:592::-;3649:6;3657;3710:2;3698:9;3689:7;3685:23;3681:32;3678:52;;;3726:1;3723;3716:12;3678:52;3766:9;3753:23;3795:18;3836:2;3828:6;3825:14;3822:34;;;3852:1;3849;3842:12;3822:34;3890:6;3879:9;3875:22;3865:32;;3935:7;3928:4;3924:2;3920:13;3916:27;3906:55;;3957:1;3954;3947:12;3906:55;3997:2;3984:16;4023:2;4015:6;4012:14;4009:34;;;4039:1;4036;4029:12;4009:34;4084:7;4079:2;4070:6;4066:2;4062:15;4058:24;4055:37;4052:57;;;4105:1;4102;4095:12;4052:57;4136:2;4128:11;;;;;4158:6;;-1:-1:-1;3578:592:1;;-1:-1:-1;;;;3578:592:1:o;4175:180::-;4234:6;4287:2;4275:9;4266:7;4262:23;4258:32;4255:52;;;4303:1;4300;4293:12;4255:52;-1:-1:-1;4326:23:1;;4175:180;-1:-1:-1;4175:180:1:o;4360:316::-;4401:3;4439:5;4433:12;4466:6;4461:3;4454:19;4482:63;4538:6;4531:4;4526:3;4522:14;4515:4;4508:5;4504:16;4482:63;:::i;:::-;4590:2;4578:15;4595:66;4574:88;4565:98;;;;4665:4;4561:109;;4360:316;-1:-1:-1;;4360:316:1:o;4681:470::-;4860:3;4898:6;4892:13;4914:53;4960:6;4955:3;4948:4;4940:6;4936:17;4914:53;:::i;:::-;5030:13;;4989:16;;;;5052:57;5030:13;4989:16;5086:4;5074:17;;5052:57;:::i;:::-;5125:20;;4681:470;-1:-1:-1;;;;4681:470:1:o;5387:511::-;5581:4;5610:42;5691:2;5683:6;5679:15;5668:9;5661:34;5743:2;5735:6;5731:15;5726:2;5715:9;5711:18;5704:43;;5783:6;5778:2;5767:9;5763:18;5756:34;5826:3;5821:2;5810:9;5806:18;5799:31;5847:45;5887:3;5876:9;5872:19;5864:6;5847:45;:::i;:::-;5839:53;5387:511;-1:-1:-1;;;;;;5387:511:1:o;6095:449::-;6254:2;6243:9;6236:21;6293:6;6288:2;6277:9;6273:18;6266:34;6350:6;6342;6337:2;6326:9;6322:18;6309:48;6406:1;6377:22;;;6401:2;6373:31;;;6366:42;;;;6460:2;6448:15;;;6465:66;6444:88;6429:104;6425:113;;6095:449;-1:-1:-1;6095:449:1:o;6549:219::-;6698:2;6687:9;6680:21;6661:4;6718:44;6758:2;6747:9;6743:18;6735:6;6718:44;:::i;15648:128::-;15688:3;15719:1;15715:6;15712:1;15709:13;15706:39;;;15725:18;;:::i;:::-;-1:-1:-1;15761:9:1;;15648:128::o;15781:120::-;15821:1;15847;15837:35;;15852:18;;:::i;:::-;-1:-1:-1;15886:9:1;;15781:120::o;15906:125::-;15946:4;15974:1;15971;15968:8;15965:34;;;15979:18;;:::i;:::-;-1:-1:-1;16016:9:1;;15906:125::o;16036:258::-;16108:1;16118:113;16132:6;16129:1;16126:13;16118:113;;;16208:11;;;16202:18;16189:11;;;16182:39;16154:2;16147:10;16118:113;;;16249:6;16246:1;16243:13;16240:48;;;-1:-1:-1;;16284:1:1;16266:16;;16259:27;16036:258::o;16299:437::-;16378:1;16374:12;;;;16421;;;16442:61;;16496:4;16488:6;16484:17;16474:27;;16442:61;16549:2;16541:6;16538:14;16518:18;16515:38;16512:218;;;16586:77;16583:1;16576:88;16687:4;16684:1;16677:15;16715:4;16712:1;16705:15;16512:218;;16299:437;;;:::o;16741:195::-;16780:3;16811:66;16804:5;16801:77;16798:103;;;16881:18;;:::i;:::-;-1:-1:-1;16928:1:1;16917:13;;16741:195::o;16941:112::-;16973:1;16999;16989:35;;17004:18;;:::i;:::-;-1:-1:-1;17038:9:1;;16941:112::o;17058:184::-;17110:77;17107:1;17100:88;17207:4;17204:1;17197:15;17231:4;17228:1;17221:15;17247:184;17299:77;17296:1;17289:88;17396:4;17393:1;17386:15;17420:4;17417:1;17410:15;17436:184;17488:77;17485:1;17478:88;17585:4;17582:1;17575:15;17609:4;17606:1;17599:15;17625:184;17677:77;17674:1;17667:88;17774:4;17771:1;17764:15;17798:4;17795:1;17788:15;17814:184;17866:77;17863:1;17856:88;17963:4;17960:1;17953:15;17987:4;17984:1;17977:15;18003:177;18088:66;18081:5;18077:78;18070:5;18067:89;18057:117;;18170:1;18167;18160:12
Swarm Source
ipfs://ed8f388c413af04c055f6136add52cf44a3b6359ae29f2555321dea83e969c00
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.