Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 10 from a total of 10 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Contract URI | 16707412 | 683 days ago | IN | 0 ETH | 0.00078312 | ||||
Add To Whitelist | 16707073 | 683 days ago | IN | 0 ETH | 0.00068589 | ||||
Add To Whitelist | 16707071 | 683 days ago | IN | 0 ETH | 0.00102902 | ||||
Flip Sale State | 16705366 | 683 days ago | IN | 0 ETH | 0.00057005 | ||||
Set URI | 16705347 | 683 days ago | IN | 0 ETH | 0.00094561 | ||||
Set Contract URI | 16705347 | 683 days ago | IN | 0 ETH | 0.00094452 | ||||
Set Contract URI | 16705289 | 683 days ago | IN | 0 ETH | 0.00226306 | ||||
Set URI | 16705289 | 683 days ago | IN | 0 ETH | 0.00069134 | ||||
Mint Reserved To... | 16705264 | 683 days ago | IN | 0 ETH | 0.00150927 | ||||
Add To Whitelist | 16705223 | 683 days ago | IN | 0 ETH | 0.04871113 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
DigiPass
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-25 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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 (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC1155/ERC1155.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: address zero is not a valid owner"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner or approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner or approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, to, ids, amounts, data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Emits a {TransferSingle} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `ids` and `amounts` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non-ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non-ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } } // File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol) pragma solidity ^0.8.0; /** * @dev Extension of ERC1155 that adds tracking of total supply per id. * * Useful for scenarios where Fungible and Non-fungible tokens have to be * clearly identified. Note: While a totalSupply of 1 might mean the * corresponding is an NFT, there is no guarantees that no other token with the * same id are not going to be minted. */ abstract contract ERC1155Supply is ERC1155 { mapping(uint256 => uint256) private _totalSupply; /** * @dev Total amount of tokens in with a given id. */ function totalSupply(uint256 id) public view virtual returns (uint256) { return _totalSupply[id]; } /** * @dev Indicates whether any token exist with a given id, or not. */ function exists(uint256 id) public view virtual returns (bool) { return ERC1155Supply.totalSupply(id) > 0; } /** * @dev See {ERC1155-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); if (from == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] += amounts[i]; } } if (to == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 supply = _totalSupply[id]; require(supply >= amount, "ERC1155: burn amount exceeds totalSupply"); unchecked { _totalSupply[id] = supply - amount; } } } } } // File: contracts/digiI.sol pragma solidity 0.8.11; contract DigiPass is ERC1155Supply, Ownable { bool public saleIsActive = false; uint public activeBadgeId = 1; uint public maxPerTransaction = 1; uint public maxPerWallet = 1; uint public maxSupply = 100; uint256 public constant PRICE = .5 ether; string public name = "DigiWorld Pass"; mapping(address => bool) public whitelist; string public contractURIstr = ""; constructor() ERC1155("https://ipfs.io/ipfs/QmePkvKsamfZvqt5viGAEYNFqgzmf1SndoGQHT6g3Lcv5D/digi.json") {} function contractURI() public view returns (string memory) { return contractURIstr; } function setContractURI(string memory newuri) external onlyOwner { contractURIstr = newuri; } function setURI(string memory newuri) external onlyOwner { _setURI(newuri); } function setName(string memory _name) public onlyOwner { name = _name; } function getName() public view returns (string memory) { return name; } function mintToken(uint256 amount) external payable { require(whitelist[msg.sender], "NOT_IN_WHITELIST"); require(msg.sender == tx.origin, "No transaction from smart contracts!"); require(saleIsActive, "Sale must be active to mint"); require(amount > 0 && amount <= maxPerTransaction, "Max per transaction reached, sale not allowed"); require(balanceOf(msg.sender, activeBadgeId) + amount <= maxPerWallet, "Limit per wallet reached with this amount, sale not allowed"); require(totalSupply(activeBadgeId) + amount <= maxSupply , "Purchase would exceed max supply"); require(msg.value >= PRICE, "Not enough ETH for transaction"); _mint(msg.sender, activeBadgeId, amount, ""); } function mintReservedTokens(address to, uint256 amount) external onlyOwner { _mint(to, activeBadgeId, amount, ""); } function withdraw( ) external onlyOwner { (bool success, ) = owner().call{ value: address(this).balance }(""); require(success, "error: withdrawal failed" ); } function flipSaleState() external onlyOwner { saleIsActive = !saleIsActive; } function changeSaleDetails(uint _activeBadgeId, uint _maxPerTransaction, uint _maxPerWallet, uint _maxSupply) external onlyOwner { activeBadgeId = _activeBadgeId; maxPerTransaction = _maxPerTransaction; maxPerWallet = _maxPerWallet; maxSupply = _maxSupply; saleIsActive = true; } /** * @notice Add to whitelist */ function addToWhitelist(address[] calldata toAddAddresses) external onlyOwner { for (uint i = 0; i < toAddAddresses.length; i++) { whitelist[toAddAddresses[i]] = true; } } /** * @notice Remove from whitelist */ function removeFromWhitelist(address[] calldata toRemoveAddresses) external onlyOwner { for (uint i = 0; i < toRemoveAddresses.length; i++) { delete whitelist[toRemoveAddresses[i]]; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activeBadgeId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"toAddAddresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_activeBadgeId","type":"uint256"},{"internalType":"uint256","name":"_maxPerTransaction","type":"uint256"},{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"changeSaleDetails","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURIstr","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintReservedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"toRemoveAddresses","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6004805460ff60a01b19169055600160058190556006819055600755606460085560c0604052600e60808190526d44696769576f726c64205061737360901b60a090815262000052916009919062000124565b506040805160208101918290526000908190526200007391600b9162000124565b503480156200008157600080fd5b506040518060800160405280604d8152602001620026b7604d9139620000a781620000b9565b50620000b333620000d2565b62000207565b8051620000ce90600290602084019062000124565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013290620001ca565b90600052602060002090601f016020900481019282620001565760008555620001a1565b82601f106200017157805160ff1916838001178555620001a1565b82800160010185558215620001a1579182015b82811115620001a157825182559160200191906001019062000184565b50620001af929150620001b3565b5090565b5b80821115620001af5760008155600101620001b4565b600181811c90821680620001df57607f821691505b602082108114156200020157634e487b7160e01b600052602260045260246000fd5b50919050565b6124a080620002176000396000f3fe6080604052600436106101f85760003560e01c8063651bf4b01161010d578063bd85b039116100a0578063e8a3d4851161006f578063e8a3d48514610595578063e985e9c5146105aa578063eb8d2444146105f3578063f242432a14610614578063f2fde38b1461063457600080fd5b8063bd85b0391461051f578063c47f00271461054c578063c634d0321461056c578063d5abeb011461057f57600080fd5b80638da5cb5b116100dc5780638da5cb5b14610487578063938e3d7b146104af5780639b19251a146104cf578063a22cb465146104ff57600080fd5b8063651bf4b014610416578063715018a6146104365780637f6497831461044b5780638d859f3e1461046b57600080fd5b80632eb2c2d6116101905780634b980d671161015f5780634b980d67146103645780634e1273f41461037a5780634f558e79146103a7578063548db174146103d657806357535c43146103f657600080fd5b80632eb2c2d61461030457806334918dfd146103245780633ccfd60b14610339578063453c23101461034e57600080fd5b806306fdde03116101cc57806306fdde03146102a45780630e89341c146102b957806311d26c18146102d957806317d7de7c146102ef57600080fd5b8062fdd58e146101fd57806301ffc9a71461023057806302fe5305146102605780630612d36414610282575b600080fd5b34801561020957600080fd5b5061021d610218366004611b3a565b610654565b6040519081526020015b60405180910390f35b34801561023c57600080fd5b5061025061024b366004611b7a565b6106ea565b6040519015158152602001610227565b34801561026c57600080fd5b5061028061027b366004611c3f565b61073c565b005b34801561028e57600080fd5b50610297610750565b6040516102279190611cdd565b3480156102b057600080fd5b506102976107de565b3480156102c557600080fd5b506102976102d4366004611cf0565b6107eb565b3480156102e557600080fd5b5061021d60055481565b3480156102fb57600080fd5b5061029761087f565b34801561031057600080fd5b5061028061031f366004611dbe565b610911565b34801561033057600080fd5b5061028061095d565b34801561034557600080fd5b50610280610986565b34801561035a57600080fd5b5061021d60075481565b34801561037057600080fd5b5061021d60065481565b34801561038657600080fd5b5061039a610395366004611e68565b610a42565b6040516102279190611f6e565b3480156103b357600080fd5b506102506103c2366004611cf0565b600090815260036020526040902054151590565b3480156103e257600080fd5b506102806103f1366004611f81565b610b6c565b34801561040257600080fd5b50610280610411366004611b3a565b610be2565b34801561042257600080fd5b50610280610431366004611ff6565b610c0b565b34801561044257600080fd5b50610280610c3a565b34801561045757600080fd5b50610280610466366004611f81565b610c4e565b34801561047757600080fd5b5061021d6706f05b59d3b2000081565b34801561049357600080fd5b506004546040516001600160a01b039091168152602001610227565b3480156104bb57600080fd5b506102806104ca366004611c3f565b610cc8565b3480156104db57600080fd5b506102506104ea366004612028565b600a6020526000908152604090205460ff1681565b34801561050b57600080fd5b5061028061051a366004612043565b610ce3565b34801561052b57600080fd5b5061021d61053a366004611cf0565b60009081526003602052604090205490565b34801561055857600080fd5b50610280610567366004611c3f565b610cee565b61028061057a366004611cf0565b610d09565b34801561058b57600080fd5b5061021d60085481565b3480156105a157600080fd5b50610297610ffa565b3480156105b657600080fd5b506102506105c536600461207f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b3480156105ff57600080fd5b5060045461025090600160a01b900460ff1681565b34801561062057600080fd5b5061028061062f3660046120b2565b611009565b34801561064057600080fd5b5061028061064f366004612028565b61104e565b60006001600160a01b0383166106c45760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061071b57506001600160e01b031982166303a24d0760e21b145b8061073657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6107446110c4565b61074d8161111e565b50565b600b805461075d90612117565b80601f016020809104026020016040519081016040528092919081815260200182805461078990612117565b80156107d65780601f106107ab576101008083540402835291602001916107d6565b820191906000526020600020905b8154815290600101906020018083116107b957829003601f168201915b505050505081565b6009805461075d90612117565b6060600280546107fa90612117565b80601f016020809104026020016040519081016040528092919081815260200182805461082690612117565b80156108735780601f1061084857610100808354040283529160200191610873565b820191906000526020600020905b81548152906001019060200180831161085657829003601f168201915b50505050509050919050565b60606009805461088e90612117565b80601f01602080910402602001604051908101604052809291908181526020018280546108ba90612117565b80156109075780601f106108dc57610100808354040283529160200191610907565b820191906000526020600020905b8154815290600101906020018083116108ea57829003601f168201915b5050505050905090565b6001600160a01b03851633148061092d575061092d85336105c5565b6109495760405162461bcd60e51b81526004016106bb90612152565b6109568585858585611131565b5050505050565b6109656110c4565b6004805460ff60a01b198116600160a01b9182900460ff1615909102179055565b61098e6110c4565b60006109a26004546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146109ec576040519150601f19603f3d011682016040523d82523d6000602084013e6109f1565b606091505b505090508061074d5760405162461bcd60e51b815260206004820152601860248201527f6572726f723a207769746864726177616c206661696c6564000000000000000060448201526064016106bb565b60608151835114610aa75760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016106bb565b6000835167ffffffffffffffff811115610ac357610ac3611b9e565b604051908082528060200260200182016040528015610aec578160200160208202803683370190505b50905060005b8451811015610b6457610b37858281518110610b1057610b106121a0565b6020026020010151858381518110610b2a57610b2a6121a0565b6020026020010151610654565b828281518110610b4957610b496121a0565b6020908102919091010152610b5d816121cc565b9050610af2565b509392505050565b610b746110c4565b60005b81811015610bdd57600a6000848484818110610b9557610b956121a0565b9050602002016020810190610baa9190612028565b6001600160a01b031681526020810191909152604001600020805460ff1916905580610bd5816121cc565b915050610b77565b505050565b610bea6110c4565b610c0782600554836040518060200160405280600081525061131c565b5050565b610c136110c4565b6005939093556006919091556007556008556004805460ff60a01b1916600160a01b179055565b610c426110c4565b610c4c600061143f565b565b610c566110c4565b60005b81811015610bdd576001600a6000858585818110610c7957610c796121a0565b9050602002016020810190610c8e9190612028565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610cc0816121cc565b915050610c59565b610cd06110c4565b8051610c0790600b906020840190611a85565b610c07338383611491565b610cf66110c4565b8051610c07906009906020840190611a85565b336000908152600a602052604090205460ff16610d5b5760405162461bcd60e51b815260206004820152601060248201526f1393d517d25397d5d2125511531254d560821b60448201526064016106bb565b333214610db65760405162461bcd60e51b8152602060048201526024808201527f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e7472616044820152636374732160e01b60648201526084016106bb565b600454600160a01b900460ff16610e0f5760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e74000000000060448201526064016106bb565b600081118015610e2157506006548111155b610e835760405162461bcd60e51b815260206004820152602d60248201527f4d617820706572207472616e73616374696f6e20726561636865642c2073616c60448201526c19481b9bdd08185b1b1bddd959609a1b60648201526084016106bb565b60075481610e9333600554610654565b610e9d91906121e7565b1115610f115760405162461bcd60e51b815260206004820152603b60248201527f4c696d6974207065722077616c6c65742072656163686564207769746820746860448201527f697320616d6f756e742c2073616c65206e6f7420616c6c6f776564000000000060648201526084016106bb565b60085481610f2d60055460009081526003602052604090205490565b610f3791906121e7565b1115610f855760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016106bb565b6706f05b59d3b20000341015610fdd5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682045544820666f72207472616e73616374696f6e000060448201526064016106bb565b61074d33600554836040518060200160405280600081525061131c565b6060600b805461088e90612117565b6001600160a01b038516331480611025575061102585336105c5565b6110415760405162461bcd60e51b81526004016106bb90612152565b6109568585858585611572565b6110566110c4565b6001600160a01b0381166110bb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106bb565b61074d8161143f565b6004546001600160a01b03163314610c4c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106bb565b8051610c07906002906020840190611a85565b81518351146111935760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016106bb565b6001600160a01b0384166111b95760405162461bcd60e51b81526004016106bb906121ff565b336111c88187878787876116aa565b60005b84518110156112ae5760008582815181106111e8576111e86121a0565b602002602001015190506000858381518110611206576112066121a0565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156112565760405162461bcd60e51b81526004016106bb90612244565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906112939084906121e7565b92505081905550505050806112a7906121cc565b90506111cb565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516112fe92919061228e565b60405180910390a4611314818787878787611823565b505050505050565b6001600160a01b03841661137c5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106bb565b3360006113888561197f565b905060006113958561197f565b90506113a6836000898585896116aa565b6000868152602081815260408083206001600160a01b038b168452909152812080548792906113d69084906121e7565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611436836000898989896119ca565b50505050505050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156115055760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016106bb565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166115985760405162461bcd60e51b81526004016106bb906121ff565b3360006115a48561197f565b905060006115b18561197f565b90506115c18389898585896116aa565b6000868152602081815260408083206001600160a01b038c168452909152902054858110156116025760405162461bcd60e51b81526004016106bb90612244565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a1682528120805488929061163f9084906121e7565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461169f848a8a8a8a8a6119ca565b505050505050505050565b6001600160a01b0385166117315760005b835181101561172f578281815181106116d6576116d66121a0565b6020026020010151600360008684815181106116f4576116f46121a0565b60200260200101518152602001908152602001600020600082825461171991906121e7565b909155506117289050816121cc565b90506116bb565b505b6001600160a01b0384166113145760005b835181101561143657600084828151811061175f5761175f6121a0565b60200260200101519050600084838151811061177d5761177d6121a0565b60200260200101519050600060036000848152602001908152602001600020549050818110156118005760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b60648201526084016106bb565b6000928352600360205260409092209103905561181c816121cc565b9050611742565b6001600160a01b0384163b156113145760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061186790899089908890889088906004016122bc565b6020604051808303816000875af19250505080156118a2575060408051601f3d908101601f1916820190925261189f9181019061231a565b60015b61194f576118ae612337565b806308c379a014156118e857506118c3612353565b806118ce57506118ea565b8060405162461bcd60e51b81526004016106bb9190611cdd565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016106bb565b6001600160e01b0319811663bc197c8160e01b146114365760405162461bcd60e51b81526004016106bb906123dd565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106119b9576119b96121a0565b602090810291909101015292915050565b6001600160a01b0384163b156113145760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611a0e9089908990889088908890600401612425565b6020604051808303816000875af1925050508015611a49575060408051601f3d908101601f19168201909252611a469181019061231a565b60015b611a55576118ae612337565b6001600160e01b0319811663f23a6e6160e01b146114365760405162461bcd60e51b81526004016106bb906123dd565b828054611a9190612117565b90600052602060002090601f016020900481019282611ab35760008555611af9565b82601f10611acc57805160ff1916838001178555611af9565b82800160010185558215611af9579182015b82811115611af9578251825591602001919060010190611ade565b50611b05929150611b09565b5090565b5b80821115611b055760008155600101611b0a565b80356001600160a01b0381168114611b3557600080fd5b919050565b60008060408385031215611b4d57600080fd5b611b5683611b1e565b946020939093013593505050565b6001600160e01b03198116811461074d57600080fd5b600060208284031215611b8c57600080fd5b8135611b9781611b64565b9392505050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715611bda57611bda611b9e565b6040525050565b600067ffffffffffffffff831115611bfb57611bfb611b9e565b604051611c12601f8501601f191660200182611bb4565b809150838152848484011115611c2757600080fd5b83836020830137600060208583010152509392505050565b600060208284031215611c5157600080fd5b813567ffffffffffffffff811115611c6857600080fd5b8201601f81018413611c7957600080fd5b611c8884823560208401611be1565b949350505050565b6000815180845260005b81811015611cb657602081850181015186830182015201611c9a565b81811115611cc8576000602083870101525b50601f01601f19169290920160200192915050565b602081526000611b976020830184611c90565b600060208284031215611d0257600080fd5b5035919050565b600067ffffffffffffffff821115611d2357611d23611b9e565b5060051b60200190565b600082601f830112611d3e57600080fd5b81356020611d4b82611d09565b604051611d588282611bb4565b83815260059390931b8501820192828101915086841115611d7857600080fd5b8286015b84811015611d935780358352918301918301611d7c565b509695505050505050565b600082601f830112611daf57600080fd5b611b9783833560208501611be1565b600080600080600060a08688031215611dd657600080fd5b611ddf86611b1e565b9450611ded60208701611b1e565b9350604086013567ffffffffffffffff80821115611e0a57600080fd5b611e1689838a01611d2d565b94506060880135915080821115611e2c57600080fd5b611e3889838a01611d2d565b93506080880135915080821115611e4e57600080fd5b50611e5b88828901611d9e565b9150509295509295909350565b60008060408385031215611e7b57600080fd5b823567ffffffffffffffff80821115611e9357600080fd5b818501915085601f830112611ea757600080fd5b81356020611eb482611d09565b604051611ec18282611bb4565b83815260059390931b8501820192828101915089841115611ee157600080fd5b948201945b83861015611f0657611ef786611b1e565b82529482019490820190611ee6565b96505086013592505080821115611f1c57600080fd5b50611f2985828601611d2d565b9150509250929050565b600081518084526020808501945080840160005b83811015611f6357815187529582019590820190600101611f47565b509495945050505050565b602081526000611b976020830184611f33565b60008060208385031215611f9457600080fd5b823567ffffffffffffffff80821115611fac57600080fd5b818501915085601f830112611fc057600080fd5b813581811115611fcf57600080fd5b8660208260051b8501011115611fe457600080fd5b60209290920196919550909350505050565b6000806000806080858703121561200c57600080fd5b5050823594602084013594506040840135936060013592509050565b60006020828403121561203a57600080fd5b611b9782611b1e565b6000806040838503121561205657600080fd5b61205f83611b1e565b91506020830135801515811461207457600080fd5b809150509250929050565b6000806040838503121561209257600080fd5b61209b83611b1e565b91506120a960208401611b1e565b90509250929050565b600080600080600060a086880312156120ca57600080fd5b6120d386611b1e565b94506120e160208701611b1e565b93506040860135925060608601359150608086013567ffffffffffffffff81111561210b57600080fd5b611e5b88828901611d9e565b600181811c9082168061212b57607f821691505b6020821081141561214c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156121e0576121e06121b6565b5060010190565b600082198211156121fa576121fa6121b6565b500190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6040815260006122a16040830185611f33565b82810360208401526122b38185611f33565b95945050505050565b6001600160a01b0386811682528516602082015260a0604082018190526000906122e890830186611f33565b82810360608401526122fa8186611f33565b9050828103608084015261230e8185611c90565b98975050505050505050565b60006020828403121561232c57600080fd5b8151611b9781611b64565b600060033d11156123505760046000803e5060005160e01c5b90565b600060443d10156123615790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561239157505050505090565b82850191508151818111156123a95750505050505090565b843d87010160208285010111156123c35750505050505090565b6123d260208286010187611bb4565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061245f90830184611c90565b97965050505050505056fea26469706673582212204ce19ec0e09750a320a1fa7b8d626e442d7cd286eb64bff1c30c5fb874282e8364736f6c634300080b003368747470733a2f2f697066732e696f2f697066732f516d65506b764b73616d665a767174357669474145594e4671677a6d6631536e646f475148543667334c637635442f646967692e6a736f6e
Deployed Bytecode
0x6080604052600436106101f85760003560e01c8063651bf4b01161010d578063bd85b039116100a0578063e8a3d4851161006f578063e8a3d48514610595578063e985e9c5146105aa578063eb8d2444146105f3578063f242432a14610614578063f2fde38b1461063457600080fd5b8063bd85b0391461051f578063c47f00271461054c578063c634d0321461056c578063d5abeb011461057f57600080fd5b80638da5cb5b116100dc5780638da5cb5b14610487578063938e3d7b146104af5780639b19251a146104cf578063a22cb465146104ff57600080fd5b8063651bf4b014610416578063715018a6146104365780637f6497831461044b5780638d859f3e1461046b57600080fd5b80632eb2c2d6116101905780634b980d671161015f5780634b980d67146103645780634e1273f41461037a5780634f558e79146103a7578063548db174146103d657806357535c43146103f657600080fd5b80632eb2c2d61461030457806334918dfd146103245780633ccfd60b14610339578063453c23101461034e57600080fd5b806306fdde03116101cc57806306fdde03146102a45780630e89341c146102b957806311d26c18146102d957806317d7de7c146102ef57600080fd5b8062fdd58e146101fd57806301ffc9a71461023057806302fe5305146102605780630612d36414610282575b600080fd5b34801561020957600080fd5b5061021d610218366004611b3a565b610654565b6040519081526020015b60405180910390f35b34801561023c57600080fd5b5061025061024b366004611b7a565b6106ea565b6040519015158152602001610227565b34801561026c57600080fd5b5061028061027b366004611c3f565b61073c565b005b34801561028e57600080fd5b50610297610750565b6040516102279190611cdd565b3480156102b057600080fd5b506102976107de565b3480156102c557600080fd5b506102976102d4366004611cf0565b6107eb565b3480156102e557600080fd5b5061021d60055481565b3480156102fb57600080fd5b5061029761087f565b34801561031057600080fd5b5061028061031f366004611dbe565b610911565b34801561033057600080fd5b5061028061095d565b34801561034557600080fd5b50610280610986565b34801561035a57600080fd5b5061021d60075481565b34801561037057600080fd5b5061021d60065481565b34801561038657600080fd5b5061039a610395366004611e68565b610a42565b6040516102279190611f6e565b3480156103b357600080fd5b506102506103c2366004611cf0565b600090815260036020526040902054151590565b3480156103e257600080fd5b506102806103f1366004611f81565b610b6c565b34801561040257600080fd5b50610280610411366004611b3a565b610be2565b34801561042257600080fd5b50610280610431366004611ff6565b610c0b565b34801561044257600080fd5b50610280610c3a565b34801561045757600080fd5b50610280610466366004611f81565b610c4e565b34801561047757600080fd5b5061021d6706f05b59d3b2000081565b34801561049357600080fd5b506004546040516001600160a01b039091168152602001610227565b3480156104bb57600080fd5b506102806104ca366004611c3f565b610cc8565b3480156104db57600080fd5b506102506104ea366004612028565b600a6020526000908152604090205460ff1681565b34801561050b57600080fd5b5061028061051a366004612043565b610ce3565b34801561052b57600080fd5b5061021d61053a366004611cf0565b60009081526003602052604090205490565b34801561055857600080fd5b50610280610567366004611c3f565b610cee565b61028061057a366004611cf0565b610d09565b34801561058b57600080fd5b5061021d60085481565b3480156105a157600080fd5b50610297610ffa565b3480156105b657600080fd5b506102506105c536600461207f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b3480156105ff57600080fd5b5060045461025090600160a01b900460ff1681565b34801561062057600080fd5b5061028061062f3660046120b2565b611009565b34801561064057600080fd5b5061028061064f366004612028565b61104e565b60006001600160a01b0383166106c45760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061071b57506001600160e01b031982166303a24d0760e21b145b8061073657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6107446110c4565b61074d8161111e565b50565b600b805461075d90612117565b80601f016020809104026020016040519081016040528092919081815260200182805461078990612117565b80156107d65780601f106107ab576101008083540402835291602001916107d6565b820191906000526020600020905b8154815290600101906020018083116107b957829003601f168201915b505050505081565b6009805461075d90612117565b6060600280546107fa90612117565b80601f016020809104026020016040519081016040528092919081815260200182805461082690612117565b80156108735780601f1061084857610100808354040283529160200191610873565b820191906000526020600020905b81548152906001019060200180831161085657829003601f168201915b50505050509050919050565b60606009805461088e90612117565b80601f01602080910402602001604051908101604052809291908181526020018280546108ba90612117565b80156109075780601f106108dc57610100808354040283529160200191610907565b820191906000526020600020905b8154815290600101906020018083116108ea57829003601f168201915b5050505050905090565b6001600160a01b03851633148061092d575061092d85336105c5565b6109495760405162461bcd60e51b81526004016106bb90612152565b6109568585858585611131565b5050505050565b6109656110c4565b6004805460ff60a01b198116600160a01b9182900460ff1615909102179055565b61098e6110c4565b60006109a26004546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146109ec576040519150601f19603f3d011682016040523d82523d6000602084013e6109f1565b606091505b505090508061074d5760405162461bcd60e51b815260206004820152601860248201527f6572726f723a207769746864726177616c206661696c6564000000000000000060448201526064016106bb565b60608151835114610aa75760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016106bb565b6000835167ffffffffffffffff811115610ac357610ac3611b9e565b604051908082528060200260200182016040528015610aec578160200160208202803683370190505b50905060005b8451811015610b6457610b37858281518110610b1057610b106121a0565b6020026020010151858381518110610b2a57610b2a6121a0565b6020026020010151610654565b828281518110610b4957610b496121a0565b6020908102919091010152610b5d816121cc565b9050610af2565b509392505050565b610b746110c4565b60005b81811015610bdd57600a6000848484818110610b9557610b956121a0565b9050602002016020810190610baa9190612028565b6001600160a01b031681526020810191909152604001600020805460ff1916905580610bd5816121cc565b915050610b77565b505050565b610bea6110c4565b610c0782600554836040518060200160405280600081525061131c565b5050565b610c136110c4565b6005939093556006919091556007556008556004805460ff60a01b1916600160a01b179055565b610c426110c4565b610c4c600061143f565b565b610c566110c4565b60005b81811015610bdd576001600a6000858585818110610c7957610c796121a0565b9050602002016020810190610c8e9190612028565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610cc0816121cc565b915050610c59565b610cd06110c4565b8051610c0790600b906020840190611a85565b610c07338383611491565b610cf66110c4565b8051610c07906009906020840190611a85565b336000908152600a602052604090205460ff16610d5b5760405162461bcd60e51b815260206004820152601060248201526f1393d517d25397d5d2125511531254d560821b60448201526064016106bb565b333214610db65760405162461bcd60e51b8152602060048201526024808201527f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e7472616044820152636374732160e01b60648201526084016106bb565b600454600160a01b900460ff16610e0f5760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e74000000000060448201526064016106bb565b600081118015610e2157506006548111155b610e835760405162461bcd60e51b815260206004820152602d60248201527f4d617820706572207472616e73616374696f6e20726561636865642c2073616c60448201526c19481b9bdd08185b1b1bddd959609a1b60648201526084016106bb565b60075481610e9333600554610654565b610e9d91906121e7565b1115610f115760405162461bcd60e51b815260206004820152603b60248201527f4c696d6974207065722077616c6c65742072656163686564207769746820746860448201527f697320616d6f756e742c2073616c65206e6f7420616c6c6f776564000000000060648201526084016106bb565b60085481610f2d60055460009081526003602052604090205490565b610f3791906121e7565b1115610f855760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016106bb565b6706f05b59d3b20000341015610fdd5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682045544820666f72207472616e73616374696f6e000060448201526064016106bb565b61074d33600554836040518060200160405280600081525061131c565b6060600b805461088e90612117565b6001600160a01b038516331480611025575061102585336105c5565b6110415760405162461bcd60e51b81526004016106bb90612152565b6109568585858585611572565b6110566110c4565b6001600160a01b0381166110bb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106bb565b61074d8161143f565b6004546001600160a01b03163314610c4c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106bb565b8051610c07906002906020840190611a85565b81518351146111935760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016106bb565b6001600160a01b0384166111b95760405162461bcd60e51b81526004016106bb906121ff565b336111c88187878787876116aa565b60005b84518110156112ae5760008582815181106111e8576111e86121a0565b602002602001015190506000858381518110611206576112066121a0565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156112565760405162461bcd60e51b81526004016106bb90612244565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906112939084906121e7565b92505081905550505050806112a7906121cc565b90506111cb565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516112fe92919061228e565b60405180910390a4611314818787878787611823565b505050505050565b6001600160a01b03841661137c5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106bb565b3360006113888561197f565b905060006113958561197f565b90506113a6836000898585896116aa565b6000868152602081815260408083206001600160a01b038b168452909152812080548792906113d69084906121e7565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611436836000898989896119ca565b50505050505050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156115055760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016106bb565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166115985760405162461bcd60e51b81526004016106bb906121ff565b3360006115a48561197f565b905060006115b18561197f565b90506115c18389898585896116aa565b6000868152602081815260408083206001600160a01b038c168452909152902054858110156116025760405162461bcd60e51b81526004016106bb90612244565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a1682528120805488929061163f9084906121e7565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461169f848a8a8a8a8a6119ca565b505050505050505050565b6001600160a01b0385166117315760005b835181101561172f578281815181106116d6576116d66121a0565b6020026020010151600360008684815181106116f4576116f46121a0565b60200260200101518152602001908152602001600020600082825461171991906121e7565b909155506117289050816121cc565b90506116bb565b505b6001600160a01b0384166113145760005b835181101561143657600084828151811061175f5761175f6121a0565b60200260200101519050600084838151811061177d5761177d6121a0565b60200260200101519050600060036000848152602001908152602001600020549050818110156118005760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b60648201526084016106bb565b6000928352600360205260409092209103905561181c816121cc565b9050611742565b6001600160a01b0384163b156113145760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061186790899089908890889088906004016122bc565b6020604051808303816000875af19250505080156118a2575060408051601f3d908101601f1916820190925261189f9181019061231a565b60015b61194f576118ae612337565b806308c379a014156118e857506118c3612353565b806118ce57506118ea565b8060405162461bcd60e51b81526004016106bb9190611cdd565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016106bb565b6001600160e01b0319811663bc197c8160e01b146114365760405162461bcd60e51b81526004016106bb906123dd565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106119b9576119b96121a0565b602090810291909101015292915050565b6001600160a01b0384163b156113145760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611a0e9089908990889088908890600401612425565b6020604051808303816000875af1925050508015611a49575060408051601f3d908101601f19168201909252611a469181019061231a565b60015b611a55576118ae612337565b6001600160e01b0319811663f23a6e6160e01b146114365760405162461bcd60e51b81526004016106bb906123dd565b828054611a9190612117565b90600052602060002090601f016020900481019282611ab35760008555611af9565b82601f10611acc57805160ff1916838001178555611af9565b82800160010185558215611af9579182015b82811115611af9578251825591602001919060010190611ade565b50611b05929150611b09565b5090565b5b80821115611b055760008155600101611b0a565b80356001600160a01b0381168114611b3557600080fd5b919050565b60008060408385031215611b4d57600080fd5b611b5683611b1e565b946020939093013593505050565b6001600160e01b03198116811461074d57600080fd5b600060208284031215611b8c57600080fd5b8135611b9781611b64565b9392505050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715611bda57611bda611b9e565b6040525050565b600067ffffffffffffffff831115611bfb57611bfb611b9e565b604051611c12601f8501601f191660200182611bb4565b809150838152848484011115611c2757600080fd5b83836020830137600060208583010152509392505050565b600060208284031215611c5157600080fd5b813567ffffffffffffffff811115611c6857600080fd5b8201601f81018413611c7957600080fd5b611c8884823560208401611be1565b949350505050565b6000815180845260005b81811015611cb657602081850181015186830182015201611c9a565b81811115611cc8576000602083870101525b50601f01601f19169290920160200192915050565b602081526000611b976020830184611c90565b600060208284031215611d0257600080fd5b5035919050565b600067ffffffffffffffff821115611d2357611d23611b9e565b5060051b60200190565b600082601f830112611d3e57600080fd5b81356020611d4b82611d09565b604051611d588282611bb4565b83815260059390931b8501820192828101915086841115611d7857600080fd5b8286015b84811015611d935780358352918301918301611d7c565b509695505050505050565b600082601f830112611daf57600080fd5b611b9783833560208501611be1565b600080600080600060a08688031215611dd657600080fd5b611ddf86611b1e565b9450611ded60208701611b1e565b9350604086013567ffffffffffffffff80821115611e0a57600080fd5b611e1689838a01611d2d565b94506060880135915080821115611e2c57600080fd5b611e3889838a01611d2d565b93506080880135915080821115611e4e57600080fd5b50611e5b88828901611d9e565b9150509295509295909350565b60008060408385031215611e7b57600080fd5b823567ffffffffffffffff80821115611e9357600080fd5b818501915085601f830112611ea757600080fd5b81356020611eb482611d09565b604051611ec18282611bb4565b83815260059390931b8501820192828101915089841115611ee157600080fd5b948201945b83861015611f0657611ef786611b1e565b82529482019490820190611ee6565b96505086013592505080821115611f1c57600080fd5b50611f2985828601611d2d565b9150509250929050565b600081518084526020808501945080840160005b83811015611f6357815187529582019590820190600101611f47565b509495945050505050565b602081526000611b976020830184611f33565b60008060208385031215611f9457600080fd5b823567ffffffffffffffff80821115611fac57600080fd5b818501915085601f830112611fc057600080fd5b813581811115611fcf57600080fd5b8660208260051b8501011115611fe457600080fd5b60209290920196919550909350505050565b6000806000806080858703121561200c57600080fd5b5050823594602084013594506040840135936060013592509050565b60006020828403121561203a57600080fd5b611b9782611b1e565b6000806040838503121561205657600080fd5b61205f83611b1e565b91506020830135801515811461207457600080fd5b809150509250929050565b6000806040838503121561209257600080fd5b61209b83611b1e565b91506120a960208401611b1e565b90509250929050565b600080600080600060a086880312156120ca57600080fd5b6120d386611b1e565b94506120e160208701611b1e565b93506040860135925060608601359150608086013567ffffffffffffffff81111561210b57600080fd5b611e5b88828901611d9e565b600181811c9082168061212b57607f821691505b6020821081141561214c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156121e0576121e06121b6565b5060010190565b600082198211156121fa576121fa6121b6565b500190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6040815260006122a16040830185611f33565b82810360208401526122b38185611f33565b95945050505050565b6001600160a01b0386811682528516602082015260a0604082018190526000906122e890830186611f33565b82810360608401526122fa8186611f33565b9050828103608084015261230e8185611c90565b98975050505050505050565b60006020828403121561232c57600080fd5b8151611b9781611b64565b600060033d11156123505760046000803e5060005160e01c5b90565b600060443d10156123615790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561239157505050505090565b82850191508151818111156123a95750505050505090565b843d87010160208285010111156123c35750505050505090565b6123d260208286010187611bb4565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061245f90830184611c90565b97965050505050505056fea26469706673582212204ce19ec0e09750a320a1fa7b8d626e442d7cd286eb64bff1c30c5fb874282e8364736f6c634300080b0033
Deployed Bytecode Sourcemap
42214:3243:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24532:230;;;;;;;;;;-1:-1:-1;24532:230:0;;;;;:::i;:::-;;:::i;:::-;;;597:25:1;;;585:2;570:18;24532:230:0;;;;;;;;23555:310;;;;;;;;;;-1:-1:-1;23555:310:0;;;;;:::i;:::-;;:::i;:::-;;;1184:14:1;;1177:22;1159:41;;1147:2;1132:18;23555:310:0;1019:187:1;42981:96:0;;;;;;;;;;-1:-1:-1;42981:96:0;;;;;:::i;:::-;;:::i;:::-;;42594:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42498:37::-;;;;;;;;;;;;;:::i;24276:105::-;;;;;;;;;;-1:-1:-1;24276:105:0;;;;;:::i;:::-;;:::i;42305:29::-;;;;;;;;;;;;;;;;43185:90;;;;;;;;;;;;;:::i;26475:438::-;;;;;;;;;;-1:-1:-1;26475:438:0;;;;;:::i;:::-;;:::i;44437:96::-;;;;;;;;;;;;;:::i;44194:235::-;;;;;;;;;;;;;:::i;42381:28::-;;;;;;;;;;;;;;;;42341:33;;;;;;;;;;;;;;;;24928:524;;;;;;;;;;-1:-1:-1;24928:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41008:122::-;;;;;;;;;;-1:-1:-1;41008:122:0;;;;;:::i;:::-;41065:4;40886:16;;;:12;:16;;;;;;-1:-1:-1;;;41008:122:0;45216:231;;;;;;;;;;-1:-1:-1;45216:231:0;;;;;:::i;:::-;;:::i;44051:135::-;;;;;;;;;;-1:-1:-1;44051:135:0;;;;;:::i;:::-;;:::i;44541:334::-;;;;;;;;;;-1:-1:-1;44541:334:0;;;;;:::i;:::-;;:::i;2809:103::-;;;;;;;;;;;;;:::i;44934:218::-;;;;;;;;;;-1:-1:-1;44934:218:0;;;;;:::i;:::-;;:::i;42450:40::-;;;;;;;;;;;;42482:8;42450:40;;2161:87;;;;;;;;;;-1:-1:-1;2234:6:0;;2161:87;;-1:-1:-1;;;;;2234:6:0;;;8580:51:1;;8568:2;8553:18;2161:87:0;8434:203:1;42862:111:0;;;;;;;;;;-1:-1:-1;42862:111:0;;;;;:::i;:::-;;:::i;42542:41::-;;;;;;;;;;-1:-1:-1;42542:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25525:155;;;;;;;;;;-1:-1:-1;25525:155:0;;;;;:::i;:::-;;:::i;40797:113::-;;;;;;;;;;-1:-1:-1;40797:113:0;;;;;:::i;:::-;40859:7;40886:16;;;:12;:16;;;;;;;40797:113;43085:92;;;;;;;;;;-1:-1:-1;43085:92:0;;;;;:::i;:::-;;:::i;43283:760::-;;;;;;:::i;:::-;;:::i;42416:27::-;;;;;;;;;;;;;;;;42751:103;;;;;;;;;;;;;:::i;25752:168::-;;;;;;;;;;-1:-1:-1;25752:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;25875:27:0;;;25851:4;25875:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;25752:168;42266:32;;;;;;;;;;-1:-1:-1;42266:32:0;;;;-1:-1:-1;;;42266:32:0;;;;;;25992:406;;;;;;;;;;-1:-1:-1;25992:406:0;;;;;:::i;:::-;;:::i;3067:201::-;;;;;;;;;;-1:-1:-1;3067:201:0;;;;;:::i;:::-;;:::i;24532:230::-;24618:7;-1:-1:-1;;;;;24646:21:0;;24638:76;;;;-1:-1:-1;;;24638:76:0;;10263:2:1;24638:76:0;;;10245:21:1;10302:2;10282:18;;;10275:30;10341:34;10321:18;;;10314:62;-1:-1:-1;;;10392:18:1;;;10385:40;10442:19;;24638:76:0;;;;;;;;;-1:-1:-1;24732:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;24732:22:0;;;;;;;;;;;;24532:230::o;23555:310::-;23657:4;-1:-1:-1;;;;;;23694:41:0;;-1:-1:-1;;;23694:41:0;;:110;;-1:-1:-1;;;;;;;23752:52:0;;-1:-1:-1;;;23752:52:0;23694:110;:163;;;-1:-1:-1;;;;;;;;;;14945:40:0;;;23821:36;23674:183;23555:310;-1:-1:-1;;23555:310:0:o;42981:96::-;2047:13;:11;:13::i;:::-;43054:15:::1;43062:6;43054:7;:15::i;:::-;42981:96:::0;:::o;42594:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42498:37::-;;;;;;;:::i;24276:105::-;24336:13;24369:4;24362:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24276:105;;;:::o;43185:90::-;43225:13;43263:4;43256:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43185:90;:::o;26475:438::-;-1:-1:-1;;;;;26708:20:0;;792:10;26708:20;;:60;;-1:-1:-1;26732:36:0;26749:4;792:10;25752:168;:::i;26732:36::-;26686:156;;;;-1:-1:-1;;;26686:156:0;;;;;;;:::i;:::-;26853:52;26876:4;26882:2;26886:3;26891:7;26900:4;26853:22;:52::i;:::-;26475:438;;;;;:::o;44437:96::-;2047:13;:11;:13::i;:::-;44513:12:::1;::::0;;-1:-1:-1;;;;44497:28:0;::::1;-1:-1:-1::0;;;44513:12:0;;;::::1;;;44512:13;44497:28:::0;;::::1;;::::0;;44437:96::o;44194:235::-;2047:13;:11;:13::i;:::-;44253:12:::1;44271:7;2234:6:::0;;-1:-1:-1;;;;;2234:6:0;;2161:87;44271:7:::1;-1:-1:-1::0;;;;;44271:12:0::1;44305:21;44271:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44252:89;;;44362:7;44354:67;;;::::0;-1:-1:-1;;;44354:67:0;;11684:2:1;44354:67:0::1;::::0;::::1;11666:21:1::0;11723:2;11703:18;;;11696:30;11762:26;11742:18;;;11735:54;11806:18;;44354:67:0::1;11482:348:1::0;24928:524:0;25084:16;25145:3;:10;25126:8;:15;:29;25118:83;;;;-1:-1:-1;;;25118:83:0;;12037:2:1;25118:83:0;;;12019:21:1;12076:2;12056:18;;;12049:30;12115:34;12095:18;;;12088:62;-1:-1:-1;;;12166:18:1;;;12159:39;12215:19;;25118:83:0;11835:405:1;25118:83:0;25214:30;25261:8;:15;25247:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25247:30:0;;25214:63;;25295:9;25290:122;25314:8;:15;25310:1;:19;25290:122;;;25370:30;25380:8;25389:1;25380:11;;;;;;;;:::i;:::-;;;;;;;25393:3;25397:1;25393:6;;;;;;;;:::i;:::-;;;;;;;25370:9;:30::i;:::-;25351:13;25365:1;25351:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;25331:3;;;:::i;:::-;;;25290:122;;;-1:-1:-1;25431:13:0;24928:524;-1:-1:-1;;;24928:524:0:o;45216:231::-;2047:13;:11;:13::i;:::-;45328:6:::1;45323:117;45340:28:::0;;::::1;45323:117;;;45397:9;:31;45407:17;;45425:1;45407:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45397:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;45397:31:0;45390:38;;-1:-1:-1;;45390:38:0::1;::::0;;45370:3;::::1;::::0;::::1;:::i;:::-;;;;45323:117;;;;45216:231:::0;;:::o;44051:135::-;2047:13;:11;:13::i;:::-;44142:36:::1;44148:2;44152:13;;44167:6;44142:36;;;;;;;;;;;::::0;:5:::1;:36::i;:::-;44051:135:::0;;:::o;44541:334::-;2047:13;:11;:13::i;:::-;44686::::1;:30:::0;;;;44727:17:::1;:38:::0;;;;44776:12:::1;:28:::0;44815:9:::1;:22:::0;44848:12:::1;:19:::0;;-1:-1:-1;;;;44848:19:0::1;-1:-1:-1::0;;;44848:19:0::1;::::0;;44541:334::o;2809:103::-;2047:13;:11;:13::i;:::-;2874:30:::1;2901:1;2874:18;:30::i;:::-;2809:103::o:0;44934:218::-;2047:13;:11;:13::i;:::-;45039:6:::1;45034:111;45051:25:::0;;::::1;45034:111;;;45129:4;45098:9;:28;45108:14;;45123:1;45108:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45098:28:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;45098:28:0;:35;;-1:-1:-1;;45098:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45078:3;::::1;::::0;::::1;:::i;:::-;;;;45034:111;;42862::::0;2047:13;:11;:13::i;:::-;42942:23;;::::1;::::0;:14:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;25525:155::-:0;25620:52;792:10;25653:8;25663;25620:18;:52::i;43085:92::-;2047:13;:11;:13::i;:::-;43157:12;;::::1;::::0;:4:::1;::::0;:12:::1;::::0;::::1;::::0;::::1;:::i;43283:760::-:0;43369:10;43359:21;;;;:9;:21;;;;;;;;43351:50;;;;-1:-1:-1;;;43351:50:0;;12851:2:1;43351:50:0;;;12833:21:1;12890:2;12870:18;;;12863:30;-1:-1:-1;;;12909:18:1;;;12902:46;12965:18;;43351:50:0;12649:340:1;43351:50:0;43420:10;43434:9;43420:23;43412:72;;;;-1:-1:-1;;;43412:72:0;;13196:2:1;43412:72:0;;;13178:21:1;13235:2;13215:18;;;13208:30;13274:34;13254:18;;;13247:62;-1:-1:-1;;;13325:18:1;;;13318:34;13369:19;;43412:72:0;12994:400:1;43412:72:0;43503:12;;-1:-1:-1;;;43503:12:0;;;;43495:52;;;;-1:-1:-1;;;43495:52:0;;13601:2:1;43495:52:0;;;13583:21:1;13640:2;13620:18;;;13613:30;13679:29;13659:18;;;13652:57;13726:18;;43495:52:0;13399:351:1;43495:52:0;43575:1;43566:6;:10;:41;;;;;43590:17;;43580:6;:27;;43566:41;43558:99;;;;-1:-1:-1;;;43558:99:0;;13957:2:1;43558:99:0;;;13939:21:1;13996:2;13976:18;;;13969:30;14035:34;14015:18;;;14008:62;-1:-1:-1;;;14086:18:1;;;14079:43;14139:19;;43558:99:0;13755:409:1;43558:99:0;43725:12;;43715:6;43676:36;43686:10;43698:13;;43676:9;:36::i;:::-;:45;;;;:::i;:::-;:61;;43668:133;;;;-1:-1:-1;;;43668:133:0;;14504:2:1;43668:133:0;;;14486:21:1;14543:2;14523:18;;;14516:30;14582:34;14562:18;;;14555:62;14653:29;14633:18;;;14626:57;14700:19;;43668:133:0;14302:423:1;43668:133:0;43859:9;;43849:6;43820:26;43832:13;;40859:7;40886:16;;;:12;:16;;;;;;;40797:113;43820:26;:35;;;;:::i;:::-;:48;;43812:94;;;;-1:-1:-1;;;43812:94:0;;14932:2:1;43812:94:0;;;14914:21:1;;;14951:18;;;14944:30;15010:34;14990:18;;;14983:62;15062:18;;43812:94:0;14730:356:1;43812:94:0;42482:8;43925:9;:18;;43917:61;;;;-1:-1:-1;;;43917:61:0;;15293:2:1;43917:61:0;;;15275:21:1;15332:2;15312:18;;;15305:30;15371:32;15351:18;;;15344:60;15421:18;;43917:61:0;15091:354:1;43917:61:0;43991:44;43997:10;44009:13;;44024:6;43991:44;;;;;;;;;;;;:5;:44::i;42751:103::-;42795:13;42832:14;42825:21;;;;;:::i;25992:406::-;-1:-1:-1;;;;;26200:20:0;;792:10;26200:20;;:60;;-1:-1:-1;26224:36:0;26241:4;792:10;25752:168;:::i;26224:36::-;26178:156;;;;-1:-1:-1;;;26178:156:0;;;;;;;:::i;:::-;26345:45;26363:4;26369:2;26373;26377:6;26385:4;26345:17;:45::i;3067:201::-;2047:13;:11;:13::i;:::-;-1:-1:-1;;;;;3156:22:0;::::1;3148:73;;;::::0;-1:-1:-1;;;3148:73:0;;15652:2:1;3148:73:0::1;::::0;::::1;15634:21:1::0;15691:2;15671:18;;;15664:30;15730:34;15710:18;;;15703:62;-1:-1:-1;;;15781:18:1;;;15774:36;15827:19;;3148:73:0::1;15450:402:1::0;3148:73:0::1;3232:28;3251:8;3232:18;:28::i;2326:132::-:0;2234:6;;-1:-1:-1;;;;;2234:6:0;792:10;2390:23;2382:68;;;;-1:-1:-1;;;2382:68:0;;16059:2:1;2382:68:0;;;16041:21:1;;;16078:18;;;16071:30;16137:34;16117:18;;;16110:62;16189:18;;2382:68:0;15857:356:1;30699:88:0;30766:13;;;;:4;;:13;;;;;:::i;28709:1146::-;28936:7;:14;28922:3;:10;:28;28914:81;;;;-1:-1:-1;;;28914:81:0;;16420:2:1;28914:81:0;;;16402:21:1;16459:2;16439:18;;;16432:30;16498:34;16478:18;;;16471:62;-1:-1:-1;;;16549:18:1;;;16542:38;16597:19;;28914:81:0;16218:404:1;28914:81:0;-1:-1:-1;;;;;29014:16:0;;29006:66;;;;-1:-1:-1;;;29006:66:0;;;;;;;:::i;:::-;792:10;29129:60;792:10;29160:4;29166:2;29170:3;29175:7;29184:4;29129:20;:60::i;:::-;29207:9;29202:421;29226:3;:10;29222:1;:14;29202:421;;;29258:10;29271:3;29275:1;29271:6;;;;;;;;:::i;:::-;;;;;;;29258:19;;29292:14;29309:7;29317:1;29309:10;;;;;;;;:::i;:::-;;;;;;;;;;;;29336:19;29358:13;;;;;;;;;;-1:-1:-1;;;;;29358:19:0;;;;;;;;;;;;29309:10;;-1:-1:-1;29400:21:0;;;;29392:76;;;;-1:-1:-1;;;29392:76:0;;;;;;;:::i;:::-;29512:9;:13;;;;;;;;;;;-1:-1:-1;;;;;29512:19:0;;;;;;;;;;29534:20;;;29512:42;;29584:17;;;;;;;:27;;29534:20;;29512:9;29584:27;;29534:20;;29584:27;:::i;:::-;;;;;;;;29243:380;;;29238:3;;;;:::i;:::-;;;29202:421;;;;29670:2;-1:-1:-1;;;;;29640:47:0;29664:4;-1:-1:-1;;;;;29640:47:0;29654:8;-1:-1:-1;;;;;29640:47:0;;29674:3;29679:7;29640:47;;;;;;;:::i;:::-;;;;;;;;29772:75;29808:8;29818:4;29824:2;29828:3;29833:7;29842:4;29772:35;:75::i;:::-;28903:952;28709:1146;;;;;:::o;31173:729::-;-1:-1:-1;;;;;31326:16:0;;31318:62;;;;-1:-1:-1;;;31318:62:0;;18116:2:1;31318:62:0;;;18098:21:1;18155:2;18135:18;;;18128:30;18194:34;18174:18;;;18167:62;-1:-1:-1;;;18245:18:1;;;18238:31;18286:19;;31318:62:0;17914:397:1;31318:62:0;792:10;31393:16;31458:21;31476:2;31458:17;:21::i;:::-;31435:44;;31490:24;31517:25;31535:6;31517:17;:25::i;:::-;31490:52;;31555:66;31576:8;31594:1;31598:2;31602:3;31607:7;31616:4;31555:20;:66::i;:::-;31634:9;:13;;;;;;;;;;;-1:-1:-1;;;;;31634:17:0;;;;;;;;;:27;;31655:6;;31634:9;:27;;31655:6;;31634:27;:::i;:::-;;;;-1:-1:-1;;31677:52:0;;;18490:25:1;;;18546:2;18531:18;;18524:34;;;-1:-1:-1;;;;;31677:52:0;;;;31710:1;;31677:52;;;;;;18463:18:1;31677:52:0;;;;;;;31820:74;31851:8;31869:1;31873:2;31877;31881:6;31889:4;31820:30;:74::i;:::-;31307:595;;;31173:729;;;;:::o;3428:191::-;3521:6;;;-1:-1:-1;;;;;3538:17:0;;;-1:-1:-1;;;;;;3538:17:0;;;;;;;3571:40;;3521:6;;;3538:17;3521:6;;3571:40;;3502:16;;3571:40;3491:128;3428:191;:::o;35586:331::-;35741:8;-1:-1:-1;;;;;35732:17:0;:5;-1:-1:-1;;;;;35732:17:0;;;35724:71;;;;-1:-1:-1;;;35724:71:0;;18771:2:1;35724:71:0;;;18753:21:1;18810:2;18790:18;;;18783:30;18849:34;18829:18;;;18822:62;-1:-1:-1;;;18900:18:1;;;18893:39;18949:19;;35724:71:0;18569:405:1;35724:71:0;-1:-1:-1;;;;;35806:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35806:46:0;;;;;;;;;;35868:41;;1159::1;;;35868::0;;1132:18:1;35868:41:0;;;;;;;35586:331;;;:::o;27377:974::-;-1:-1:-1;;;;;27565:16:0;;27557:66;;;;-1:-1:-1;;;27557:66:0;;;;;;;:::i;:::-;792:10;27636:16;27701:21;27719:2;27701:17;:21::i;:::-;27678:44;;27733:24;27760:25;27778:6;27760:17;:25::i;:::-;27733:52;;27798:60;27819:8;27829:4;27835:2;27839:3;27844:7;27853:4;27798:20;:60::i;:::-;27871:19;27893:13;;;;;;;;;;;-1:-1:-1;;;;;27893:19:0;;;;;;;;;;27931:21;;;;27923:76;;;;-1:-1:-1;;;27923:76:0;;;;;;;:::i;:::-;28035:9;:13;;;;;;;;;;;-1:-1:-1;;;;;28035:19:0;;;;;;;;;;28057:20;;;28035:42;;28099:17;;;;;;;:27;;28057:20;;28035:9;28099:27;;28057:20;;28099:27;:::i;:::-;;;;-1:-1:-1;;28144:46:0;;;18490:25:1;;;18546:2;18531:18;;18524:34;;;-1:-1:-1;;;;;28144:46:0;;;;;;;;;;;;;;18463:18:1;28144:46:0;;;;;;;28275:68;28306:8;28316:4;28322:2;28326;28330:6;28338:4;28275:30;:68::i;:::-;27546:805;;;;27377:974;;;;;:::o;41205:931::-;-1:-1:-1;;;;;41527:18:0;;41523:160;;41567:9;41562:110;41586:3;:10;41582:1;:14;41562:110;;;41646:7;41654:1;41646:10;;;;;;;;:::i;:::-;;;;;;;41622:12;:20;41635:3;41639:1;41635:6;;;;;;;;:::i;:::-;;;;;;;41622:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;41598:3:0;;-1:-1:-1;41598:3:0;;:::i;:::-;;;41562:110;;;;41523:160;-1:-1:-1;;;;;41699:16:0;;41695:434;;41737:9;41732:386;41756:3;:10;41752:1;:14;41732:386;;;41792:10;41805:3;41809:1;41805:6;;;;;;;;:::i;:::-;;;;;;;41792:19;;41830:14;41847:7;41855:1;41847:10;;;;;;;;:::i;:::-;;;;;;;41830:27;;41876:14;41893:12;:16;41906:2;41893:16;;;;;;;;;;;;41876:33;;41946:6;41936;:16;;41928:69;;;;-1:-1:-1;;;41928:69:0;;19181:2:1;41928:69:0;;;19163:21:1;19220:2;19200:18;;;19193:30;19259:34;19239:18;;;19232:62;-1:-1:-1;;;19310:18:1;;;19303:38;19358:19;;41928:69:0;18979:404:1;41928:69:0;42049:16;;;;:12;:16;;;;;;42068:15;;42049:34;;41768:3;;;:::i;:::-;;;41732:386;;39031:813;-1:-1:-1;;;;;39271:13:0;;5154:19;:23;39267:570;;39307:79;;-1:-1:-1;;;39307:79:0;;-1:-1:-1;;;;;39307:43:0;;;;;:79;;39351:8;;39361:4;;39367:3;;39372:7;;39381:4;;39307:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39307:79:0;;;;;;;;-1:-1:-1;;39307:79:0;;;;;;;;;;;;:::i;:::-;;;39303:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;39699:6;39692:14;;-1:-1:-1;;;39692:14:0;;;;;;;;:::i;39303:523::-;;;39748:62;;-1:-1:-1;;;39748:62:0;;21536:2:1;39748:62:0;;;21518:21:1;21575:2;21555:18;;;21548:30;21614:34;21594:18;;;21587:62;-1:-1:-1;;;21665:18:1;;;21658:50;21725:19;;39748:62:0;21334:416:1;39303:523:0;-1:-1:-1;;;;;;39468:60:0;;-1:-1:-1;;;39468:60:0;39464:159;;39553:50;;-1:-1:-1;;;39553:50:0;;;;;;;:::i;39852:198::-;39972:16;;;39986:1;39972:16;;;;;;;;;39918;;39947:22;;39972:16;;;;;;;;;;;;-1:-1:-1;39972:16:0;39947:41;;40010:7;39999:5;40005:1;39999:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;40037:5;39852:198;-1:-1:-1;;39852:198:0:o;38279:744::-;-1:-1:-1;;;;;38494:13:0;;5154:19;:23;38490:526;;38530:72;;-1:-1:-1;;;38530:72:0;;-1:-1:-1;;;;;38530:38:0;;;;;:72;;38569:8;;38579:4;;38585:2;;38589:6;;38597:4;;38530:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38530:72:0;;;;;;;;-1:-1:-1;;38530:72:0;;;;;;;;;;;;:::i;:::-;;;38526:479;;;;:::i;:::-;-1:-1:-1;;;;;;38652:55:0;;-1:-1:-1;;;38652:55:0;38648:154;;38732:50;;-1:-1:-1;;;38732:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;633:131::-;-1:-1:-1;;;;;;707:32:1;;697:43;;687:71;;754:1;751;744:12;769:245;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;935:9;922:23;954:30;978:5;954:30;:::i;:::-;1003:5;769:245;-1:-1:-1;;;769:245:1:o;1211:127::-;1272:10;1267:3;1263:20;1260:1;1253:31;1303:4;1300:1;1293:15;1327:4;1324:1;1317:15;1343:249;1453:2;1434:13;;-1:-1:-1;;1430:27:1;1418:40;;1488:18;1473:34;;1509:22;;;1470:62;1467:88;;;1535:18;;:::i;:::-;1571:2;1564:22;-1:-1:-1;;1343:249:1:o;1597:469::-;1662:5;1696:18;1688:6;1685:30;1682:56;;;1718:18;;:::i;:::-;1767:2;1761:9;1779:69;1836:2;1815:15;;-1:-1:-1;;1811:29:1;1842:4;1807:40;1761:9;1779:69;:::i;:::-;1866:6;1857:15;;1896:6;1888;1881:22;1936:3;1927:6;1922:3;1918:16;1915:25;1912:45;;;1953:1;1950;1943:12;1912:45;2003:6;1998:3;1991:4;1983:6;1979:17;1966:44;2058:1;2051:4;2042:6;2034;2030:19;2026:30;2019:41;;1597:469;;;;;:::o;2071:451::-;2140:6;2193:2;2181:9;2172:7;2168:23;2164:32;2161:52;;;2209:1;2206;2199:12;2161:52;2249:9;2236:23;2282:18;2274:6;2271:30;2268:50;;;2314:1;2311;2304:12;2268:50;2337:22;;2390:4;2382:13;;2378:27;-1:-1:-1;2368:55:1;;2419:1;2416;2409:12;2368:55;2442:74;2508:7;2503:2;2490:16;2485:2;2481;2477:11;2442:74;:::i;:::-;2432:84;2071:451;-1:-1:-1;;;;2071:451:1:o;2527:472::-;2569:3;2607:5;2601:12;2634:6;2629:3;2622:19;2659:1;2669:162;2683:6;2680:1;2677:13;2669:162;;;2745:4;2801:13;;;2797:22;;2791:29;2773:11;;;2769:20;;2762:59;2698:12;2669:162;;;2849:6;2846:1;2843:13;2840:87;;;2915:1;2908:4;2899:6;2894:3;2890:16;2886:27;2879:38;2840:87;-1:-1:-1;2981:2:1;2960:15;-1:-1:-1;;2956:29:1;2947:39;;;;2988:4;2943:50;;2527:472;-1:-1:-1;;2527:472:1:o;3004:220::-;3153:2;3142:9;3135:21;3116:4;3173:45;3214:2;3203:9;3199:18;3191:6;3173:45;:::i;3229:180::-;3288:6;3341:2;3329:9;3320:7;3316:23;3312:32;3309:52;;;3357:1;3354;3347:12;3309:52;-1:-1:-1;3380:23:1;;3229:180;-1:-1:-1;3229:180:1:o;3414:183::-;3474:4;3507:18;3499:6;3496:30;3493:56;;;3529:18;;:::i;:::-;-1:-1:-1;3574:1:1;3570:14;3586:4;3566:25;;3414:183::o;3602:724::-;3656:5;3709:3;3702:4;3694:6;3690:17;3686:27;3676:55;;3727:1;3724;3717:12;3676:55;3763:6;3750:20;3789:4;3812:43;3852:2;3812:43;:::i;:::-;3884:2;3878:9;3896:31;3924:2;3916:6;3896:31;:::i;:::-;3962:18;;;4054:1;4050:10;;;;4038:23;;4034:32;;;3996:15;;;;-1:-1:-1;4078:15:1;;;4075:35;;;4106:1;4103;4096:12;4075:35;4142:2;4134:6;4130:15;4154:142;4170:6;4165:3;4162:15;4154:142;;;4236:17;;4224:30;;4274:12;;;;4187;;4154:142;;;-1:-1:-1;4314:6:1;3602:724;-1:-1:-1;;;;;;3602:724:1:o;4331:221::-;4373:5;4426:3;4419:4;4411:6;4407:17;4403:27;4393:55;;4444:1;4441;4434:12;4393:55;4466:80;4542:3;4533:6;4520:20;4513:4;4505:6;4501:17;4466:80;:::i;4557:943::-;4711:6;4719;4727;4735;4743;4796:3;4784:9;4775:7;4771:23;4767:33;4764:53;;;4813:1;4810;4803:12;4764:53;4836:29;4855:9;4836:29;:::i;:::-;4826:39;;4884:38;4918:2;4907:9;4903:18;4884:38;:::i;:::-;4874:48;;4973:2;4962:9;4958:18;4945:32;4996:18;5037:2;5029:6;5026:14;5023:34;;;5053:1;5050;5043:12;5023:34;5076:61;5129:7;5120:6;5109:9;5105:22;5076:61;:::i;:::-;5066:71;;5190:2;5179:9;5175:18;5162:32;5146:48;;5219:2;5209:8;5206:16;5203:36;;;5235:1;5232;5225:12;5203:36;5258:63;5313:7;5302:8;5291:9;5287:24;5258:63;:::i;:::-;5248:73;;5374:3;5363:9;5359:19;5346:33;5330:49;;5404:2;5394:8;5391:16;5388:36;;;5420:1;5417;5410:12;5388:36;;5443:51;5486:7;5475:8;5464:9;5460:24;5443:51;:::i;:::-;5433:61;;;4557:943;;;;;;;;:::o;5505:1208::-;5623:6;5631;5684:2;5672:9;5663:7;5659:23;5655:32;5652:52;;;5700:1;5697;5690:12;5652:52;5740:9;5727:23;5769:18;5810:2;5802:6;5799:14;5796:34;;;5826:1;5823;5816:12;5796:34;5864:6;5853:9;5849:22;5839:32;;5909:7;5902:4;5898:2;5894:13;5890:27;5880:55;;5931:1;5928;5921:12;5880:55;5967:2;5954:16;5989:4;6012:43;6052:2;6012:43;:::i;:::-;6084:2;6078:9;6096:31;6124:2;6116:6;6096:31;:::i;:::-;6162:18;;;6250:1;6246:10;;;;6238:19;;6234:28;;;6196:15;;;;-1:-1:-1;6274:19:1;;;6271:39;;;6306:1;6303;6296:12;6271:39;6330:11;;;;6350:148;6366:6;6361:3;6358:15;6350:148;;;6432:23;6451:3;6432:23;:::i;:::-;6420:36;;6383:12;;;;6476;;;;6350:148;;;6517:6;-1:-1:-1;;6561:18:1;;6548:32;;-1:-1:-1;;6592:16:1;;;6589:36;;;6621:1;6618;6611:12;6589:36;;6644:63;6699:7;6688:8;6677:9;6673:24;6644:63;:::i;:::-;6634:73;;;5505:1208;;;;;:::o;6718:435::-;6771:3;6809:5;6803:12;6836:6;6831:3;6824:19;6862:4;6891:2;6886:3;6882:12;6875:19;;6928:2;6921:5;6917:14;6949:1;6959:169;6973:6;6970:1;6967:13;6959:169;;;7034:13;;7022:26;;7068:12;;;;7103:15;;;;6995:1;6988:9;6959:169;;;-1:-1:-1;7144:3:1;;6718:435;-1:-1:-1;;;;;6718:435:1:o;7158:261::-;7337:2;7326:9;7319:21;7300:4;7357:56;7409:2;7398:9;7394:18;7386:6;7357:56;:::i;7424:615::-;7510:6;7518;7571:2;7559:9;7550:7;7546:23;7542:32;7539:52;;;7587:1;7584;7577:12;7539:52;7627:9;7614:23;7656:18;7697:2;7689:6;7686:14;7683:34;;;7713:1;7710;7703:12;7683:34;7751:6;7740:9;7736:22;7726:32;;7796:7;7789:4;7785:2;7781:13;7777:27;7767:55;;7818:1;7815;7808:12;7767:55;7858:2;7845:16;7884:2;7876:6;7873:14;7870:34;;;7900:1;7897;7890:12;7870:34;7953:7;7948:2;7938:6;7935:1;7931:14;7927:2;7923:23;7919:32;7916:45;7913:65;;;7974:1;7971;7964:12;7913:65;8005:2;7997:11;;;;;8027:6;;-1:-1:-1;7424:615:1;;-1:-1:-1;;;;7424:615:1:o;8044:385::-;8130:6;8138;8146;8154;8207:3;8195:9;8186:7;8182:23;8178:33;8175:53;;;8224:1;8221;8214:12;8175:53;-1:-1:-1;;8247:23:1;;;8317:2;8302:18;;8289:32;;-1:-1:-1;8368:2:1;8353:18;;8340:32;;8419:2;8404:18;8391:32;;-1:-1:-1;8044:385:1;-1:-1:-1;8044:385:1:o;8642:186::-;8701:6;8754:2;8742:9;8733:7;8729:23;8725:32;8722:52;;;8770:1;8767;8760:12;8722:52;8793:29;8812:9;8793:29;:::i;8833:347::-;8898:6;8906;8959:2;8947:9;8938:7;8934:23;8930:32;8927:52;;;8975:1;8972;8965:12;8927:52;8998:29;9017:9;8998:29;:::i;:::-;8988:39;;9077:2;9066:9;9062:18;9049:32;9124:5;9117:13;9110:21;9103:5;9100:32;9090:60;;9146:1;9143;9136:12;9090:60;9169:5;9159:15;;;8833:347;;;;;:::o;9185:260::-;9253:6;9261;9314:2;9302:9;9293:7;9289:23;9285:32;9282:52;;;9330:1;9327;9320:12;9282:52;9353:29;9372:9;9353:29;:::i;:::-;9343:39;;9401:38;9435:2;9424:9;9420:18;9401:38;:::i;:::-;9391:48;;9185:260;;;;;:::o;9450:606::-;9554:6;9562;9570;9578;9586;9639:3;9627:9;9618:7;9614:23;9610:33;9607:53;;;9656:1;9653;9646:12;9607:53;9679:29;9698:9;9679:29;:::i;:::-;9669:39;;9727:38;9761:2;9750:9;9746:18;9727:38;:::i;:::-;9717:48;;9812:2;9801:9;9797:18;9784:32;9774:42;;9863:2;9852:9;9848:18;9835:32;9825:42;;9918:3;9907:9;9903:19;9890:33;9946:18;9938:6;9935:30;9932:50;;;9978:1;9975;9968:12;9932:50;10001:49;10042:7;10033:6;10022:9;10018:22;10001:49;:::i;10472:380::-;10551:1;10547:12;;;;10594;;;10615:61;;10669:4;10661:6;10657:17;10647:27;;10615:61;10722:2;10714:6;10711:14;10691:18;10688:38;10685:161;;;10768:10;10763:3;10759:20;10756:1;10749:31;10803:4;10800:1;10793:15;10831:4;10828:1;10821:15;10685:161;;10472:380;;;:::o;10857:410::-;11059:2;11041:21;;;11098:2;11078:18;;;11071:30;11137:34;11132:2;11117:18;;11110:62;-1:-1:-1;;;11203:2:1;11188:18;;11181:44;11257:3;11242:19;;10857:410::o;12245:127::-;12306:10;12301:3;12297:20;12294:1;12287:31;12337:4;12334:1;12327:15;12361:4;12358:1;12351:15;12377:127;12438:10;12433:3;12429:20;12426:1;12419:31;12469:4;12466:1;12459:15;12493:4;12490:1;12483:15;12509:135;12548:3;-1:-1:-1;;12569:17:1;;12566:43;;;12589:18;;:::i;:::-;-1:-1:-1;12636:1:1;12625:13;;12509:135::o;14169:128::-;14209:3;14240:1;14236:6;14233:1;14230:13;14227:39;;;14246:18;;:::i;:::-;-1:-1:-1;14282:9:1;;14169:128::o;16627:401::-;16829:2;16811:21;;;16868:2;16848:18;;;16841:30;16907:34;16902:2;16887:18;;16880:62;-1:-1:-1;;;16973:2:1;16958:18;;16951:35;17018:3;17003:19;;16627:401::o;17033:406::-;17235:2;17217:21;;;17274:2;17254:18;;;17247:30;17313:34;17308:2;17293:18;;17286:62;-1:-1:-1;;;17379:2:1;17364:18;;17357:40;17429:3;17414:19;;17033:406::o;17444:465::-;17701:2;17690:9;17683:21;17664:4;17727:56;17779:2;17768:9;17764:18;17756:6;17727:56;:::i;:::-;17831:9;17823:6;17819:22;17814:2;17803:9;17799:18;17792:50;17859:44;17896:6;17888;17859:44;:::i;:::-;17851:52;17444:465;-1:-1:-1;;;;;17444:465:1:o;19388:827::-;-1:-1:-1;;;;;19785:15:1;;;19767:34;;19837:15;;19832:2;19817:18;;19810:43;19747:3;19884:2;19869:18;;19862:31;;;19710:4;;19916:57;;19953:19;;19945:6;19916:57;:::i;:::-;20021:9;20013:6;20009:22;20004:2;19993:9;19989:18;19982:50;20055:44;20092:6;20084;20055:44;:::i;:::-;20041:58;;20148:9;20140:6;20136:22;20130:3;20119:9;20115:19;20108:51;20176:33;20202:6;20194;20176:33;:::i;:::-;20168:41;19388:827;-1:-1:-1;;;;;;;;19388:827:1:o;20220:249::-;20289:6;20342:2;20330:9;20321:7;20317:23;20313:32;20310:52;;;20358:1;20355;20348:12;20310:52;20390:9;20384:16;20409:30;20433:5;20409:30;:::i;20474:179::-;20509:3;20551:1;20533:16;20530:23;20527:120;;;20597:1;20594;20591;20576:23;-1:-1:-1;20634:1:1;20628:8;20623:3;20619:18;20527:120;20474:179;:::o;20658:671::-;20697:3;20739:4;20721:16;20718:26;20715:39;;;20658:671;:::o;20715:39::-;20781:2;20775:9;-1:-1:-1;;20846:16:1;20842:25;;20839:1;20775:9;20818:50;20897:4;20891:11;20921:16;20956:18;21027:2;21020:4;21012:6;21008:17;21005:25;21000:2;20992:6;20989:14;20986:45;20983:58;;;21034:5;;;;;20658:671;:::o;20983:58::-;21071:6;21065:4;21061:17;21050:28;;21107:3;21101:10;21134:2;21126:6;21123:14;21120:27;;;21140:5;;;;;;20658:671;:::o;21120:27::-;21224:2;21205:16;21199:4;21195:27;21191:36;21184:4;21175:6;21170:3;21166:16;21162:27;21159:69;21156:82;;;21231:5;;;;;;20658:671;:::o;21156:82::-;21247:57;21298:4;21289:6;21281;21277:19;21273:30;21267:4;21247:57;:::i;:::-;-1:-1:-1;21320:3:1;;20658:671;-1:-1:-1;;;;;20658:671:1:o;21755:404::-;21957:2;21939:21;;;21996:2;21976:18;;;21969:30;22035:34;22030:2;22015:18;;22008:62;-1:-1:-1;;;22101:2:1;22086:18;;22079:38;22149:3;22134:19;;21755:404::o;22164:561::-;-1:-1:-1;;;;;22461:15:1;;;22443:34;;22513:15;;22508:2;22493:18;;22486:43;22560:2;22545:18;;22538:34;;;22603:2;22588:18;;22581:34;;;22423:3;22646;22631:19;;22624:32;;;22386:4;;22673:46;;22699:19;;22691:6;22673:46;:::i;:::-;22665:54;22164:561;-1:-1:-1;;;;;;;22164:561:1:o
Swarm Source
ipfs://4ce19ec0e09750a320a1fa7b8d626e442d7cd286eb64bff1c30c5fb874282e83
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.