Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 6 from a total of 6 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 15372533 | 1291 days ago | IN | 0 ETH | 0.00049818 | ||||
| Set Approval For... | 15372533 | 1291 days ago | IN | 0 ETH | 0.00048248 | ||||
| Mint NFT | 15327694 | 1298 days ago | IN | 0 ETH | 0.00354086 | ||||
| Set Admin Approv... | 15327615 | 1298 days ago | IN | 0 ETH | 0.00109204 | ||||
| Set Base URI | 15320822 | 1299 days ago | IN | 0 ETH | 0.00345393 | ||||
| Transfer Ownersh... | 15084149 | 1336 days ago | IN | 0 ETH | 0.00149014 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Sensei
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-07-02
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: https://github.com/Cainuriel/ERC721A/blob/main/contracts/ERC721A.sol
// Creator: Chiru Labs
error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
*
* Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
*
* Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
*/
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Compiler will pack this into a single 256bit word.
struct TokenOwnership {
// The address of the owner.
address addr;
// Keeps track of the start time of ownership with minimal overhead for tokenomics.
uint64 startTimestamp;
// Whether the token has been burned.
bool burned;
}
// Compiler will pack this into a single 256bit word.
struct AddressData {
// Realistically, 2**64-1 is more than enough.
uint64 balance;
// Keeps track of mint count with minimal overhead for tokenomics.
uint64 numberMinted;
// Keeps track of burn count with minimal overhead for tokenomics.
uint64 numberBurned;
// For miscellaneous variable(s) pertaining to the address
// (e.g. number of whitelist mint slots used).
// If there are multiple variables, please pack them into a uint64.
uint64 aux;
}
// The tokenId of the next token to be minted.
uint256 internal _currentIndex;
// The number of tokens burned.
uint256 internal _burnCounter;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
mapping(uint256 => TokenOwnership) internal _ownerships;
// Mapping owner address to address data
mapping(address => AddressData) private _addressData;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_currentIndex = _startTokenId();
}
/**
* To change the starting tokenId, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 0;
}
/**
* @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
*/
function totalSupply() public view returns (uint256) {
// Counter underflow is impossible as _burnCounter cannot be incremented
// more than _currentIndex - _startTokenId() times
unchecked {
return _currentIndex - _burnCounter - _startTokenId();
}
}
/**
* Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view returns (uint256) {
// Counter underflow is impossible as _currentIndex does not decrement,
// and it is initialized to _startTokenId()
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view override returns (uint256) {
if (owner == address(0)) revert BalanceQueryForZeroAddress();
return uint256(_addressData[owner].balance);
}
/**
* Returns the number of tokens minted by `owner`.
*/
function _numberMinted(address owner) internal view returns (uint256) {
return uint256(_addressData[owner].numberMinted);
}
/**
* Returns the number of tokens burned by or on behalf of `owner`.
*/
function _numberBurned(address owner) internal view returns (uint256) {
return uint256(_addressData[owner].numberBurned);
}
/**
* Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
*/
function _getAux(address owner) internal view returns (uint64) {
return _addressData[owner].aux;
}
/**
* Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
* If there are multiple variables, please pack them into a uint64.
*/
function _setAux(address owner, uint64 aux) internal {
_addressData[owner].aux = aux;
}
/**
* Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around in the collection over time.
*/
function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr && curr < _currentIndex) {
TokenOwnership memory ownership = _ownerships[curr];
if (!ownership.burned) {
if (ownership.addr != address(0)) {
return ownership;
}
// Invariant:
// There will always be an ownership that has an address and is not burned
// before an ownership that does not have an address and is not burned.
// Hence, curr will not underflow.
while (true) {
curr--;
ownership = _ownerships[curr];
if (ownership.addr != address(0)) {
return ownership;
}
}
}
}
}
revert OwnerQueryForNonexistentToken();
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return _ownershipOf(tokenId).addr;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
string memory baseURI = _baseURI();
return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return '';
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public override {
address owner = ERC721A.ownerOf(tokenId);
if (to == owner) revert ApprovalToCurrentOwner();
if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
revert ApprovalCallerNotOwnerNorApproved();
}
_approve(to, tokenId, owner);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view override returns (address) {
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
if (operator == _msgSender()) revert ApproveToCaller();
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, '');
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
_transfer(from, to, tokenId);
if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
*/
function _exists(uint256 tokenId) internal view returns (bool) {
return _startTokenId() <= tokenId && tokenId < _currentIndex &&
!_ownerships[tokenId].burned;
}
function _safeMint(address to, uint256 quantity) internal {
_safeMint(to, quantity, '');
}
/**
* @dev Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal {
_mint(to, quantity, _data, true);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _mint(
address to,
uint256 quantity,
bytes memory _data,
bool safe
) internal {
uint256 startTokenId = _currentIndex;
if (to == address(0)) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
// updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
unchecked {
_addressData[to].balance += uint64(quantity);
_addressData[to].numberMinted += uint64(quantity);
_ownerships[startTokenId].addr = to;
_ownerships[startTokenId].startTimestamp = uint64(block.timestamp);
uint256 updatedIndex = startTokenId;
uint256 end = updatedIndex + quantity;
if (safe && to.isContract()) {
do {
emit Transfer(address(0), to, updatedIndex);
if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
} while (updatedIndex != end);
// Reentrancy protection
if (_currentIndex != startTokenId) revert();
} else {
do {
emit Transfer(address(0), to, updatedIndex++);
} while (updatedIndex != end);
}
_currentIndex = updatedIndex;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) private {
TokenOwnership memory prevOwnership = _ownershipOf(tokenId);
if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
bool isApprovedOrOwner = (_msgSender() == from ||
isApprovedForAll(from, _msgSender()) ||
getApproved(tokenId) == _msgSender());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
if (to == address(0)) revert TransferToZeroAddress();
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, from);
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
_addressData[from].balance -= 1;
_addressData[to].balance += 1;
TokenOwnership storage currSlot = _ownerships[tokenId];
currSlot.addr = to;
currSlot.startTimestamp = uint64(block.timestamp);
// If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
TokenOwnership storage nextSlot = _ownerships[nextTokenId];
if (nextSlot.addr == address(0)) {
// This will suffice for checking _exists(nextTokenId),
// as a burned slot cannot contain the zero address.
if (nextTokenId != _currentIndex) {
nextSlot.addr = from;
nextSlot.startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev This is equivalent to _burn(tokenId, false)
*/
function _burn(uint256 tokenId) internal virtual {
_burn(tokenId, false);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
TokenOwnership memory prevOwnership = _ownershipOf(tokenId);
address from = prevOwnership.addr;
if (approvalCheck) {
bool isApprovedOrOwner = (_msgSender() == from ||
isApprovedForAll(from, _msgSender()) ||
getApproved(tokenId) == _msgSender());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
}
_beforeTokenTransfers(from, address(0), tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, from);
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
AddressData storage addressData = _addressData[from];
addressData.balance -= 1;
addressData.numberBurned += 1;
// Keep track of who burned the token, and the timestamp of burning.
TokenOwnership storage currSlot = _ownerships[tokenId];
currSlot.addr = from;
currSlot.startTimestamp = uint64(block.timestamp);
currSlot.burned = true;
// If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
TokenOwnership storage nextSlot = _ownerships[nextTokenId];
if (nextSlot.addr == address(0)) {
// This will suffice for checking _exists(nextTokenId),
// as a burned slot cannot contain the zero address.
if (nextTokenId != _currentIndex) {
nextSlot.addr = from;
nextSlot.startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(from, address(0), tokenId);
_afterTokenTransfers(from, address(0), tokenId, 1);
// Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
unchecked {
_burnCounter++;
}
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(
address to,
uint256 tokenId,
address owner
) private {
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkContractOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert TransferToNonERC721ReceiverImplementer();
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
}
/**
* @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
* And also called before burning one token.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
* minting.
* And also called after one token has been burned.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
* transferred to `to`.
* - When `from` is zero, `tokenId` has been minted for `to`.
* - When `to` is zero, `tokenId` has been burned by `from`.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
}
// File: Sensei.sol
//import "./ERC721A.sol";
/// @title Sensei Gallery NFT
/// @author https:///
/// @notice Tokenized gallery of real art
/// @dev https://cainuriel.github.io/
contract Sensei is ERC721A, Ownable
{
using Strings for uint256;
string public baseURI;
mapping(uint256 => string) private _tokenURIs;
mapping(address => bool) private _admins;
bool public saleIsActive;
uint256 public soldNFT;
uint256 public NFTPrice;
/**
* Event for Mint
* @param minter who minted tokens
* @param numberOfTokens number of tokens minted
* @param date of tokens minted
*/
event Mint(
address indexed minter,
uint256 numberOfTokens,
uint256 date
);
/**
* Event for token purchase logging
* @param purchaser who paid for the tokens
* @param beneficiary who got the tokens
* @param value weis paid for purchase
* @param idToken NFT purchased
*/
event TokenPurchase(
address indexed purchaser,
address indexed beneficiary,
uint256 value,
uint256 idToken
);
/**
* Event for token purchase logging
* @param amount total sale balance
* @param date collection date
*/
event WithdrawTime(
uint256 amount,
uint256 date
);
constructor()
ERC721A("SENSEI NFTS", "SENSEI")
{
setBaseURI("");
_admins[msg.sender] = true;
}
function supportsInterface(bytes4 interfaceId)
public
view
override(ERC721A)
returns (bool)
{
return super.supportsInterface(interfaceId);
}
function mintNFT(uint32 quantity) public
{
require(_admins[msg.sender], "You don't are allowed for minting");
_safeMint(msg.sender, quantity);
emit Mint(msg.sender, quantity, block.timestamp);
}
function saleNFT() public payable
{
require(saleIsActive, "Sale must be active to buy NFTs");
require(msg.value >= NFTPrice, "value sent needs to be atleast sale price");
uint256 id = totalSupply() +1;
_safeMint(msg.sender, 1); // one to one
soldNFT = soldNFT + 1;
emit TokenPurchase(address(this), msg.sender, msg.value, id);
}
function setBaseURI(string memory newBaseURI) public onlyOwner
{
baseURI = newBaseURI;
}
function _startTokenId() internal pure override returns (uint256)
{
return 1;
}
function withdraw() public onlyOwner
{
uint256 amount = address(this).balance;
payable(msg.sender).transfer(amount);
emit WithdrawTime(amount, block.timestamp);
}
function setAdminApproved(address admin) public onlyOwner
{ require(!_admins[admin], "address admin allowed for minting");
_admins[admin] = true;
}
function setAdminDisapproved(address admin) public onlyOwner
{
require(_admins[admin], "address admin not allowed for minting");
_admins[admin] = false;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
string memory _tokenURI = _tokenURIs[tokenId];
// All the URI with a baseUri
if (bytes(_tokenURI).length > 0) {
return _tokenURI;
}
return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
}
function _setTokenURI(uint256 _tokenId, string memory _tokenURI) internal
{
require(_exists(_tokenId), "ERC721URIStorage: URI set of nonexistent token");
_tokenURIs[_tokenId] = _tokenURI;
}
function balance() public view onlyOwner returns (uint256)
{
return (address(this).balance);
}
function flipSaleState() public onlyOwner
{
saleIsActive = !saleIsActive;
}
function setPrice(uint256 _price) public onlyOwner
{
NFTPrice = _price;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"date","type":"uint256"}],"name":"Mint","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":"purchaser","type":"address"},{"indexed":true,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"idToken","type":"uint256"}],"name":"TokenPurchase","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"date","type":"uint256"}],"name":"WithdrawTime","type":"event"},{"inputs":[],"name":"NFTPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"flipSaleState","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":[{"internalType":"uint32","name":"quantity","type":"uint32"}],"name":"mintNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"setAdminApproved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"setAdminDisapproved","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":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"soldNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f53454e534549204e4654530000000000000000000000000000000000000000008152506040518060400160405280600681526020017f53454e534549000000000000000000000000000000000000000000000000000081525081600290805190602001906200009692919062000312565b508060039080519060200190620000af92919062000312565b50620000c06200016660201b60201c565b6000819055505050620000e8620000dc6200016f60201b60201c565b6200017760201b60201c565b62000108604051806020016040528060008152506200023d60201b60201c565b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620004aa565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200024d6200016f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000273620002e860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c390620003e9565b60405180910390fd5b8060099080519060200190620002e492919062000312565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000320906200041c565b90600052602060002090601f01602090048101928262000344576000855562000390565b82601f106200035f57805160ff191683800117855562000390565b8280016001018555821562000390579182015b828111156200038f57825182559160200191906001019062000372565b5b5090506200039f9190620003a3565b5090565b5b80821115620003be576000816000905550600101620003a4565b5090565b6000620003d16020836200040b565b9150620003de8262000481565b602082019050919050565b600060208201905081810360008301526200040481620003c2565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200043557607f821691505b602082108114156200044c576200044b62000452565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613ac280620004ba6000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063b5d9bc4811610095578063e985e9c511610064578063e985e9c51461061b578063eb8d244414610658578063edfc368314610683578063f2fde38b146106ac576101cd565b8063b5d9bc4814610561578063b69ef8a81461058a578063b88d4fde146105b5578063c87b56dd146105de576101cd565b806395d89b41116100d157806395d89b41146104d85780639e20191214610503578063a22cb4651461050d578063a38bffda14610536576101cd565b8063715018a61461046d5780638da5cb5b1461048457806391b7f5ed146104af576101cd565b806334918dfd1161016f57806355f804b31161013e57806355f804b31461039f5780636352211e146103c85780636c0360eb1461040557806370a0823114610430576101cd565b806334918dfd1461031f5780633ccfd60b1461033657806341de0e521461034d57806342842e0e14610376576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb57806333148553146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612e78565b6106d5565b6040516102069190613253565b60405180910390f35b34801561021b57600080fd5b506102246106e7565b604051610231919061326e565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612f1b565b610779565b60405161026e91906131ec565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612e38565b6107f5565b005b3480156102ac57600080fd5b506102b5610900565b6040516102c29190613370565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612d22565b610917565b005b34801561030057600080fd5b50610309610927565b6040516103169190613370565b60405180910390f35b34801561032b57600080fd5b5061033461092d565b005b34801561034257600080fd5b5061034b6109d5565b005b34801561035957600080fd5b50610374600480360381019061036f9190612f48565b610ad9565b005b34801561038257600080fd5b5061039d60048036038101906103989190612d22565b610bc8565b005b3480156103ab57600080fd5b506103c660048036038101906103c19190612ed2565b610be8565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190612f1b565b610c7e565b6040516103fc91906131ec565b60405180910390f35b34801561041157600080fd5b5061041a610c94565b604051610427919061326e565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190612cb5565b610d22565b6040516104649190613370565b60405180910390f35b34801561047957600080fd5b50610482610df2565b005b34801561049057600080fd5b50610499610e7a565b6040516104a691906131ec565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190612f1b565b610ea4565b005b3480156104e457600080fd5b506104ed610f2a565b6040516104fa919061326e565b60405180910390f35b61050b610fbc565b005b34801561051957600080fd5b50610534600480360381019061052f9190612df8565b6110f2565b005b34801561054257600080fd5b5061054b61126a565b6040516105589190613370565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190612cb5565b611270565b005b34801561059657600080fd5b5061059f6113d3565b6040516105ac9190613370565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190612d75565b611457565b005b3480156105ea57600080fd5b5061060560048036038101906106009190612f1b565b6114d3565b604051610612919061326e565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190612ce2565b611628565b60405161064f9190613253565b60405180910390f35b34801561066457600080fd5b5061066d6116bc565b60405161067a9190613253565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190612cb5565b6116cf565b005b3480156106b857600080fd5b506106d360048036038101906106ce9190612cb5565b611833565b005b60006106e08261192b565b9050919050565b6060600280546106f69061364f565b80601f01602080910402602001604051908101604052809291908181526020018280546107229061364f565b801561076f5780601f106107445761010080835404028352916020019161076f565b820191906000526020600020905b81548152906001019060200180831161075257829003601f168201915b5050505050905090565b600061078482611a0d565b6107ba576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080082610c7e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610868576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610887611a5b565b73ffffffffffffffffffffffffffffffffffffffff16141580156108b957506108b7816108b2611a5b565b611628565b155b156108f0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108fb838383611a63565b505050565b600061090a611b15565b6001546000540303905090565b610922838383611b1e565b505050565b600d5481565b610935611a5b565b73ffffffffffffffffffffffffffffffffffffffff16610953610e7a565b73ffffffffffffffffffffffffffffffffffffffff16146109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090613310565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6109dd611a5b565b73ffffffffffffffffffffffffffffffffffffffff166109fb610e7a565b73ffffffffffffffffffffffffffffffffffffffff1614610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4890613310565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a9c573d6000803e3d6000fd5b507f340eda84c45ce2835fc1d07babdc92122b7d0c5ebf24b5065984e2d2f38dfbcf8142604051610ace92919061338b565b60405180910390a150565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c906132d0565b60405180910390fd5b610b75338263ffffffff16611fd4565b3373ffffffffffffffffffffffffffffffffffffffff167f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f8242604051610bbd9291906133b4565b60405180910390a250565b610be383838360405180602001604052806000815250611457565b505050565b610bf0611a5b565b73ffffffffffffffffffffffffffffffffffffffff16610c0e610e7a565b73ffffffffffffffffffffffffffffffffffffffff1614610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b90613310565b60405180910390fd5b8060099080519060200190610c7a929190612a71565b5050565b6000610c8982611ff2565b600001519050919050565b60098054610ca19061364f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccd9061364f565b8015610d1a5780601f10610cef57610100808354040283529160200191610d1a565b820191906000526020600020905b815481529060010190602001808311610cfd57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d8a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610dfa611a5b565b73ffffffffffffffffffffffffffffffffffffffff16610e18610e7a565b73ffffffffffffffffffffffffffffffffffffffff1614610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590613310565b60405180910390fd5b610e786000612281565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610eac611a5b565b73ffffffffffffffffffffffffffffffffffffffff16610eca610e7a565b73ffffffffffffffffffffffffffffffffffffffff1614610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1790613310565b60405180910390fd5b80600e8190555050565b606060038054610f399061364f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f659061364f565b8015610fb25780601f10610f8757610100808354040283529160200191610fb2565b820191906000526020600020905b815481529060010190602001808311610f9557829003601f168201915b5050505050905090565b600c60009054906101000a900460ff1661100b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611002906132f0565b60405180910390fd5b600e54341015611050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104790613330565b60405180910390fd5b6000600161105c610900565b61106691906134bc565b9050611073336001611fd4565b6001600d5461108291906134bc565b600d819055503373ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167f623b3804fa71d67900d064613da8f94b9617215ee90799290593e1745087ad1834846040516110e792919061338b565b60405180910390a350565b6110fa611a5b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561115f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061116c611a5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611219611a5b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161125e9190613253565b60405180910390a35050565b600e5481565b611278611a5b565b73ffffffffffffffffffffffffffffffffffffffff16611296610e7a565b73ffffffffffffffffffffffffffffffffffffffff16146112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390613310565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f906132b0565b60405180910390fd5b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006113dd611a5b565b73ffffffffffffffffffffffffffffffffffffffff166113fb610e7a565b73ffffffffffffffffffffffffffffffffffffffff1614611451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144890613310565b60405180910390fd5b47905090565b611462848484611b1e565b6114818373ffffffffffffffffffffffffffffffffffffffff16612347565b801561149657506114948484848461235a565b155b156114cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606114de82611a0d565b611514576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600a600084815260200190815260200160002080546115349061364f565b80601f01602080910402602001604051908101604052809291908181526020018280546115609061364f565b80156115ad5780601f10611582576101008083540402835291602001916115ad565b820191906000526020600020905b81548152906001019060200180831161159057829003601f168201915b505050505090506000815111156115c75780915050611623565b6000600980546115d69061364f565b905014156115f3576040518060200160405280600081525061161f565b60096115fe846124ba565b60405160200161160f9291906131c8565b6040516020818303038152906040525b9150505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff1681565b6116d7611a5b565b73ffffffffffffffffffffffffffffffffffffffff166116f5610e7a565b73ffffffffffffffffffffffffffffffffffffffff161461174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613310565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156117d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cf90613350565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61183b611a5b565b73ffffffffffffffffffffffffffffffffffffffff16611859610e7a565b73ffffffffffffffffffffffffffffffffffffffff16146118af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a690613310565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561191f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191690613290565b60405180910390fd5b61192881612281565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119f657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a065750611a058261261b565b5b9050919050565b600081611a18611b15565b11158015611a27575060005482105b8015611a54575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611b2982611ff2565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b94576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611bb5611a5b565b73ffffffffffffffffffffffffffffffffffffffff161480611be45750611be385611bde611a5b565b611628565b5b80611c295750611bf2611a5b565b73ffffffffffffffffffffffffffffffffffffffff16611c1184610779565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c62576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cc9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cd68585856001612685565b611ce260008487611a63565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f62576000548214611f6157878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fcd858585600161268b565b5050505050565b611fee828260405180602001604052806000815250612691565b5050565b611ffa612af7565b600082905080612008611b15565b11158015612017575060005481105b1561224a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161224857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461212c57809250505061227c565b5b60011561224757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461224257809250505061227c565b61212d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612380611a5b565b8786866040518563ffffffff1660e01b81526004016123a29493929190613207565b602060405180830381600087803b1580156123bc57600080fd5b505af19250505080156123ed57506040513d601f19601f820116820180604052508101906123ea9190612ea5565b60015b612467573d806000811461241d576040519150601f19603f3d011682016040523d82523d6000602084013e612422565b606091505b5060008151141561245f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612502576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612616565b600082905060005b6000821461253457808061251d906136b2565b915050600a8261252d9190613512565b915061250a565b60008167ffffffffffffffff8111156125505761254f6137e8565b5b6040519080825280601f01601f1916602001820160405280156125825781602001600182028036833780820191505090505b5090505b6000851461260f5760018261259b9190613543565b9150600a856125aa91906136fb565b60306125b691906134bc565b60f81b8183815181106125cc576125cb6137b9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126089190613512565b9450612586565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b61269e83838360016126a3565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612710576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561274b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127586000868387612685565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561292257506129218773ffffffffffffffffffffffffffffffffffffffff16612347565b5b156129e8575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612997600088848060010195508861235a565b6129cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129285782600054146129e357600080fd5b612a54565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156129e9575b816000819055505050612a6a600086838761268b565b5050505050565b828054612a7d9061364f565b90600052602060002090601f016020900481019282612a9f5760008555612ae6565b82601f10612ab857805160ff1916838001178555612ae6565b82800160010185558215612ae6579182015b82811115612ae5578251825591602001919060010190612aca565b5b509050612af39190612b3a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b53576000816000905550600101612b3b565b5090565b6000612b6a612b6584613402565b6133dd565b905082815260208101848484011115612b8657612b8561381c565b5b612b9184828561360d565b509392505050565b6000612bac612ba784613433565b6133dd565b905082815260208101848484011115612bc857612bc761381c565b5b612bd384828561360d565b509392505050565b600081359050612bea81613a19565b92915050565b600081359050612bff81613a30565b92915050565b600081359050612c1481613a47565b92915050565b600081519050612c2981613a47565b92915050565b600082601f830112612c4457612c43613817565b5b8135612c54848260208601612b57565b91505092915050565b600082601f830112612c7257612c71613817565b5b8135612c82848260208601612b99565b91505092915050565b600081359050612c9a81613a5e565b92915050565b600081359050612caf81613a75565b92915050565b600060208284031215612ccb57612cca613826565b5b6000612cd984828501612bdb565b91505092915050565b60008060408385031215612cf957612cf8613826565b5b6000612d0785828601612bdb565b9250506020612d1885828601612bdb565b9150509250929050565b600080600060608486031215612d3b57612d3a613826565b5b6000612d4986828701612bdb565b9350506020612d5a86828701612bdb565b9250506040612d6b86828701612c8b565b9150509250925092565b60008060008060808587031215612d8f57612d8e613826565b5b6000612d9d87828801612bdb565b9450506020612dae87828801612bdb565b9350506040612dbf87828801612c8b565b925050606085013567ffffffffffffffff811115612de057612ddf613821565b5b612dec87828801612c2f565b91505092959194509250565b60008060408385031215612e0f57612e0e613826565b5b6000612e1d85828601612bdb565b9250506020612e2e85828601612bf0565b9150509250929050565b60008060408385031215612e4f57612e4e613826565b5b6000612e5d85828601612bdb565b9250506020612e6e85828601612c8b565b9150509250929050565b600060208284031215612e8e57612e8d613826565b5b6000612e9c84828501612c05565b91505092915050565b600060208284031215612ebb57612eba613826565b5b6000612ec984828501612c1a565b91505092915050565b600060208284031215612ee857612ee7613826565b5b600082013567ffffffffffffffff811115612f0657612f05613821565b5b612f1284828501612c5d565b91505092915050565b600060208284031215612f3157612f30613826565b5b6000612f3f84828501612c8b565b91505092915050565b600060208284031215612f5e57612f5d613826565b5b6000612f6c84828501612ca0565b91505092915050565b612f7e81613577565b82525050565b612f8d81613589565b82525050565b6000612f9e82613479565b612fa8818561348f565b9350612fb881856020860161361c565b612fc18161382b565b840191505092915050565b6000612fd782613484565b612fe181856134a0565b9350612ff181856020860161361c565b612ffa8161382b565b840191505092915050565b600061301082613484565b61301a81856134b1565b935061302a81856020860161361c565b80840191505092915050565b600081546130438161364f565b61304d81866134b1565b945060018216600081146130685760018114613079576130ac565b60ff198316865281860193506130ac565b61308285613464565b60005b838110156130a457815481890152600182019150602081019050613085565b838801955050505b50505092915050565b60006130c26026836134a0565b91506130cd8261383c565b604082019050919050565b60006130e56025836134a0565b91506130f08261388b565b604082019050919050565b60006131086021836134a0565b9150613113826138da565b604082019050919050565b600061312b601f836134a0565b915061313682613929565b602082019050919050565b600061314e6020836134a0565b915061315982613952565b602082019050919050565b60006131716029836134a0565b915061317c8261397b565b604082019050919050565b60006131946021836134a0565b915061319f826139ca565b604082019050919050565b6131b3816135e1565b82525050565b6131c2816135fb565b82525050565b60006131d48285613036565b91506131e08284613005565b91508190509392505050565b60006020820190506132016000830184612f75565b92915050565b600060808201905061321c6000830187612f75565b6132296020830186612f75565b61323660408301856131aa565b81810360608301526132488184612f93565b905095945050505050565b60006020820190506132686000830184612f84565b92915050565b600060208201905081810360008301526132888184612fcc565b905092915050565b600060208201905081810360008301526132a9816130b5565b9050919050565b600060208201905081810360008301526132c9816130d8565b9050919050565b600060208201905081810360008301526132e9816130fb565b9050919050565b600060208201905081810360008301526133098161311e565b9050919050565b6000602082019050818103600083015261332981613141565b9050919050565b6000602082019050818103600083015261334981613164565b9050919050565b6000602082019050818103600083015261336981613187565b9050919050565b600060208201905061338560008301846131aa565b92915050565b60006040820190506133a060008301856131aa565b6133ad60208301846131aa565b9392505050565b60006040820190506133c960008301856131b9565b6133d660208301846131aa565b9392505050565b60006133e76133f8565b90506133f38282613681565b919050565b6000604051905090565b600067ffffffffffffffff82111561341d5761341c6137e8565b5b6134268261382b565b9050602081019050919050565b600067ffffffffffffffff82111561344e5761344d6137e8565b5b6134578261382b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006134c7826135e1565b91506134d2836135e1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135075761350661372c565b5b828201905092915050565b600061351d826135e1565b9150613528836135e1565b9250826135385761353761375b565b5b828204905092915050565b600061354e826135e1565b9150613559836135e1565b92508282101561356c5761356b61372c565b5b828203905092915050565b6000613582826135c1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b6000613606826135eb565b9050919050565b82818337600083830152505050565b60005b8381101561363a57808201518184015260208101905061361f565b83811115613649576000848401525b50505050565b6000600282049050600182168061366757607f821691505b6020821081141561367b5761367a61378a565b5b50919050565b61368a8261382b565b810181811067ffffffffffffffff821117156136a9576136a86137e8565b5b80604052505050565b60006136bd826135e1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136f0576136ef61372c565b5b600182019050919050565b6000613706826135e1565b9150613711836135e1565b9250826137215761372061375b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f616464726573732061646d696e206e6f7420616c6c6f77656420666f72206d6960008201527f6e74696e67000000000000000000000000000000000000000000000000000000602082015250565b7f596f7520646f6e27742061726520616c6c6f77656420666f72206d696e74696e60008201527f6700000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f20627579204e46547300600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f76616c75652073656e74206e6565647320746f2062652061746c65617374207360008201527f616c652070726963650000000000000000000000000000000000000000000000602082015250565b7f616464726573732061646d696e20616c6c6f77656420666f72206d696e74696e60008201527f6700000000000000000000000000000000000000000000000000000000000000602082015250565b613a2281613577565b8114613a2d57600080fd5b50565b613a3981613589565b8114613a4457600080fd5b50565b613a5081613595565b8114613a5b57600080fd5b50565b613a67816135e1565b8114613a7257600080fd5b50565b613a7e816135eb565b8114613a8957600080fd5b5056fea2646970667358221220cb83dbc7a3d7aaba8a6140a85b27c207f7a3345bdfe6edc7a9ecd75379bc1c2f64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063b5d9bc4811610095578063e985e9c511610064578063e985e9c51461061b578063eb8d244414610658578063edfc368314610683578063f2fde38b146106ac576101cd565b8063b5d9bc4814610561578063b69ef8a81461058a578063b88d4fde146105b5578063c87b56dd146105de576101cd565b806395d89b41116100d157806395d89b41146104d85780639e20191214610503578063a22cb4651461050d578063a38bffda14610536576101cd565b8063715018a61461046d5780638da5cb5b1461048457806391b7f5ed146104af576101cd565b806334918dfd1161016f57806355f804b31161013e57806355f804b31461039f5780636352211e146103c85780636c0360eb1461040557806370a0823114610430576101cd565b806334918dfd1461031f5780633ccfd60b1461033657806341de0e521461034d57806342842e0e14610376576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb57806333148553146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612e78565b6106d5565b6040516102069190613253565b60405180910390f35b34801561021b57600080fd5b506102246106e7565b604051610231919061326e565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612f1b565b610779565b60405161026e91906131ec565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612e38565b6107f5565b005b3480156102ac57600080fd5b506102b5610900565b6040516102c29190613370565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612d22565b610917565b005b34801561030057600080fd5b50610309610927565b6040516103169190613370565b60405180910390f35b34801561032b57600080fd5b5061033461092d565b005b34801561034257600080fd5b5061034b6109d5565b005b34801561035957600080fd5b50610374600480360381019061036f9190612f48565b610ad9565b005b34801561038257600080fd5b5061039d60048036038101906103989190612d22565b610bc8565b005b3480156103ab57600080fd5b506103c660048036038101906103c19190612ed2565b610be8565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190612f1b565b610c7e565b6040516103fc91906131ec565b60405180910390f35b34801561041157600080fd5b5061041a610c94565b604051610427919061326e565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190612cb5565b610d22565b6040516104649190613370565b60405180910390f35b34801561047957600080fd5b50610482610df2565b005b34801561049057600080fd5b50610499610e7a565b6040516104a691906131ec565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190612f1b565b610ea4565b005b3480156104e457600080fd5b506104ed610f2a565b6040516104fa919061326e565b60405180910390f35b61050b610fbc565b005b34801561051957600080fd5b50610534600480360381019061052f9190612df8565b6110f2565b005b34801561054257600080fd5b5061054b61126a565b6040516105589190613370565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190612cb5565b611270565b005b34801561059657600080fd5b5061059f6113d3565b6040516105ac9190613370565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190612d75565b611457565b005b3480156105ea57600080fd5b5061060560048036038101906106009190612f1b565b6114d3565b604051610612919061326e565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190612ce2565b611628565b60405161064f9190613253565b60405180910390f35b34801561066457600080fd5b5061066d6116bc565b60405161067a9190613253565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190612cb5565b6116cf565b005b3480156106b857600080fd5b506106d360048036038101906106ce9190612cb5565b611833565b005b60006106e08261192b565b9050919050565b6060600280546106f69061364f565b80601f01602080910402602001604051908101604052809291908181526020018280546107229061364f565b801561076f5780601f106107445761010080835404028352916020019161076f565b820191906000526020600020905b81548152906001019060200180831161075257829003601f168201915b5050505050905090565b600061078482611a0d565b6107ba576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080082610c7e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610868576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610887611a5b565b73ffffffffffffffffffffffffffffffffffffffff16141580156108b957506108b7816108b2611a5b565b611628565b155b156108f0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108fb838383611a63565b505050565b600061090a611b15565b6001546000540303905090565b610922838383611b1e565b505050565b600d5481565b610935611a5b565b73ffffffffffffffffffffffffffffffffffffffff16610953610e7a565b73ffffffffffffffffffffffffffffffffffffffff16146109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090613310565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6109dd611a5b565b73ffffffffffffffffffffffffffffffffffffffff166109fb610e7a565b73ffffffffffffffffffffffffffffffffffffffff1614610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4890613310565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a9c573d6000803e3d6000fd5b507f340eda84c45ce2835fc1d07babdc92122b7d0c5ebf24b5065984e2d2f38dfbcf8142604051610ace92919061338b565b60405180910390a150565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c906132d0565b60405180910390fd5b610b75338263ffffffff16611fd4565b3373ffffffffffffffffffffffffffffffffffffffff167f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f8242604051610bbd9291906133b4565b60405180910390a250565b610be383838360405180602001604052806000815250611457565b505050565b610bf0611a5b565b73ffffffffffffffffffffffffffffffffffffffff16610c0e610e7a565b73ffffffffffffffffffffffffffffffffffffffff1614610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b90613310565b60405180910390fd5b8060099080519060200190610c7a929190612a71565b5050565b6000610c8982611ff2565b600001519050919050565b60098054610ca19061364f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccd9061364f565b8015610d1a5780601f10610cef57610100808354040283529160200191610d1a565b820191906000526020600020905b815481529060010190602001808311610cfd57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d8a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610dfa611a5b565b73ffffffffffffffffffffffffffffffffffffffff16610e18610e7a565b73ffffffffffffffffffffffffffffffffffffffff1614610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590613310565b60405180910390fd5b610e786000612281565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610eac611a5b565b73ffffffffffffffffffffffffffffffffffffffff16610eca610e7a565b73ffffffffffffffffffffffffffffffffffffffff1614610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1790613310565b60405180910390fd5b80600e8190555050565b606060038054610f399061364f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f659061364f565b8015610fb25780601f10610f8757610100808354040283529160200191610fb2565b820191906000526020600020905b815481529060010190602001808311610f9557829003601f168201915b5050505050905090565b600c60009054906101000a900460ff1661100b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611002906132f0565b60405180910390fd5b600e54341015611050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104790613330565b60405180910390fd5b6000600161105c610900565b61106691906134bc565b9050611073336001611fd4565b6001600d5461108291906134bc565b600d819055503373ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167f623b3804fa71d67900d064613da8f94b9617215ee90799290593e1745087ad1834846040516110e792919061338b565b60405180910390a350565b6110fa611a5b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561115f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061116c611a5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611219611a5b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161125e9190613253565b60405180910390a35050565b600e5481565b611278611a5b565b73ffffffffffffffffffffffffffffffffffffffff16611296610e7a565b73ffffffffffffffffffffffffffffffffffffffff16146112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390613310565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f906132b0565b60405180910390fd5b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006113dd611a5b565b73ffffffffffffffffffffffffffffffffffffffff166113fb610e7a565b73ffffffffffffffffffffffffffffffffffffffff1614611451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144890613310565b60405180910390fd5b47905090565b611462848484611b1e565b6114818373ffffffffffffffffffffffffffffffffffffffff16612347565b801561149657506114948484848461235a565b155b156114cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606114de82611a0d565b611514576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600a600084815260200190815260200160002080546115349061364f565b80601f01602080910402602001604051908101604052809291908181526020018280546115609061364f565b80156115ad5780601f10611582576101008083540402835291602001916115ad565b820191906000526020600020905b81548152906001019060200180831161159057829003601f168201915b505050505090506000815111156115c75780915050611623565b6000600980546115d69061364f565b905014156115f3576040518060200160405280600081525061161f565b60096115fe846124ba565b60405160200161160f9291906131c8565b6040516020818303038152906040525b9150505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff1681565b6116d7611a5b565b73ffffffffffffffffffffffffffffffffffffffff166116f5610e7a565b73ffffffffffffffffffffffffffffffffffffffff161461174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613310565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156117d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cf90613350565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61183b611a5b565b73ffffffffffffffffffffffffffffffffffffffff16611859610e7a565b73ffffffffffffffffffffffffffffffffffffffff16146118af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a690613310565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561191f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191690613290565b60405180910390fd5b61192881612281565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119f657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a065750611a058261261b565b5b9050919050565b600081611a18611b15565b11158015611a27575060005482105b8015611a54575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611b2982611ff2565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b94576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611bb5611a5b565b73ffffffffffffffffffffffffffffffffffffffff161480611be45750611be385611bde611a5b565b611628565b5b80611c295750611bf2611a5b565b73ffffffffffffffffffffffffffffffffffffffff16611c1184610779565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c62576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cc9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cd68585856001612685565b611ce260008487611a63565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f62576000548214611f6157878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fcd858585600161268b565b5050505050565b611fee828260405180602001604052806000815250612691565b5050565b611ffa612af7565b600082905080612008611b15565b11158015612017575060005481105b1561224a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161224857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461212c57809250505061227c565b5b60011561224757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461224257809250505061227c565b61212d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612380611a5b565b8786866040518563ffffffff1660e01b81526004016123a29493929190613207565b602060405180830381600087803b1580156123bc57600080fd5b505af19250505080156123ed57506040513d601f19601f820116820180604052508101906123ea9190612ea5565b60015b612467573d806000811461241d576040519150601f19603f3d011682016040523d82523d6000602084013e612422565b606091505b5060008151141561245f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612502576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612616565b600082905060005b6000821461253457808061251d906136b2565b915050600a8261252d9190613512565b915061250a565b60008167ffffffffffffffff8111156125505761254f6137e8565b5b6040519080825280601f01601f1916602001820160405280156125825781602001600182028036833780820191505090505b5090505b6000851461260f5760018261259b9190613543565b9150600a856125aa91906136fb565b60306125b691906134bc565b60f81b8183815181106125cc576125cb6137b9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126089190613512565b9450612586565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b61269e83838360016126a3565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612710576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561274b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127586000868387612685565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561292257506129218773ffffffffffffffffffffffffffffffffffffffff16612347565b5b156129e8575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612997600088848060010195508861235a565b6129cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129285782600054146129e357600080fd5b612a54565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156129e9575b816000819055505050612a6a600086838761268b565b5050505050565b828054612a7d9061364f565b90600052602060002090601f016020900481019282612a9f5760008555612ae6565b82601f10612ab857805160ff1916838001178555612ae6565b82800160010185558215612ae6579182015b82811115612ae5578251825591602001919060010190612aca565b5b509050612af39190612b3a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b53576000816000905550600101612b3b565b5090565b6000612b6a612b6584613402565b6133dd565b905082815260208101848484011115612b8657612b8561381c565b5b612b9184828561360d565b509392505050565b6000612bac612ba784613433565b6133dd565b905082815260208101848484011115612bc857612bc761381c565b5b612bd384828561360d565b509392505050565b600081359050612bea81613a19565b92915050565b600081359050612bff81613a30565b92915050565b600081359050612c1481613a47565b92915050565b600081519050612c2981613a47565b92915050565b600082601f830112612c4457612c43613817565b5b8135612c54848260208601612b57565b91505092915050565b600082601f830112612c7257612c71613817565b5b8135612c82848260208601612b99565b91505092915050565b600081359050612c9a81613a5e565b92915050565b600081359050612caf81613a75565b92915050565b600060208284031215612ccb57612cca613826565b5b6000612cd984828501612bdb565b91505092915050565b60008060408385031215612cf957612cf8613826565b5b6000612d0785828601612bdb565b9250506020612d1885828601612bdb565b9150509250929050565b600080600060608486031215612d3b57612d3a613826565b5b6000612d4986828701612bdb565b9350506020612d5a86828701612bdb565b9250506040612d6b86828701612c8b565b9150509250925092565b60008060008060808587031215612d8f57612d8e613826565b5b6000612d9d87828801612bdb565b9450506020612dae87828801612bdb565b9350506040612dbf87828801612c8b565b925050606085013567ffffffffffffffff811115612de057612ddf613821565b5b612dec87828801612c2f565b91505092959194509250565b60008060408385031215612e0f57612e0e613826565b5b6000612e1d85828601612bdb565b9250506020612e2e85828601612bf0565b9150509250929050565b60008060408385031215612e4f57612e4e613826565b5b6000612e5d85828601612bdb565b9250506020612e6e85828601612c8b565b9150509250929050565b600060208284031215612e8e57612e8d613826565b5b6000612e9c84828501612c05565b91505092915050565b600060208284031215612ebb57612eba613826565b5b6000612ec984828501612c1a565b91505092915050565b600060208284031215612ee857612ee7613826565b5b600082013567ffffffffffffffff811115612f0657612f05613821565b5b612f1284828501612c5d565b91505092915050565b600060208284031215612f3157612f30613826565b5b6000612f3f84828501612c8b565b91505092915050565b600060208284031215612f5e57612f5d613826565b5b6000612f6c84828501612ca0565b91505092915050565b612f7e81613577565b82525050565b612f8d81613589565b82525050565b6000612f9e82613479565b612fa8818561348f565b9350612fb881856020860161361c565b612fc18161382b565b840191505092915050565b6000612fd782613484565b612fe181856134a0565b9350612ff181856020860161361c565b612ffa8161382b565b840191505092915050565b600061301082613484565b61301a81856134b1565b935061302a81856020860161361c565b80840191505092915050565b600081546130438161364f565b61304d81866134b1565b945060018216600081146130685760018114613079576130ac565b60ff198316865281860193506130ac565b61308285613464565b60005b838110156130a457815481890152600182019150602081019050613085565b838801955050505b50505092915050565b60006130c26026836134a0565b91506130cd8261383c565b604082019050919050565b60006130e56025836134a0565b91506130f08261388b565b604082019050919050565b60006131086021836134a0565b9150613113826138da565b604082019050919050565b600061312b601f836134a0565b915061313682613929565b602082019050919050565b600061314e6020836134a0565b915061315982613952565b602082019050919050565b60006131716029836134a0565b915061317c8261397b565b604082019050919050565b60006131946021836134a0565b915061319f826139ca565b604082019050919050565b6131b3816135e1565b82525050565b6131c2816135fb565b82525050565b60006131d48285613036565b91506131e08284613005565b91508190509392505050565b60006020820190506132016000830184612f75565b92915050565b600060808201905061321c6000830187612f75565b6132296020830186612f75565b61323660408301856131aa565b81810360608301526132488184612f93565b905095945050505050565b60006020820190506132686000830184612f84565b92915050565b600060208201905081810360008301526132888184612fcc565b905092915050565b600060208201905081810360008301526132a9816130b5565b9050919050565b600060208201905081810360008301526132c9816130d8565b9050919050565b600060208201905081810360008301526132e9816130fb565b9050919050565b600060208201905081810360008301526133098161311e565b9050919050565b6000602082019050818103600083015261332981613141565b9050919050565b6000602082019050818103600083015261334981613164565b9050919050565b6000602082019050818103600083015261336981613187565b9050919050565b600060208201905061338560008301846131aa565b92915050565b60006040820190506133a060008301856131aa565b6133ad60208301846131aa565b9392505050565b60006040820190506133c960008301856131b9565b6133d660208301846131aa565b9392505050565b60006133e76133f8565b90506133f38282613681565b919050565b6000604051905090565b600067ffffffffffffffff82111561341d5761341c6137e8565b5b6134268261382b565b9050602081019050919050565b600067ffffffffffffffff82111561344e5761344d6137e8565b5b6134578261382b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006134c7826135e1565b91506134d2836135e1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135075761350661372c565b5b828201905092915050565b600061351d826135e1565b9150613528836135e1565b9250826135385761353761375b565b5b828204905092915050565b600061354e826135e1565b9150613559836135e1565b92508282101561356c5761356b61372c565b5b828203905092915050565b6000613582826135c1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b6000613606826135eb565b9050919050565b82818337600083830152505050565b60005b8381101561363a57808201518184015260208101905061361f565b83811115613649576000848401525b50505050565b6000600282049050600182168061366757607f821691505b6020821081141561367b5761367a61378a565b5b50919050565b61368a8261382b565b810181811067ffffffffffffffff821117156136a9576136a86137e8565b5b80604052505050565b60006136bd826135e1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136f0576136ef61372c565b5b600182019050919050565b6000613706826135e1565b9150613711836135e1565b9250826137215761372061375b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f616464726573732061646d696e206e6f7420616c6c6f77656420666f72206d6960008201527f6e74696e67000000000000000000000000000000000000000000000000000000602082015250565b7f596f7520646f6e27742061726520616c6c6f77656420666f72206d696e74696e60008201527f6700000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f20627579204e46547300600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f76616c75652073656e74206e6565647320746f2062652061746c65617374207360008201527f616c652070726963650000000000000000000000000000000000000000000000602082015250565b7f616464726573732061646d696e20616c6c6f77656420666f72206d696e74696e60008201527f6700000000000000000000000000000000000000000000000000000000000000602082015250565b613a2281613577565b8114613a2d57600080fd5b50565b613a3981613589565b8114613a4457600080fd5b50565b613a5081613595565b8114613a5b57600080fd5b50565b613a67816135e1565b8114613a7257600080fd5b50565b613a7e816135eb565b8114613a8957600080fd5b5056fea2646970667358221220cb83dbc7a3d7aaba8a6140a85b27c207f7a3345bdfe6edc7a9ecd75379bc1c2f64736f6c63430008070033
Deployed Bytecode Sourcemap
44398:4085:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45672:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29554:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31057:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30620:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25690:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31922:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44647:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48269:95;;;;;;;;;;;;;:::i;:::-;;46772:210;;;;;;;;;;;;;:::i;:::-;;45882:241;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32163:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46548:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29362:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44486:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26810:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4705:103;;;;;;;;;;;;;:::i;:::-;;4054:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48373:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29723:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46134:404;;;:::i;:::-;;31333:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44676:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47183:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48140:114;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32419:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47440:459;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31691:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44616:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46995:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4963:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45672:195;45794:4;45823:36;45847:11;45823:23;:36::i;:::-;45816:43;;45672:195;;;:::o;29554:100::-;29608:13;29641:5;29634:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29554:100;:::o;31057:204::-;31125:7;31150:16;31158:7;31150;:16::i;:::-;31145:64;;31175:34;;;;;;;;;;;;;;31145:64;31229:15;:24;31245:7;31229:24;;;;;;;;;;;;;;;;;;;;;31222:31;;31057:204;;;:::o;30620:371::-;30693:13;30709:24;30725:7;30709:15;:24::i;:::-;30693:40;;30754:5;30748:11;;:2;:11;;;30744:48;;;30768:24;;;;;;;;;;;;;;30744:48;30825:5;30809:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;30835:37;30852:5;30859:12;:10;:12::i;:::-;30835:16;:37::i;:::-;30834:38;30809:63;30805:138;;;30896:35;;;;;;;;;;;;;;30805:138;30955:28;30964:2;30968:7;30977:5;30955:8;:28::i;:::-;30682:309;30620:371;;:::o;25690:303::-;25734:7;25959:15;:13;:15::i;:::-;25944:12;;25928:13;;:28;:46;25921:53;;25690:303;:::o;31922:170::-;32056:28;32066:4;32072:2;32076:7;32056:9;:28::i;:::-;31922:170;;;:::o;44647:22::-;;;;:::o;48269:95::-;4285:12;:10;:12::i;:::-;4274:23;;:7;:5;:7::i;:::-;:23;;;4266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48344:12:::1;;;;;;;;;;;48343:13;48328:12;;:28;;;;;;;;;;;;;;;;;;48269:95::o:0;46772:210::-;4285:12;:10;:12::i;:::-;4274:23;;:7;:5;:7::i;:::-;:23;;;4266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46826:14:::1;46843:21;46826:38;;46883:10;46875:28;;:36;46904:6;46875:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;46927:37;46940:6;46948:15;46927:37;;;;;;;:::i;:::-;;;;;;;;46815:167;46772:210::o:0;45882:241::-;45950:7;:19;45958:10;45950:19;;;;;;;;;;;;;;;;;;;;;;;;;45942:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;46019:31;46029:10;46041:8;46019:31;;:9;:31::i;:::-;46077:10;46072:43;;;46089:8;46099:15;46072:43;;;;;;;:::i;:::-;;;;;;;;45882:241;:::o;32163:185::-;32301:39;32318:4;32324:2;32328:7;32301:39;;;;;;;;;;;;:16;:39::i;:::-;32163:185;;;:::o;46548:108::-;4285:12;:10;:12::i;:::-;4274:23;;:7;:5;:7::i;:::-;:23;;;4266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46638:10:::1;46628:7;:20;;;;;;;;;;;;:::i;:::-;;46548:108:::0;:::o;29362:125::-;29426:7;29453:21;29466:7;29453:12;:21::i;:::-;:26;;;29446:33;;29362:125;;;:::o;44486:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26810:206::-;26874:7;26915:1;26898:19;;:5;:19;;;26894:60;;;26926:28;;;;;;;;;;;;;;26894:60;26980:12;:19;26993:5;26980:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;26972:36;;26965:43;;26810:206;;;:::o;4705:103::-;4285:12;:10;:12::i;:::-;4274:23;;:7;:5;:7::i;:::-;:23;;;4266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4770:30:::1;4797:1;4770:18;:30::i;:::-;4705:103::o:0;4054:87::-;4100:7;4127:6;;;;;;;;;;;4120:13;;4054:87;:::o;48373:105::-;4285:12;:10;:12::i;:::-;4274:23;;:7;:5;:7::i;:::-;:23;;;4266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48452:6:::1;48441:8;:17;;;;48373:105:::0;:::o;29723:104::-;29779:13;29812:7;29805:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29723:104;:::o;46134:404::-;46194:12;;;;;;;;;;;46186:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;46274:8;;46261:9;:21;;46253:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;46341:10;46369:1;46354:13;:11;:13::i;:::-;:16;;;;:::i;:::-;46341:29;;46381:24;46391:10;46403:1;46381:9;:24::i;:::-;46454:1;46444:7;;:11;;;;:::i;:::-;46434:7;:21;;;;46500:10;46471:55;;46493:4;46471:55;;;46512:9;46523:2;46471:55;;;;;;;:::i;:::-;;;;;;;;46175:363;46134:404::o;31333:287::-;31444:12;:10;:12::i;:::-;31432:24;;:8;:24;;;31428:54;;;31465:17;;;;;;;;;;;;;;31428:54;31540:8;31495:18;:32;31514:12;:10;:12::i;:::-;31495:32;;;;;;;;;;;;;;;:42;31528:8;31495:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31593:8;31564:48;;31579:12;:10;:12::i;:::-;31564:48;;;31603:8;31564:48;;;;;;:::i;:::-;;;;;;;;31333:287;;:::o;44676:23::-;;;;:::o;47183:184::-;4285:12;:10;:12::i;:::-;4274:23;;:7;:5;:7::i;:::-;:23;;;4266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47270:7:::1;:14;47278:5;47270:14;;;;;;;;;;;;;;;;;;;;;;;;;47262:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;47354:5;47337:7;:14;47345:5;47337:14;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;47183:184:::0;:::o;48140:114::-;48190:7;4285:12;:10;:12::i;:::-;4274:23;;:7;:5;:7::i;:::-;:23;;;4266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48224:21:::1;48216:30;;48140:114:::0;:::o;32419:369::-;32586:28;32596:4;32602:2;32606:7;32586:9;:28::i;:::-;32629:15;:2;:13;;;:15::i;:::-;:76;;;;;32649:56;32680:4;32686:2;32690:7;32699:5;32649:30;:56::i;:::-;32648:57;32629:76;32625:156;;;32729:40;;;;;;;;;;;;;;32625:156;32419:369;;;;:::o;47440:459::-;47513:13;47544:16;47552:7;47544;:16::i;:::-;47539:59;;47569:29;;;;;;;;;;;;;;47539:59;47611:23;47637:10;:19;47648:7;47637:19;;;;;;;;;;;47611:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47738:1;47718:9;47712:23;:27;47708:77;;;47764:9;47756:17;;;;;47708:77;47829:1;47810:7;47804:21;;;;;:::i;:::-;;;:26;;:87;;;;;;;;;;;;;;;;;47857:7;47866:18;:7;:16;:18::i;:::-;47840:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47804:87;47797:94;;;47440:459;;;;:::o;31691:164::-;31788:4;31812:18;:25;31831:5;31812:25;;;;;;;;;;;;;;;:35;31838:8;31812:35;;;;;;;;;;;;;;;;;;;;;;;;;31805:42;;31691:164;;;;:::o;44616:24::-;;;;;;;;;;;;;:::o;46995:169::-;4285:12;:10;:12::i;:::-;4274:23;;:7;:5;:7::i;:::-;:23;;;4266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47072:7:::1;:14;47080:5;47072:14;;;;;;;;;;;;;;;;;;;;;;;;;47071:15;47063:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;47152:4;47135:7;:14;47143:5;47135:14;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;46995:169:::0;:::o;4963:201::-;4285:12;:10;:12::i;:::-;4274:23;;:7;:5;:7::i;:::-;:23;;;4266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5072:1:::1;5052:22;;:8;:22;;;;5044:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5128:28;5147:8;5128:18;:28::i;:::-;4963:201:::0;:::o;26441:305::-;26543:4;26595:25;26580:40;;;:11;:40;;;;:105;;;;26652:33;26637:48;;;:11;:48;;;;26580:105;:158;;;;26702:36;26726:11;26702:23;:36::i;:::-;26580:158;26560:178;;26441:305;;;:::o;33043:187::-;33100:4;33143:7;33124:15;:13;:15::i;:::-;:26;;:53;;;;;33164:13;;33154:7;:23;33124:53;:98;;;;;33195:11;:20;33207:7;33195:20;;;;;;;;;;;:27;;;;;;;;;;;;33194:28;33124:98;33117:105;;33043:187;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;41213:196::-;41355:2;41328:15;:24;41344:7;41328:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41393:7;41389:2;41373:28;;41382:5;41373:28;;;;;;;;;;;;41213:196;;;:::o;46665:99::-;46722:7;46755:1;46748:8;;46665:99;:::o;36156:2130::-;36271:35;36309:21;36322:7;36309:12;:21::i;:::-;36271:59;;36369:4;36347:26;;:13;:18;;;:26;;;36343:67;;36382:28;;;;;;;;;;;;;;36343:67;36423:22;36465:4;36449:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;36486:36;36503:4;36509:12;:10;:12::i;:::-;36486:16;:36::i;:::-;36449:73;:126;;;;36563:12;:10;:12::i;:::-;36539:36;;:20;36551:7;36539:11;:20::i;:::-;:36;;;36449:126;36423:153;;36594:17;36589:66;;36620:35;;;;;;;;;;;;;;36589:66;36684:1;36670:16;;:2;:16;;;36666:52;;;36695:23;;;;;;;;;;;;;;36666:52;36731:43;36753:4;36759:2;36763:7;36772:1;36731:21;:43::i;:::-;36839:35;36856:1;36860:7;36869:4;36839:8;:35::i;:::-;37200:1;37170:12;:18;37183:4;37170:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37244:1;37216:12;:16;37229:2;37216:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37262:31;37296:11;:20;37308:7;37296:20;;;;;;;;;;;37262:54;;37347:2;37331:8;:13;;;:18;;;;;;;;;;;;;;;;;;37397:15;37364:8;:23;;;:49;;;;;;;;;;;;;;;;;;37665:19;37697:1;37687:7;:11;37665:33;;37713:31;37747:11;:24;37759:11;37747:24;;;;;;;;;;;37713:58;;37815:1;37790:27;;:8;:13;;;;;;;;;;;;:27;;;37786:384;;;38000:13;;37985:11;:28;37981:174;;38054:4;38038:8;:13;;;:20;;;;;;;;;;;;;;;;;;38107:13;:28;;;38081:8;:23;;;:54;;;;;;;;;;;;;;;;;;37981:174;37786:384;37145:1036;;;38217:7;38213:2;38198:27;;38207:4;38198:27;;;;;;;;;;;;38236:42;38257:4;38263:2;38267:7;38276:1;38236:20;:42::i;:::-;36260:2026;;36156:2130;;;:::o;33238:104::-;33307:27;33317:2;33321:8;33307:27;;;;;;;;;;;;:9;:27::i;:::-;33238:104;;:::o;28191:1109::-;28253:21;;:::i;:::-;28287:12;28302:7;28287:22;;28370:4;28351:15;:13;:15::i;:::-;:23;;:47;;;;;28385:13;;28378:4;:20;28351:47;28347:886;;;28419:31;28453:11;:17;28465:4;28453:17;;;;;;;;;;;28419:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28494:9;:16;;;28489:729;;28565:1;28539:28;;:9;:14;;;:28;;;28535:101;;28603:9;28596:16;;;;;;28535:101;28938:261;28945:4;28938:261;;;28978:6;;;;;;;;29023:11;:17;29035:4;29023:17;;;;;;;;;;;29011:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29097:1;29071:28;;:9;:14;;;:28;;;29067:109;;29139:9;29132:16;;;;;;29067:109;28938:261;;;28489:729;28400:833;28347:886;29261:31;;;;;;;;;;;;;;28191:1109;;;;:::o;5324:191::-;5398:16;5417:6;;;;;;;;;;;5398:25;;5443:8;5434:6;;:17;;;;;;;;;;;;;;;;;;5498:8;5467:40;;5488:8;5467:40;;;;;;;;;;;;5387:128;5324:191;:::o;6317:387::-;6377:4;6585:12;6652:7;6640:20;6632:28;;6695:1;6688:4;:8;6681:15;;;6317:387;;;:::o;41901:667::-;42064:4;42101:2;42085:36;;;42122:12;:10;:12::i;:::-;42136:4;42142:7;42151:5;42085:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42081:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42336:1;42319:6;:13;:18;42315:235;;;42365:40;;;;;;;;;;;;;;42315:235;42508:6;42502:13;42493:6;42489:2;42485:15;42478:38;42081:480;42214:45;;;42204:55;;;:6;:55;;;;42197:62;;;41901:667;;;;;;:::o;390:723::-;446:13;676:1;667:5;:10;663:53;;;694:10;;;;;;;;;;;;;;;;;;;;;663:53;726:12;741:5;726:20;;757:14;782:78;797:1;789:4;:9;782:78;;815:8;;;;;:::i;:::-;;;;846:2;838:10;;;;;:::i;:::-;;;782:78;;;870:19;902:6;892:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;870:39;;920:154;936:1;927:5;:10;920:154;;964:1;954:11;;;;;:::i;:::-;;;1031:2;1023:5;:10;;;;:::i;:::-;1010:2;:24;;;;:::i;:::-;997:39;;980:6;987;980:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1060:2;1051:11;;;;;:::i;:::-;;;920:154;;;1098:6;1084:21;;;;;390:723;;;;:::o;16384:157::-;16469:4;16508:25;16493:40;;;:11;:40;;;;16486:47;;16384:157;;;:::o;43216:159::-;;;;;:::o;44034:158::-;;;;;:::o;33705:163::-;33828:32;33834:2;33838:8;33848:5;33855:4;33828:5;:32::i;:::-;33705:163;;;:::o;34127:1775::-;34266:20;34289:13;;34266:36;;34331:1;34317:16;;:2;:16;;;34313:48;;;34342:19;;;;;;;;;;;;;;34313:48;34388:1;34376:8;:13;34372:44;;;34398:18;;;;;;;;;;;;;;34372:44;34429:61;34459:1;34463:2;34467:12;34481:8;34429:21;:61::i;:::-;34802:8;34767:12;:16;34780:2;34767:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34866:8;34826:12;:16;34839:2;34826:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34925:2;34892:11;:25;34904:12;34892:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34992:15;34942:11;:25;34954:12;34942:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35025:20;35048:12;35025:35;;35075:11;35104:8;35089:12;:23;35075:37;;35133:4;:23;;;;;35141:15;:2;:13;;;:15::i;:::-;35133:23;35129:641;;;35177:314;35233:12;35229:2;35208:38;;35225:1;35208:38;;;;;;;;;;;;35274:69;35313:1;35317:2;35321:14;;;;;;35337:5;35274:30;:69::i;:::-;35269:174;;35379:40;;;;;;;;;;;;;;35269:174;35486:3;35470:12;:19;;35177:314;;35572:12;35555:13;;:29;35551:43;;35586:8;;;35551:43;35129:641;;;35635:120;35691:14;;;;;;35687:2;35666:40;;35683:1;35666:40;;;;;;;;;;;;35750:3;35734:12;:19;;35635:120;;35129:641;35800:12;35784:13;:28;;;;34742:1082;;35834:60;35863:1;35867:2;35871:12;35885:8;35834:20;:60::i;:::-;34255:1647;34127:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:137::-;2322:5;2360:6;2347:20;2338:29;;2376:32;2402:5;2376:32;:::i;:::-;2277:137;;;;:::o;2420:329::-;2479:6;2528:2;2516:9;2507:7;2503:23;2499:32;2496:119;;;2534:79;;:::i;:::-;2496:119;2654:1;2679:53;2724:7;2715:6;2704:9;2700:22;2679:53;:::i;:::-;2669:63;;2625:117;2420:329;;;;:::o;2755:474::-;2823:6;2831;2880:2;2868:9;2859:7;2855:23;2851:32;2848:119;;;2886:79;;:::i;:::-;2848:119;3006:1;3031:53;3076:7;3067:6;3056:9;3052:22;3031:53;:::i;:::-;3021:63;;2977:117;3133:2;3159:53;3204:7;3195:6;3184:9;3180:22;3159:53;:::i;:::-;3149:63;;3104:118;2755:474;;;;;:::o;3235:619::-;3312:6;3320;3328;3377:2;3365:9;3356:7;3352:23;3348:32;3345:119;;;3383:79;;:::i;:::-;3345:119;3503:1;3528:53;3573:7;3564:6;3553:9;3549:22;3528:53;:::i;:::-;3518:63;;3474:117;3630:2;3656:53;3701:7;3692:6;3681:9;3677:22;3656:53;:::i;:::-;3646:63;;3601:118;3758:2;3784:53;3829:7;3820:6;3809:9;3805:22;3784:53;:::i;:::-;3774:63;;3729:118;3235:619;;;;;:::o;3860:943::-;3955:6;3963;3971;3979;4028:3;4016:9;4007:7;4003:23;3999:33;3996:120;;;4035:79;;:::i;:::-;3996:120;4155:1;4180:53;4225:7;4216:6;4205:9;4201:22;4180:53;:::i;:::-;4170:63;;4126:117;4282:2;4308:53;4353:7;4344:6;4333:9;4329:22;4308:53;:::i;:::-;4298:63;;4253:118;4410:2;4436:53;4481:7;4472:6;4461:9;4457:22;4436:53;:::i;:::-;4426:63;;4381:118;4566:2;4555:9;4551:18;4538:32;4597:18;4589:6;4586:30;4583:117;;;4619:79;;:::i;:::-;4583:117;4724:62;4778:7;4769:6;4758:9;4754:22;4724:62;:::i;:::-;4714:72;;4509:287;3860:943;;;;;;;:::o;4809:468::-;4874:6;4882;4931:2;4919:9;4910:7;4906:23;4902:32;4899:119;;;4937:79;;:::i;:::-;4899:119;5057:1;5082:53;5127:7;5118:6;5107:9;5103:22;5082:53;:::i;:::-;5072:63;;5028:117;5184:2;5210:50;5252:7;5243:6;5232:9;5228:22;5210:50;:::i;:::-;5200:60;;5155:115;4809:468;;;;;:::o;5283:474::-;5351:6;5359;5408:2;5396:9;5387:7;5383:23;5379:32;5376:119;;;5414:79;;:::i;:::-;5376:119;5534:1;5559:53;5604:7;5595:6;5584:9;5580:22;5559:53;:::i;:::-;5549:63;;5505:117;5661:2;5687:53;5732:7;5723:6;5712:9;5708:22;5687:53;:::i;:::-;5677:63;;5632:118;5283:474;;;;;:::o;5763:327::-;5821:6;5870:2;5858:9;5849:7;5845:23;5841:32;5838:119;;;5876:79;;:::i;:::-;5838:119;5996:1;6021:52;6065:7;6056:6;6045:9;6041:22;6021:52;:::i;:::-;6011:62;;5967:116;5763:327;;;;:::o;6096:349::-;6165:6;6214:2;6202:9;6193:7;6189:23;6185:32;6182:119;;;6220:79;;:::i;:::-;6182:119;6340:1;6365:63;6420:7;6411:6;6400:9;6396:22;6365:63;:::i;:::-;6355:73;;6311:127;6096:349;;;;:::o;6451:509::-;6520:6;6569:2;6557:9;6548:7;6544:23;6540:32;6537:119;;;6575:79;;:::i;:::-;6537:119;6723:1;6712:9;6708:17;6695:31;6753:18;6745:6;6742:30;6739:117;;;6775:79;;:::i;:::-;6739:117;6880:63;6935:7;6926:6;6915:9;6911:22;6880:63;:::i;:::-;6870:73;;6666:287;6451:509;;;;:::o;6966:329::-;7025:6;7074:2;7062:9;7053:7;7049:23;7045:32;7042:119;;;7080:79;;:::i;:::-;7042:119;7200:1;7225:53;7270:7;7261:6;7250:9;7246:22;7225:53;:::i;:::-;7215:63;;7171:117;6966:329;;;;:::o;7301:327::-;7359:6;7408:2;7396:9;7387:7;7383:23;7379:32;7376:119;;;7414:79;;:::i;:::-;7376:119;7534:1;7559:52;7603:7;7594:6;7583:9;7579:22;7559:52;:::i;:::-;7549:62;;7505:116;7301:327;;;;:::o;7634:118::-;7721:24;7739:5;7721:24;:::i;:::-;7716:3;7709:37;7634:118;;:::o;7758:109::-;7839:21;7854:5;7839:21;:::i;:::-;7834:3;7827:34;7758:109;;:::o;7873:360::-;7959:3;7987:38;8019:5;7987:38;:::i;:::-;8041:70;8104:6;8099:3;8041:70;:::i;:::-;8034:77;;8120:52;8165:6;8160:3;8153:4;8146:5;8142:16;8120:52;:::i;:::-;8197:29;8219:6;8197:29;:::i;:::-;8192:3;8188:39;8181:46;;7963:270;7873:360;;;;:::o;8239:364::-;8327:3;8355:39;8388:5;8355:39;:::i;:::-;8410:71;8474:6;8469:3;8410:71;:::i;:::-;8403:78;;8490:52;8535:6;8530:3;8523:4;8516:5;8512:16;8490:52;:::i;:::-;8567:29;8589:6;8567:29;:::i;:::-;8562:3;8558:39;8551:46;;8331:272;8239:364;;;;:::o;8609:377::-;8715:3;8743:39;8776:5;8743:39;:::i;:::-;8798:89;8880:6;8875:3;8798:89;:::i;:::-;8791:96;;8896:52;8941:6;8936:3;8929:4;8922:5;8918:16;8896:52;:::i;:::-;8973:6;8968:3;8964:16;8957:23;;8719:267;8609:377;;;;:::o;9016:845::-;9119:3;9156:5;9150:12;9185:36;9211:9;9185:36;:::i;:::-;9237:89;9319:6;9314:3;9237:89;:::i;:::-;9230:96;;9357:1;9346:9;9342:17;9373:1;9368:137;;;;9519:1;9514:341;;;;9335:520;;9368:137;9452:4;9448:9;9437;9433:25;9428:3;9421:38;9488:6;9483:3;9479:16;9472:23;;9368:137;;9514:341;9581:38;9613:5;9581:38;:::i;:::-;9641:1;9655:154;9669:6;9666:1;9663:13;9655:154;;;9743:7;9737:14;9733:1;9728:3;9724:11;9717:35;9793:1;9784:7;9780:15;9769:26;;9691:4;9688:1;9684:12;9679:17;;9655:154;;;9838:6;9833:3;9829:16;9822:23;;9521:334;;9335:520;;9123:738;;9016:845;;;;:::o;9867:366::-;10009:3;10030:67;10094:2;10089:3;10030:67;:::i;:::-;10023:74;;10106:93;10195:3;10106:93;:::i;:::-;10224:2;10219:3;10215:12;10208:19;;9867:366;;;:::o;10239:::-;10381:3;10402:67;10466:2;10461:3;10402:67;:::i;:::-;10395:74;;10478:93;10567:3;10478:93;:::i;:::-;10596:2;10591:3;10587:12;10580:19;;10239:366;;;:::o;10611:::-;10753:3;10774:67;10838:2;10833:3;10774:67;:::i;:::-;10767:74;;10850:93;10939:3;10850:93;:::i;:::-;10968:2;10963:3;10959:12;10952:19;;10611:366;;;:::o;10983:::-;11125:3;11146:67;11210:2;11205:3;11146:67;:::i;:::-;11139:74;;11222:93;11311:3;11222:93;:::i;:::-;11340:2;11335:3;11331:12;11324:19;;10983:366;;;:::o;11355:::-;11497:3;11518:67;11582:2;11577:3;11518:67;:::i;:::-;11511:74;;11594:93;11683:3;11594:93;:::i;:::-;11712:2;11707:3;11703:12;11696:19;;11355:366;;;:::o;11727:::-;11869:3;11890:67;11954:2;11949:3;11890:67;:::i;:::-;11883:74;;11966:93;12055:3;11966:93;:::i;:::-;12084:2;12079:3;12075:12;12068:19;;11727:366;;;:::o;12099:::-;12241:3;12262:67;12326:2;12321:3;12262:67;:::i;:::-;12255:74;;12338:93;12427:3;12338:93;:::i;:::-;12456:2;12451:3;12447:12;12440:19;;12099:366;;;:::o;12471:118::-;12558:24;12576:5;12558:24;:::i;:::-;12553:3;12546:37;12471:118;;:::o;12595:129::-;12681:36;12711:5;12681:36;:::i;:::-;12676:3;12669:49;12595:129;;:::o;12730:429::-;12907:3;12929:92;13017:3;13008:6;12929:92;:::i;:::-;12922:99;;13038:95;13129:3;13120:6;13038:95;:::i;:::-;13031:102;;13150:3;13143:10;;12730:429;;;;;:::o;13165:222::-;13258:4;13296:2;13285:9;13281:18;13273:26;;13309:71;13377:1;13366:9;13362:17;13353:6;13309:71;:::i;:::-;13165:222;;;;:::o;13393:640::-;13588:4;13626:3;13615:9;13611:19;13603:27;;13640:71;13708:1;13697:9;13693:17;13684:6;13640:71;:::i;:::-;13721:72;13789:2;13778:9;13774:18;13765:6;13721:72;:::i;:::-;13803;13871:2;13860:9;13856:18;13847:6;13803:72;:::i;:::-;13922:9;13916:4;13912:20;13907:2;13896:9;13892:18;13885:48;13950:76;14021:4;14012:6;13950:76;:::i;:::-;13942:84;;13393:640;;;;;;;:::o;14039:210::-;14126:4;14164:2;14153:9;14149:18;14141:26;;14177:65;14239:1;14228:9;14224:17;14215:6;14177:65;:::i;:::-;14039:210;;;;:::o;14255:313::-;14368:4;14406:2;14395:9;14391:18;14383:26;;14455:9;14449:4;14445:20;14441:1;14430:9;14426:17;14419:47;14483:78;14556:4;14547:6;14483:78;:::i;:::-;14475:86;;14255:313;;;;:::o;14574:419::-;14740:4;14778:2;14767:9;14763:18;14755:26;;14827:9;14821:4;14817:20;14813:1;14802:9;14798:17;14791:47;14855:131;14981:4;14855:131;:::i;:::-;14847:139;;14574:419;;;:::o;14999:::-;15165:4;15203:2;15192:9;15188:18;15180:26;;15252:9;15246:4;15242:20;15238:1;15227:9;15223:17;15216:47;15280:131;15406:4;15280:131;:::i;:::-;15272:139;;14999:419;;;:::o;15424:::-;15590:4;15628:2;15617:9;15613:18;15605:26;;15677:9;15671:4;15667:20;15663:1;15652:9;15648:17;15641:47;15705:131;15831:4;15705:131;:::i;:::-;15697:139;;15424:419;;;:::o;15849:::-;16015:4;16053:2;16042:9;16038:18;16030:26;;16102:9;16096:4;16092:20;16088:1;16077:9;16073:17;16066:47;16130:131;16256:4;16130:131;:::i;:::-;16122:139;;15849:419;;;:::o;16274:::-;16440:4;16478:2;16467:9;16463:18;16455:26;;16527:9;16521:4;16517:20;16513:1;16502:9;16498:17;16491:47;16555:131;16681:4;16555:131;:::i;:::-;16547:139;;16274:419;;;:::o;16699:::-;16865:4;16903:2;16892:9;16888:18;16880:26;;16952:9;16946:4;16942:20;16938:1;16927:9;16923:17;16916:47;16980:131;17106:4;16980:131;:::i;:::-;16972:139;;16699:419;;;:::o;17124:::-;17290:4;17328:2;17317:9;17313:18;17305:26;;17377:9;17371:4;17367:20;17363:1;17352:9;17348:17;17341:47;17405:131;17531:4;17405:131;:::i;:::-;17397:139;;17124:419;;;:::o;17549:222::-;17642:4;17680:2;17669:9;17665:18;17657:26;;17693:71;17761:1;17750:9;17746:17;17737:6;17693:71;:::i;:::-;17549:222;;;;:::o;17777:332::-;17898:4;17936:2;17925:9;17921:18;17913:26;;17949:71;18017:1;18006:9;18002:17;17993:6;17949:71;:::i;:::-;18030:72;18098:2;18087:9;18083:18;18074:6;18030:72;:::i;:::-;17777:332;;;;;:::o;18115:330::-;18235:4;18273:2;18262:9;18258:18;18250:26;;18286:70;18353:1;18342:9;18338:17;18329:6;18286:70;:::i;:::-;18366:72;18434:2;18423:9;18419:18;18410:6;18366:72;:::i;:::-;18115:330;;;;;:::o;18451:129::-;18485:6;18512:20;;:::i;:::-;18502:30;;18541:33;18569:4;18561:6;18541:33;:::i;:::-;18451:129;;;:::o;18586:75::-;18619:6;18652:2;18646:9;18636:19;;18586:75;:::o;18667:307::-;18728:4;18818:18;18810:6;18807:30;18804:56;;;18840:18;;:::i;:::-;18804:56;18878:29;18900:6;18878:29;:::i;:::-;18870:37;;18962:4;18956;18952:15;18944:23;;18667:307;;;:::o;18980:308::-;19042:4;19132:18;19124:6;19121:30;19118:56;;;19154:18;;:::i;:::-;19118:56;19192:29;19214:6;19192:29;:::i;:::-;19184:37;;19276:4;19270;19266:15;19258:23;;18980:308;;;:::o;19294:141::-;19343:4;19366:3;19358:11;;19389:3;19386:1;19379:14;19423:4;19420:1;19410:18;19402:26;;19294:141;;;:::o;19441:98::-;19492:6;19526:5;19520:12;19510:22;;19441:98;;;:::o;19545:99::-;19597:6;19631:5;19625:12;19615:22;;19545:99;;;:::o;19650:168::-;19733:11;19767:6;19762:3;19755:19;19807:4;19802:3;19798:14;19783:29;;19650:168;;;;:::o;19824:169::-;19908:11;19942:6;19937:3;19930:19;19982:4;19977:3;19973:14;19958:29;;19824:169;;;;:::o;19999:148::-;20101:11;20138:3;20123:18;;19999:148;;;;:::o;20153:305::-;20193:3;20212:20;20230:1;20212:20;:::i;:::-;20207:25;;20246:20;20264:1;20246:20;:::i;:::-;20241:25;;20400:1;20332:66;20328:74;20325:1;20322:81;20319:107;;;20406:18;;:::i;:::-;20319:107;20450:1;20447;20443:9;20436:16;;20153:305;;;;:::o;20464:185::-;20504:1;20521:20;20539:1;20521:20;:::i;:::-;20516:25;;20555:20;20573:1;20555:20;:::i;:::-;20550:25;;20594:1;20584:35;;20599:18;;:::i;:::-;20584:35;20641:1;20638;20634:9;20629:14;;20464:185;;;;:::o;20655:191::-;20695:4;20715:20;20733:1;20715:20;:::i;:::-;20710:25;;20749:20;20767:1;20749:20;:::i;:::-;20744:25;;20788:1;20785;20782:8;20779:34;;;20793:18;;:::i;:::-;20779:34;20838:1;20835;20831:9;20823:17;;20655:191;;;;:::o;20852:96::-;20889:7;20918:24;20936:5;20918:24;:::i;:::-;20907:35;;20852:96;;;:::o;20954:90::-;20988:7;21031:5;21024:13;21017:21;21006:32;;20954:90;;;:::o;21050:149::-;21086:7;21126:66;21119:5;21115:78;21104:89;;21050:149;;;:::o;21205:126::-;21242:7;21282:42;21275:5;21271:54;21260:65;;21205:126;;;:::o;21337:77::-;21374:7;21403:5;21392:16;;21337:77;;;:::o;21420:93::-;21456:7;21496:10;21489:5;21485:22;21474:33;;21420:93;;;:::o;21519:111::-;21568:9;21601:23;21618:5;21601:23;:::i;:::-;21588:36;;21519:111;;;:::o;21636:154::-;21720:6;21715:3;21710;21697:30;21782:1;21773:6;21768:3;21764:16;21757:27;21636:154;;;:::o;21796:307::-;21864:1;21874:113;21888:6;21885:1;21882:13;21874:113;;;21973:1;21968:3;21964:11;21958:18;21954:1;21949:3;21945:11;21938:39;21910:2;21907:1;21903:10;21898:15;;21874:113;;;22005:6;22002:1;21999:13;21996:101;;;22085:1;22076:6;22071:3;22067:16;22060:27;21996:101;21845:258;21796:307;;;:::o;22109:320::-;22153:6;22190:1;22184:4;22180:12;22170:22;;22237:1;22231:4;22227:12;22258:18;22248:81;;22314:4;22306:6;22302:17;22292:27;;22248:81;22376:2;22368:6;22365:14;22345:18;22342:38;22339:84;;;22395:18;;:::i;:::-;22339:84;22160:269;22109:320;;;:::o;22435:281::-;22518:27;22540:4;22518:27;:::i;:::-;22510:6;22506:40;22648:6;22636:10;22633:22;22612:18;22600:10;22597:34;22594:62;22591:88;;;22659:18;;:::i;:::-;22591:88;22699:10;22695:2;22688:22;22478:238;22435:281;;:::o;22722:233::-;22761:3;22784:24;22802:5;22784:24;:::i;:::-;22775:33;;22830:66;22823:5;22820:77;22817:103;;;22900:18;;:::i;:::-;22817:103;22947:1;22940:5;22936:13;22929:20;;22722:233;;;:::o;22961:176::-;22993:1;23010:20;23028:1;23010:20;:::i;:::-;23005:25;;23044:20;23062:1;23044:20;:::i;:::-;23039:25;;23083:1;23073:35;;23088:18;;:::i;:::-;23073:35;23129:1;23126;23122:9;23117:14;;22961:176;;;;:::o;23143:180::-;23191:77;23188:1;23181:88;23288:4;23285:1;23278:15;23312:4;23309:1;23302:15;23329:180;23377:77;23374:1;23367:88;23474:4;23471:1;23464:15;23498:4;23495:1;23488:15;23515:180;23563:77;23560:1;23553:88;23660:4;23657:1;23650:15;23684:4;23681:1;23674:15;23701:180;23749:77;23746:1;23739:88;23846:4;23843:1;23836:15;23870:4;23867:1;23860:15;23887:180;23935:77;23932:1;23925:88;24032:4;24029:1;24022:15;24056:4;24053:1;24046:15;24073:117;24182:1;24179;24172:12;24196:117;24305:1;24302;24295:12;24319:117;24428:1;24425;24418:12;24442:117;24551:1;24548;24541:12;24565:102;24606:6;24657:2;24653:7;24648:2;24641:5;24637:14;24633:28;24623:38;;24565:102;;;:::o;24673:225::-;24813:34;24809:1;24801:6;24797:14;24790:58;24882:8;24877:2;24869:6;24865:15;24858:33;24673:225;:::o;24904:224::-;25044:34;25040:1;25032:6;25028:14;25021:58;25113:7;25108:2;25100:6;25096:15;25089:32;24904:224;:::o;25134:220::-;25274:34;25270:1;25262:6;25258:14;25251:58;25343:3;25338:2;25330:6;25326:15;25319:28;25134:220;:::o;25360:181::-;25500:33;25496:1;25488:6;25484:14;25477:57;25360:181;:::o;25547:182::-;25687:34;25683:1;25675:6;25671:14;25664:58;25547:182;:::o;25735:228::-;25875:34;25871:1;25863:6;25859:14;25852:58;25944:11;25939:2;25931:6;25927:15;25920:36;25735:228;:::o;25969:220::-;26109:34;26105:1;26097:6;26093:14;26086:58;26178:3;26173:2;26165:6;26161:15;26154:28;25969:220;:::o;26195:122::-;26268:24;26286:5;26268:24;:::i;:::-;26261:5;26258:35;26248:63;;26307:1;26304;26297:12;26248:63;26195:122;:::o;26323:116::-;26393:21;26408:5;26393:21;:::i;:::-;26386:5;26383:32;26373:60;;26429:1;26426;26419:12;26373:60;26323:116;:::o;26445:120::-;26517:23;26534:5;26517:23;:::i;:::-;26510:5;26507:34;26497:62;;26555:1;26552;26545:12;26497:62;26445:120;:::o;26571:122::-;26644:24;26662:5;26644:24;:::i;:::-;26637:5;26634:35;26624:63;;26683:1;26680;26673:12;26624:63;26571:122;:::o;26699:120::-;26771:23;26788:5;26771:23;:::i;:::-;26764:5;26761:34;26751:62;;26809:1;26806;26799:12;26751:62;26699:120;:::o
Swarm Source
ipfs://cb83dbc7a3d7aaba8a6140a85b27c207f7a3345bdfe6edc7a9ecd75379bc1c2f
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 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.