Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
Overview
Max Total Supply
5,694 CJC
Holders
1,616
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CoffeeJunkieClub
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./ERC1155.sol"; import "./MerkleProof.sol"; import "./SafeMath.sol"; import "./Counters.sol"; import "./AbstractCoffeeJunkieClub.sol"; contract CoffeeJunkieClub is AbstractCoffeeJunkieClub { using SafeMath for uint256; using Counters for Counters.Counter; Counters.Counter private TierCounter; mapping(uint256 => Tier) public Tiers; event Mint(address indexed account, uint amount); struct Tier { bytes32 merkleRoot; uint256 totalSupply; uint256 totalMinted; uint256 salePrice; uint256 presalePrice; uint256 presaleMintLimit; uint256 saleMintLimit; uint256 mintPerTransectionLimit; bool presaleStatus; bool saleStatus; string ipfsMetadataHash; mapping(address => uint256) presaleMintedNFT; mapping(address => uint256) saleMintedNFT; } constructor() ERC1155("ipfs://ipfs/") { } function addTier( bytes32 _merkleRoot, uint256 _totalSupply, uint256 _salePrice, uint256 _presalePrice, uint256 _presaleMintLimit, uint256 _saleMintLimit, uint256 _mintPerTransectionLimit, string memory _ipfsMetadataHash ) external onlyOwner { Tier storage tier = Tiers[TierCounter.current()]; tier.merkleRoot = _merkleRoot; tier.totalSupply = _totalSupply; tier.salePrice = _salePrice; tier.presalePrice = _presalePrice; tier.presaleMintLimit = _presaleMintLimit; tier.saleMintLimit = _saleMintLimit; tier.mintPerTransectionLimit = _mintPerTransectionLimit; tier.ipfsMetadataHash = _ipfsMetadataHash; tier.presaleStatus = false; tier.saleStatus = false; TierCounter.increment(); } function editTier ( bytes32 _merkleRoot, uint256 _totalSupply, uint256 _salePrice, uint256 _presalePrice, uint256 _presaleMintLimit, uint256 _saleMintLimit, uint256 _mintPerTransectionLimit, string memory _ipfsMetadataHash, uint256 _tierIndex ) external onlyOwner { require(_totalSupply >= Tiers[_tierIndex].totalMinted, "Incorrect total supply"); Tiers[_tierIndex].merkleRoot = _merkleRoot; Tiers[_tierIndex].totalSupply = _totalSupply; Tiers[_tierIndex].salePrice = _salePrice; Tiers[_tierIndex].presalePrice = _presalePrice; Tiers[_tierIndex].presaleMintLimit = _presaleMintLimit; Tiers[_tierIndex].saleMintLimit = _saleMintLimit; Tiers[_tierIndex].mintPerTransectionLimit = _mintPerTransectionLimit; Tiers[_tierIndex].ipfsMetadataHash = _ipfsMetadataHash; } function preSaleMint(uint256 _count, uint256 _tierIndex, bytes32[] calldata merkleProof) external payable { bytes32 node = keccak256(abi.encodePacked(msg.sender)); require( !paused(), "contract is paused" ); require( Tiers[_tierIndex].totalSupply != 0, "Tier does not exist" ); require( Tiers[_tierIndex].presaleStatus, "Pre-sale is not enable" ); require( msg.value >= _count.mul(Tiers[_tierIndex].presalePrice), "Ether value incorrect" ); require( Tiers[_tierIndex].totalMinted.add(_count) <= Tiers[_tierIndex].totalSupply, "Exceeds total supply limit" ); require( Tiers[_tierIndex].presaleMintedNFT[msg.sender].add(_count) <= Tiers[_tierIndex].presaleMintLimit, "Exceeds max mint limit per wallet" ); require( _count <= Tiers[_tierIndex].mintPerTransectionLimit, "Exceeds max mint limit per transaction" ); require( MerkleProof.verify(merkleProof, Tiers[_tierIndex].merkleRoot, node), "MerkleDistributor: Invalid proof." ); Tiers[_tierIndex].presaleMintedNFT[msg.sender] = Tiers[_tierIndex].presaleMintedNFT[msg.sender].add(_count); Tiers[_tierIndex].totalMinted = Tiers[_tierIndex].totalMinted.add(_count); _mint(msg.sender, _tierIndex, _count, ""); emit Mint(msg.sender, _count); } function saleMint(uint256 _count, uint256 _tierIndex) external payable { require( !paused(), "contract is paused" ); require( Tiers[_tierIndex].totalSupply != 0, "Tier does not exist" ); require( Tiers[_tierIndex].saleStatus, "Sale is not enable" ); require( msg.value >= _count.mul(Tiers[_tierIndex].salePrice), "Ether value incorrect" ); require( Tiers[_tierIndex].totalMinted.add(_count) <= Tiers[_tierIndex].totalSupply, "Exceeds total supply limit" ); require( Tiers[_tierIndex].saleMintedNFT[msg.sender].add(_count) <= Tiers[_tierIndex].saleMintLimit, "Exceeds max mint limit per wallet" ); require( _count <= Tiers[_tierIndex].mintPerTransectionLimit, "Exceeds max mint limit per transaction" ); Tiers[_tierIndex].saleMintedNFT[msg.sender] = Tiers[_tierIndex].saleMintedNFT[msg.sender].add(_count); Tiers[_tierIndex].totalMinted = Tiers[_tierIndex].totalMinted.add(_count); _mint(msg.sender, _tierIndex, _count, ""); emit Mint(msg.sender, _count); } function updateSaleStatus ( uint256 _tierIndex, bool _status ) external onlyOwner { Tiers[_tierIndex].saleStatus = _status; } function updatePreSaleStatus ( uint256 _tierIndex, bool _status ) external onlyOwner { Tiers[_tierIndex].presaleStatus = _status; } function withdrawEther(address payable _to) public onlyOwner{ uint256 balance = address(this).balance; _to.transfer(balance); } function getPreSaleMinted(uint256 tier, address userAdress) public view returns (uint256) { return Tiers[tier].presaleMintedNFT[userAdress]; } function getSaleMinted(uint256 tier, address userAdress) public view returns (uint256) { return Tiers[tier].saleMintedNFT[userAdress]; } function uri(uint256 _id) public view override returns (string memory) { require(totalSupply(_id) > 0, "URI: nonexistent token"); return string(abi.encodePacked(super.uri(_id), Tiers[_id].ipfsMetadataHash)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import './Ownable.sol'; import './ERC1155Burnable.sol'; import './ERC1155Pausable.sol'; import './ERC1155Supply.sol'; abstract contract AbstractCoffeeJunkieClub is ERC1155Pausable, ERC1155Supply, ERC1155Burnable, Ownable { string private name_ = 'Coffee Junkie Club'; string private symbol_ = 'CJC'; function pause() external onlyOwner { _pause(); } function unpause() external onlyOwner { _unpause(); } function setURI(string memory baseURI) external onlyOwner { _setURI(baseURI); } function name() public view returns (string memory) { return name_; } function symbol() public view returns (string memory) { return symbol_; } function _mint( address account, uint256 id, uint256 amount, bytes memory data ) internal virtual override(ERC1155, ERC1155Supply) { super._mint(account, id, amount, data); } function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override(ERC1155, ERC1155Supply) { super._mintBatch(to, ids, amounts, data); } function _burn( address account, uint256 id, uint256 amount ) internal virtual override(ERC1155, ERC1155Supply) { super._burn(account, id, amount); } function _burnBatch( address account, uint256[] memory ids, uint256[] memory amounts ) internal virtual override(ERC1155, ERC1155Supply) { super._burnBatch(account, ids, amounts); } function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override(ERC1155Pausable, ERC1155) { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./IERC1155MetadataURI.sol"; import "./Address.sol"; import "./Context.sol"; import "./ERC165.sol"; /** * @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: balance query for the zero address"); 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 { require(_msgSender() != operator, "ERC1155: setting approval status for self"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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 owner nor 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: transfer caller is not owner nor 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(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), 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); _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); _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 `account`. * * Emits a {TransferSingle} event. * * Requirements: * * - `account` cannot be the zero address. * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address account, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(account != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][account] += amount; emit TransferSingle(operator, address(0), account, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * 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); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `account` * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens of token type `id`. */ function _burn( address account, uint256 id, uint256 amount ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } emit TransferSingle(operator, account, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address account, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } } emit TransferBatch(operator, account, address(0), ids, amounts); } /** * @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 `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 _beforeTokenTransfer( 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(to).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(to).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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC1155.sol"; /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. * * _Available since v3.1._ */ abstract contract ERC1155Burnable is ERC1155 { function burn( address account, uint256 id, uint256 value ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burn(account, id, value); } function burnBatch( address account, uint256[] memory ids, uint256[] memory values ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burnBatch(account, ids, values); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC1155.sol"; import "./Pausable.sol"; /** * @dev ERC1155 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. * * _Available since v3.1._ */ abstract contract ERC1155Pausable is ERC1155, Pausable { /** * @dev See {ERC1155-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ 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); require(!paused(), "ERC1155Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC1155.sol"; /** * @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 weither 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-_mint}. */ function _mint( address account, uint256 id, uint256 amount, bytes memory data ) internal virtual override { super._mint(account, id, amount, data); _totalSupply[id] += amount; } /** * @dev See {ERC1155-_mintBatch}. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._mintBatch(to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] += amounts[i]; } } /** * @dev See {ERC1155-_burn}. */ function _burn( address account, uint256 id, uint256 amount ) internal virtual override { super._burn(account, id, amount); _totalSupply[id] -= amount; } /** * @dev See {ERC1155-_burnBatch}. */ function _burnBatch( address account, uint256[] memory ids, uint256[] memory amounts ) internal virtual override { super._burnBatch(account, ids, amounts); for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] -= amounts[i]; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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 be 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; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC1155.sol"; /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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. 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. 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } // Check if the computed hash (root) is equal to the provided root return computedHash == root; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
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":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"Tiers","outputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"totalMinted","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"},{"internalType":"uint256","name":"presalePrice","type":"uint256"},{"internalType":"uint256","name":"presaleMintLimit","type":"uint256"},{"internalType":"uint256","name":"saleMintLimit","type":"uint256"},{"internalType":"uint256","name":"mintPerTransectionLimit","type":"uint256"},{"internalType":"bool","name":"presaleStatus","type":"bool"},{"internalType":"bool","name":"saleStatus","type":"bool"},{"internalType":"string","name":"ipfsMetadataHash","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"},{"internalType":"uint256","name":"_presalePrice","type":"uint256"},{"internalType":"uint256","name":"_presaleMintLimit","type":"uint256"},{"internalType":"uint256","name":"_saleMintLimit","type":"uint256"},{"internalType":"uint256","name":"_mintPerTransectionLimit","type":"uint256"},{"internalType":"string","name":"_ipfsMetadataHash","type":"string"}],"name":"addTier","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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"},{"internalType":"uint256","name":"_presalePrice","type":"uint256"},{"internalType":"uint256","name":"_presaleMintLimit","type":"uint256"},{"internalType":"uint256","name":"_saleMintLimit","type":"uint256"},{"internalType":"uint256","name":"_mintPerTransectionLimit","type":"uint256"},{"internalType":"string","name":"_ipfsMetadataHash","type":"string"},{"internalType":"uint256","name":"_tierIndex","type":"uint256"}],"name":"editTier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tier","type":"uint256"},{"internalType":"address","name":"userAdress","type":"address"}],"name":"getPreSaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tier","type":"uint256"},{"internalType":"address","name":"userAdress","type":"address"}],"name":"getSaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"uint256","name":"_tierIndex","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"uint256","name":"_tierIndex","type":"uint256"}],"name":"saleMint","outputs":[],"stateMutability":"payable","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":"baseURI","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tierIndex","type":"uint256"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"updatePreSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tierIndex","type":"uint256"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"updateSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c0604052601260808190527121b7b33332b290253ab735b4b29021b63ab160711b60a090815262000035916006919062000126565b5060408051808201909152600380825262434a4360e81b6020909201918252620000629160079162000126565b503480156200007057600080fd5b5060408051808201909152600c81526b697066733a2f2f697066732f60a01b60208201526200009f81620000bb565b506003805460ff19169055620000b533620000d4565b62000209565b8051620000d090600290602084019062000126565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013490620001cc565b90600052602060002090601f016020900481019282620001585760008555620001a3565b82601f106200017357805160ff1916838001178555620001a3565b82800160010185558215620001a3579182015b82811115620001a357825182559160200191906001019062000186565b50620001b1929150620001b5565b5090565b5b80821115620001b15760008155600101620001b6565b600181811c90821680620001e157607f821691505b602082108114156200020357634e487b7160e01b600052602260045260246000fd5b50919050565b61346980620002196000396000f3fe6080604052600436106101d75760003560e01c80636b20c45411610102578063af933b5711610095578063e985e9c511610064578063e985e9c5146105ab578063f242432a146105f4578063f2fde38b14610614578063f5298aca1461063457600080fd5b8063af933b5714610507578063bd85b03914610527578063bf0c8c1614610554578063bf3952d71461057457600080fd5b80638da5cb5b116100d15780638da5cb5b1461048a57806395d89b41146104b2578063a22cb465146104c7578063a8f6d746146104e757600080fd5b80636b20c454146103f9578063715018a6146104195780638456cb591461042e5780638d1c0ce91461044357600080fd5b80632c218df91161017a5780634506c46a116101495780634506c46a146103725780634e1273f4146103855780634f558e79146103b25780635c975abb146103e157600080fd5b80632c218df9146102d65780632eb2c2d6146102f65780633f4ba83a14610316578063412556d81461032b57600080fd5b806306fdde03116101b657806306fdde031461026157806308ab2e261461028357806309686f84146102a35780630e89341c146102b657600080fd5b8062fdd58e146101dc57806301ffc9a71461020f57806302fe53051461023f575b600080fd5b3480156101e857600080fd5b506101fc6101f736600461295d565b610654565b6040519081526020015b60405180910390f35b34801561021b57600080fd5b5061022f61022a366004612b8e565b6106eb565b6040519015158152602001610206565b34801561024b57600080fd5b5061025f61025a366004612bc6565b61073d565b005b34801561026d57600080fd5b50610276610773565b6040516102069190612f5e565b34801561028f57600080fd5b5061025f61029e366004612a88565b610805565b61025f6102b1366004612c7f565b6108b3565b3480156102c257600080fd5b506102766102d1366004612c00565b610ca9565b3480156102e257600080fd5b5061025f6102f1366004612c3c565b610d47565b34801561030257600080fd5b5061025f6103113660046127a8565b610d94565b34801561032257600080fd5b5061025f610e2b565b34801561033757600080fd5b506101fc610346366004612c18565b60008281526009602090815260408083206001600160a01b0385168452600a0190915290205492915050565b61025f610380366004612c5e565b610e5f565b34801561039157600080fd5b506103a56103a03660046129bc565b611173565b6040516102069190612eb4565b3480156103be57600080fd5b5061022f6103cd366004612c00565b600090815260046020526040902054151590565b3480156103ed57600080fd5b5060035460ff1661022f565b34801561040557600080fd5b5061025f6104143660046128b7565b6112d4565b34801561042557600080fd5b5061025f61131c565b34801561043a57600080fd5b5061025f611350565b34801561044f57600080fd5b506101fc61045e366004612c18565b60008281526009602090815260408083206001600160a01b0385168452600b0190915290205492915050565b34801561049657600080fd5b506005546040516001600160a01b039091168152602001610206565b3480156104be57600080fd5b50610276611382565b3480156104d357600080fd5b5061025f6104e2366004612929565b611391565b3480156104f357600080fd5b5061025f610502366004612b06565b611468565b34801561051357600080fd5b5061025f610522366004612754565b61154a565b34801561053357600080fd5b506101fc610542366004612c00565b60009081526004602052604090205490565b34801561056057600080fd5b5061025f61056f366004612c3c565b6115ac565b34801561058057600080fd5b5061059461058f366004612c00565b611600565b6040516102069b9a99989796959493929190612ef5565b3480156105b757600080fd5b5061022f6105c6366004612770565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561060057600080fd5b5061025f61060f366004612851565b6116ed565b34801561062057600080fd5b5061025f61062f366004612754565b611732565b34801561064057600080fd5b5061025f61064f366004612988565b6117ca565b60006001600160a01b0383166106c55760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061071c57506001600160e01b031982166303a24d0760e21b145b8061073757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6005546001600160a01b031633146107675760405162461bcd60e51b81526004016106bc90613118565b6107708161180d565b50565b606060068054610782906132b9565b80601f01602080910402602001604051908101604052809291908181526020018280546107ae906132b9565b80156107fb5780601f106107d0576101008083540402835291602001916107fb565b820191906000526020600020905b8154815290600101906020018083116107de57829003601f168201915b5050505050905090565b6005546001600160a01b0316331461082f5760405162461bcd60e51b81526004016106bc90613118565b60006009600061083e60085490565b81526020808201929092526040016000208a8155600181018a905560038101899055600481018890556005810187905560068101869055600781018590558351909250610893916009840191908501906125c4565b506008908101805461ffff19169055805460010190555050505050505050565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506108f860035460ff1690565b1561093a5760405162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064016106bc565b60008481526009602052604090206001015461098e5760405162461bcd60e51b8152602060048201526013602482015272151a595c88191bd95cc81b9bdd08195e1a5cdd606a1b60448201526064016106bc565b60008481526009602052604090206008015460ff166109e85760405162461bcd60e51b81526020600482015260166024820152755072652d73616c65206973206e6f7420656e61626c6560501b60448201526064016106bc565b600084815260096020526040902060040154610a05908690611824565b341015610a4c5760405162461bcd60e51b8152602060048201526015602482015274115d1a195c881d985b1d59481a5b98dbdc9c9958dd605a1b60448201526064016106bc565b60008481526009602052604090206001810154600290910154610a6f9087611837565b1115610abd5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746f74616c20737570706c79206c696d697400000000000060448201526064016106bc565b60008481526009602090815260408083206005810154338552600a90910190925290912054610aec9087611837565b1115610b0a5760405162461bcd60e51b81526004016106bc9061314d565b600084815260096020526040902060070154851115610b3b5760405162461bcd60e51b81526004016106bc9061318e565b610b8683838080602002602001604051908101604052809392919081815260200183836020028082843760009201829052508981526009602052604090205492508591506118439050565b610bdc5760405162461bcd60e51b815260206004820152602160248201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666044820152601760f91b60648201526084016106bc565b6000848152600960209081526040808320338452600a01909152902054610c039086611837565b6000858152600960208181526040808420338552600a810183529084209490945591879052905260020154610c389086611837565b6009600086815260200190815260200160002060020181905550610c6d33858760405180602001604052806000815250611900565b60405185815233907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859060200160405180910390a25050505050565b60008181526004602052604081205460609110610d015760405162461bcd60e51b81526020600482015260166024820152752aa9249d103737b732bc34b9ba32b73a103a37b5b2b760511b60448201526064016106bc565b610d0a82611912565b60096000848152602001908152602001600020600901604051602001610d31929190612d62565b6040516020818303038152906040529050919050565b6005546001600160a01b03163314610d715760405162461bcd60e51b81526004016106bc90613118565b600091825260096020526040909120600801805460ff1916911515919091179055565b6001600160a01b038516331480610db05750610db085336105c6565b610e175760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106bc565b610e2485858585856119a6565b5050505050565b6005546001600160a01b03163314610e555760405162461bcd60e51b81526004016106bc90613118565b610e5d611b6c565b565b60035460ff1615610ea75760405162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064016106bc565b600081815260096020526040902060010154610efb5760405162461bcd60e51b8152602060048201526013602482015272151a595c88191bd95cc81b9bdd08195e1a5cdd606a1b60448201526064016106bc565b600081815260096020526040902060080154610100900460ff16610f565760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f7420656e61626c6560701b60448201526064016106bc565b600081815260096020526040902060030154610f73908390611824565b341015610fba5760405162461bcd60e51b8152602060048201526015602482015274115d1a195c881d985b1d59481a5b98dbdc9c9958dd605a1b60448201526064016106bc565b60008181526009602052604090206001810154600290910154610fdd9084611837565b111561102b5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746f74616c20737570706c79206c696d697400000000000060448201526064016106bc565b60008181526009602090815260408083206006810154338552600b9091019092529091205461105a9084611837565b11156110785760405162461bcd60e51b81526004016106bc9061314d565b6000818152600960205260409020600701548211156110a95760405162461bcd60e51b81526004016106bc9061318e565b6000818152600960209081526040808320338452600b019091529020546110d09083611837565b6000828152600960208181526040808420338552600b8101835290842094909455918490529052600201546111059083611837565b600960008381526020019081526020016000206002018190555061113a33828460405180602001604052806000815250611900565b60405182815233907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859060200160405180910390a25050565b606081518351146111d85760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016106bc565b600083516001600160401b0381111561120157634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561122a578160200160208202803683370190505b50905060005b84518110156112cc5761129185828151811061125c57634e487b7160e01b600052603260045260246000fd5b602002602001015185838151811061128457634e487b7160e01b600052603260045260246000fd5b6020026020010151610654565b8282815181106112b157634e487b7160e01b600052603260045260246000fd5b60209081029190910101526112c581613320565b9050611230565b509392505050565b6001600160a01b0383163314806112f057506112f083336105c6565b61130c5760405162461bcd60e51b81526004016106bc90612ffd565b611317838383611bff565b505050565b6005546001600160a01b031633146113465760405162461bcd60e51b81526004016106bc90613118565b610e5d6000611c0a565b6005546001600160a01b0316331461137a5760405162461bcd60e51b81526004016106bc90613118565b610e5d611c5c565b606060078054610782906132b9565b336001600160a01b03831614156113fc5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016106bc565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005546001600160a01b031633146114925760405162461bcd60e51b81526004016106bc90613118565b6000818152600960205260409020600201548810156114ec5760405162461bcd60e51b8152602060048201526016602482015275496e636f727265637420746f74616c20737570706c7960501b60448201526064016106bc565b60008181526009602081815260409092208b8155600181018b9055600381018a905560048101899055600581018890556006810187905560078101869055845161153e939190920191908501906125c4565b50505050505050505050565b6005546001600160a01b031633146115745760405162461bcd60e51b81526004016106bc90613118565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611317573d6000803e3d6000fd5b6005546001600160a01b031633146115d65760405162461bcd60e51b81526004016106bc90613118565b60009182526009602052604090912060080180549115156101000261ff0019909216919091179055565b60096020819052600091825260409091208054600182015460028301546003840154600485015460058601546006870154600788015460088901549989018054989a979996989597949693959294919360ff80841694610100909404169290919061166a906132b9565b80601f0160208091040260200160405190810160405280929190818152602001828054611696906132b9565b80156116e35780601f106116b8576101008083540402835291602001916116e3565b820191906000526020600020905b8154815290600101906020018083116116c657829003601f168201915b505050505090508b565b6001600160a01b038516331480611709575061170985336105c6565b6117255760405162461bcd60e51b81526004016106bc90612ffd565b610e248585858585611cd7565b6005546001600160a01b0316331461175c5760405162461bcd60e51b81526004016106bc90613118565b6001600160a01b0381166117c15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106bc565b61077081611c0a565b6001600160a01b0383163314806117e657506117e683336105c6565b6118025760405162461bcd60e51b81526004016106bc90612ffd565b611317838383611e03565b80516118209060029060208401906125c4565b5050565b60006118308284613257565b9392505050565b6000611830828461323f565b600081815b85518110156118f557600086828151811061187357634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116118b55760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506118e2565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806118ed81613320565b915050611848565b509092149392505050565b61190c84848484611e0e565b50505050565b606060028054611921906132b9565b80601f016020809104026020016040519081016040528092919081815260200182805461194d906132b9565b801561199a5780601f1061196f5761010080835404028352916020019161199a565b820191906000526020600020905b81548152906001019060200180831161197d57829003601f168201915b50505050509050919050565b81518351146119c75760405162461bcd60e51b81526004016106bc906131d4565b6001600160a01b0384166119ed5760405162461bcd60e51b81526004016106bc90613046565b336119fc818787878787611e43565b60005b8451811015611afe576000858281518110611a2a57634e487b7160e01b600052603260045260246000fd5b602002602001015190506000858381518110611a5657634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611aa65760405162461bcd60e51b81526004016106bc906130ce565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611ae390849061323f565b9250508190555050505080611af790613320565b90506119ff565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b4e929190612ec7565b60405180910390a4611b64818787878787611e51565b505050505050565b60035460ff16611bb55760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016106bc565b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b611317838383611fbc565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60035460ff1615611ca25760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016106bc565b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611be23390565b6001600160a01b038416611cfd5760405162461bcd60e51b81526004016106bc90613046565b33611d1c818787611d0d8861205a565b611d168861205a565b87611e43565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611d5d5760405162461bcd60e51b81526004016106bc906130ce565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611d9a90849061323f565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611dfa8288888888886120b3565b50505050505050565b61131783838361217d565b611e1a848484846121b0565b60008381526004602052604081208054849290611e3890849061323f565b909155505050505050565b611b648686868686866122b1565b6001600160a01b0384163b15611b645760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611e959089908990889088908890600401612e11565b602060405180830381600087803b158015611eaf57600080fd5b505af1925050508015611edf575060408051601f3d908101601f19168201909252611edc91810190612baa565b60015b611f8c57611eeb613367565b806308c379a01415611f255750611f0061337f565b80611f0b5750611f27565b8060405162461bcd60e51b81526004016106bc9190612f5e565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016106bc565b6001600160e01b0319811663bc197c8160e01b14611dfa5760405162461bcd60e51b81526004016106bc90612f71565b611fc7838383612319565b60005b825181101561190c57818181518110611ff357634e487b7160e01b600052603260045260246000fd5b60200260200101516004600085848151811061201f57634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060008282546120449190613276565b90915550612053905081613320565b9050611fca565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106120a257634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6001600160a01b0384163b15611b645760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906120f79089908990889088908890600401612e6f565b602060405180830381600087803b15801561211157600080fd5b505af1925050508015612141575060408051601f3d908101601f1916820190925261213e91810190612baa565b60015b61214d57611eeb613367565b6001600160e01b0319811663f23a6e6160e01b14611dfa5760405162461bcd60e51b81526004016106bc90612f71565b6121888383836124c3565b600082815260046020526040812080548392906121a6908490613276565b9091555050505050565b6001600160a01b0384166122105760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106bc565b3361222181600087611d0d8861205a565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061225190849061323f565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610e24816000878787876120b3565b60035460ff1615611b645760405162461bcd60e51b815260206004820152602c60248201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060448201526b1dda1a5b19481c185d5cd95960a21b60648201526084016106bc565b6001600160a01b03831661233f5760405162461bcd60e51b81526004016106bc9061308b565b80518251146123605760405162461bcd60e51b81526004016106bc906131d4565b600033905061238381856000868660405180602001604052806000815250611e43565b60005b83518110156124645760008482815181106123b157634e487b7160e01b600052603260045260246000fd5b6020026020010151905060008483815181106123dd57634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038c16835290935291909120549091508181101561242d5760405162461bcd60e51b81526004016106bc90612fb9565b6000928352602083815260408085206001600160a01b038b168652909152909220910390558061245c81613320565b915050612386565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516124b5929190612ec7565b60405180910390a450505050565b6001600160a01b0383166124e95760405162461bcd60e51b81526004016106bc9061308b565b33612518818560006124fa8761205a565b6125038761205a565b60405180602001604052806000815250611e43565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156125595760405162461bcd60e51b81526004016106bc90612fb9565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b8280546125d0906132b9565b90600052602060002090601f0160209004810192826125f25760008555612638565b82601f1061260b57805160ff1916838001178555612638565b82800160010185558215612638579182015b8281111561263857825182559160200191906001019061261d565b50612644929150612648565b5090565b5b808211156126445760008155600101612649565b600082601f83011261266d578081fd5b8135602061267a8261321c565b60405161268782826132f4565b8381528281019150858301600585901b870184018810156126a6578586fd5b855b858110156126c4578135845292840192908401906001016126a8565b5090979650505050505050565b803580151581146126e157600080fd5b919050565b600082601f8301126126f6578081fd5b81356001600160401b0381111561270f5761270f613351565b604051612726601f8301601f1916602001826132f4565b81815284602083860101111561273a578283fd5b816020850160208301379081016020019190915292915050565b600060208284031215612765578081fd5b813561183081613408565b60008060408385031215612782578081fd5b823561278d81613408565b9150602083013561279d81613408565b809150509250929050565b600080600080600060a086880312156127bf578081fd5b85356127ca81613408565b945060208601356127da81613408565b935060408601356001600160401b03808211156127f5578283fd5b61280189838a0161265d565b94506060880135915080821115612816578283fd5b61282289838a0161265d565b93506080880135915080821115612837578283fd5b50612844888289016126e6565b9150509295509295909350565b600080600080600060a08688031215612868578081fd5b853561287381613408565b9450602086013561288381613408565b9350604086013592506060860135915060808601356001600160401b038111156128ab578182fd5b612844888289016126e6565b6000806000606084860312156128cb578283fd5b83356128d681613408565b925060208401356001600160401b03808211156128f1578384fd5b6128fd8783880161265d565b93506040860135915080821115612912578283fd5b5061291f8682870161265d565b9150509250925092565b6000806040838503121561293b578081fd5b823561294681613408565b9150612954602084016126d1565b90509250929050565b6000806040838503121561296f578182fd5b823561297a81613408565b946020939093013593505050565b60008060006060848603121561299c578081fd5b83356129a781613408565b95602085013595506040909401359392505050565b600080604083850312156129ce578182fd5b82356001600160401b03808211156129e4578384fd5b818501915085601f8301126129f7578384fd5b81356020612a048261321c565b604051612a1182826132f4565b8381528281019150858301600585901b870184018b1015612a30578889fd5b8896505b84871015612a5b578035612a4781613408565b835260019690960195918301918301612a34565b5096505086013592505080821115612a71578283fd5b50612a7e8582860161265d565b9150509250929050565b600080600080600080600080610100898b031215612aa4578586fd5b883597506020890135965060408901359550606089013594506080890135935060a0890135925060c0890135915060e08901356001600160401b03811115612aea578182fd5b612af68b828c016126e6565b9150509295985092959890939650565b60008060008060008060008060006101208a8c031215612b24578283fd5b8935985060208a0135975060408a0135965060608a0135955060808a0135945060a08a0135935060c08a0135925060e08a01356001600160401b03811115612b6a578182fd5b612b768c828d016126e6565b9250506101008a013590509295985092959850929598565b600060208284031215612b9f578081fd5b81356118308161341d565b600060208284031215612bbb578081fd5b81516118308161341d565b600060208284031215612bd7578081fd5b81356001600160401b03811115612bec578182fd5b612bf8848285016126e6565b949350505050565b600060208284031215612c11578081fd5b5035919050565b60008060408385031215612c2a578182fd5b82359150602083013561279d81613408565b60008060408385031215612c4e578182fd5b82359150612954602084016126d1565b60008060408385031215612c70578182fd5b50508035926020909101359150565b60008060008060608587031215612c94578182fd5b843593506020850135925060408501356001600160401b0380821115612cb8578384fd5b818701915087601f830112612ccb578384fd5b813581811115612cd9578485fd5b8860208260051b8501011115612ced578485fd5b95989497505060200194505050565b6000815180845260208085019450808401835b83811015612d2b57815187529582019590820190600101612d0f565b509495945050505050565b60008151808452612d4e81602086016020860161328d565b601f01601f19169290920160200192915050565b600083516020612d75828583890161328d565b8454918401918390600181811c9080831680612d9257607f831692505b858310811415612db057634e487b7160e01b88526022600452602488fd5b808015612dc45760018114612dd557612e01565b60ff19851688528388019550612e01565b60008b815260209020895b85811015612df95781548a820152908401908801612de0565b505083880195505b50939a9950505050505050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090612e3d90830186612cfc565b8281036060840152612e4f8186612cfc565b90508281036080840152612e638185612d36565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612ea990830184612d36565b979650505050505050565b6020815260006118306020830184612cfc565b604081526000612eda6040830185612cfc565b8281036020840152612eec8185612cfc565b95945050505050565b60006101608d83528c60208401528b60408401528a60608401528960808401528860a08401528760c08401528660e084015285151561010084015284151561012084015280610140840152612f4c81840185612d36565b9e9d5050505050505050505050505050565b6020815260006118306020830184612d36565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b60208082526026908201527f45786365656473206d6178206d696e74206c696d697420706572207472616e7360408201526530b1ba34b7b760d11b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60006001600160401b0382111561323557613235613351565b5060051b60200190565b600082198211156132525761325261333b565b500190565b60008160001904831182151516156132715761327161333b565b500290565b6000828210156132885761328861333b565b500390565b60005b838110156132a8578181015183820152602001613290565b8381111561190c5750506000910152565b600181811c908216806132cd57607f821691505b602082108114156132ee57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b038111828210171561331957613319613351565b6040525050565b60006000198214156133345761333461333b565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561337c57600481823e5160e01c5b90565b600060443d101561338d5790565b6040516003193d81016004833e81513d6001600160401b0381602484011181841117156133bc57505050505090565b82850191508151818111156133d45750505050505090565b843d87010160208285010111156133ee5750505050505090565b6133fd602082860101876132f4565b509095945050505050565b6001600160a01b038116811461077057600080fd5b6001600160e01b03198116811461077057600080fdfea2646970667358221220b1e9b8a132441e1ae7d7a3e89dfc05a61721c886a58ac5263a35e75b66d1fc0864736f6c63430008040033
Deployed Bytecode
0x6080604052600436106101d75760003560e01c80636b20c45411610102578063af933b5711610095578063e985e9c511610064578063e985e9c5146105ab578063f242432a146105f4578063f2fde38b14610614578063f5298aca1461063457600080fd5b8063af933b5714610507578063bd85b03914610527578063bf0c8c1614610554578063bf3952d71461057457600080fd5b80638da5cb5b116100d15780638da5cb5b1461048a57806395d89b41146104b2578063a22cb465146104c7578063a8f6d746146104e757600080fd5b80636b20c454146103f9578063715018a6146104195780638456cb591461042e5780638d1c0ce91461044357600080fd5b80632c218df91161017a5780634506c46a116101495780634506c46a146103725780634e1273f4146103855780634f558e79146103b25780635c975abb146103e157600080fd5b80632c218df9146102d65780632eb2c2d6146102f65780633f4ba83a14610316578063412556d81461032b57600080fd5b806306fdde03116101b657806306fdde031461026157806308ab2e261461028357806309686f84146102a35780630e89341c146102b657600080fd5b8062fdd58e146101dc57806301ffc9a71461020f57806302fe53051461023f575b600080fd5b3480156101e857600080fd5b506101fc6101f736600461295d565b610654565b6040519081526020015b60405180910390f35b34801561021b57600080fd5b5061022f61022a366004612b8e565b6106eb565b6040519015158152602001610206565b34801561024b57600080fd5b5061025f61025a366004612bc6565b61073d565b005b34801561026d57600080fd5b50610276610773565b6040516102069190612f5e565b34801561028f57600080fd5b5061025f61029e366004612a88565b610805565b61025f6102b1366004612c7f565b6108b3565b3480156102c257600080fd5b506102766102d1366004612c00565b610ca9565b3480156102e257600080fd5b5061025f6102f1366004612c3c565b610d47565b34801561030257600080fd5b5061025f6103113660046127a8565b610d94565b34801561032257600080fd5b5061025f610e2b565b34801561033757600080fd5b506101fc610346366004612c18565b60008281526009602090815260408083206001600160a01b0385168452600a0190915290205492915050565b61025f610380366004612c5e565b610e5f565b34801561039157600080fd5b506103a56103a03660046129bc565b611173565b6040516102069190612eb4565b3480156103be57600080fd5b5061022f6103cd366004612c00565b600090815260046020526040902054151590565b3480156103ed57600080fd5b5060035460ff1661022f565b34801561040557600080fd5b5061025f6104143660046128b7565b6112d4565b34801561042557600080fd5b5061025f61131c565b34801561043a57600080fd5b5061025f611350565b34801561044f57600080fd5b506101fc61045e366004612c18565b60008281526009602090815260408083206001600160a01b0385168452600b0190915290205492915050565b34801561049657600080fd5b506005546040516001600160a01b039091168152602001610206565b3480156104be57600080fd5b50610276611382565b3480156104d357600080fd5b5061025f6104e2366004612929565b611391565b3480156104f357600080fd5b5061025f610502366004612b06565b611468565b34801561051357600080fd5b5061025f610522366004612754565b61154a565b34801561053357600080fd5b506101fc610542366004612c00565b60009081526004602052604090205490565b34801561056057600080fd5b5061025f61056f366004612c3c565b6115ac565b34801561058057600080fd5b5061059461058f366004612c00565b611600565b6040516102069b9a99989796959493929190612ef5565b3480156105b757600080fd5b5061022f6105c6366004612770565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561060057600080fd5b5061025f61060f366004612851565b6116ed565b34801561062057600080fd5b5061025f61062f366004612754565b611732565b34801561064057600080fd5b5061025f61064f366004612988565b6117ca565b60006001600160a01b0383166106c55760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061071c57506001600160e01b031982166303a24d0760e21b145b8061073757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6005546001600160a01b031633146107675760405162461bcd60e51b81526004016106bc90613118565b6107708161180d565b50565b606060068054610782906132b9565b80601f01602080910402602001604051908101604052809291908181526020018280546107ae906132b9565b80156107fb5780601f106107d0576101008083540402835291602001916107fb565b820191906000526020600020905b8154815290600101906020018083116107de57829003601f168201915b5050505050905090565b6005546001600160a01b0316331461082f5760405162461bcd60e51b81526004016106bc90613118565b60006009600061083e60085490565b81526020808201929092526040016000208a8155600181018a905560038101899055600481018890556005810187905560068101869055600781018590558351909250610893916009840191908501906125c4565b506008908101805461ffff19169055805460010190555050505050505050565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506108f860035460ff1690565b1561093a5760405162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064016106bc565b60008481526009602052604090206001015461098e5760405162461bcd60e51b8152602060048201526013602482015272151a595c88191bd95cc81b9bdd08195e1a5cdd606a1b60448201526064016106bc565b60008481526009602052604090206008015460ff166109e85760405162461bcd60e51b81526020600482015260166024820152755072652d73616c65206973206e6f7420656e61626c6560501b60448201526064016106bc565b600084815260096020526040902060040154610a05908690611824565b341015610a4c5760405162461bcd60e51b8152602060048201526015602482015274115d1a195c881d985b1d59481a5b98dbdc9c9958dd605a1b60448201526064016106bc565b60008481526009602052604090206001810154600290910154610a6f9087611837565b1115610abd5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746f74616c20737570706c79206c696d697400000000000060448201526064016106bc565b60008481526009602090815260408083206005810154338552600a90910190925290912054610aec9087611837565b1115610b0a5760405162461bcd60e51b81526004016106bc9061314d565b600084815260096020526040902060070154851115610b3b5760405162461bcd60e51b81526004016106bc9061318e565b610b8683838080602002602001604051908101604052809392919081815260200183836020028082843760009201829052508981526009602052604090205492508591506118439050565b610bdc5760405162461bcd60e51b815260206004820152602160248201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666044820152601760f91b60648201526084016106bc565b6000848152600960209081526040808320338452600a01909152902054610c039086611837565b6000858152600960208181526040808420338552600a810183529084209490945591879052905260020154610c389086611837565b6009600086815260200190815260200160002060020181905550610c6d33858760405180602001604052806000815250611900565b60405185815233907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859060200160405180910390a25050505050565b60008181526004602052604081205460609110610d015760405162461bcd60e51b81526020600482015260166024820152752aa9249d103737b732bc34b9ba32b73a103a37b5b2b760511b60448201526064016106bc565b610d0a82611912565b60096000848152602001908152602001600020600901604051602001610d31929190612d62565b6040516020818303038152906040529050919050565b6005546001600160a01b03163314610d715760405162461bcd60e51b81526004016106bc90613118565b600091825260096020526040909120600801805460ff1916911515919091179055565b6001600160a01b038516331480610db05750610db085336105c6565b610e175760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106bc565b610e2485858585856119a6565b5050505050565b6005546001600160a01b03163314610e555760405162461bcd60e51b81526004016106bc90613118565b610e5d611b6c565b565b60035460ff1615610ea75760405162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064016106bc565b600081815260096020526040902060010154610efb5760405162461bcd60e51b8152602060048201526013602482015272151a595c88191bd95cc81b9bdd08195e1a5cdd606a1b60448201526064016106bc565b600081815260096020526040902060080154610100900460ff16610f565760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f7420656e61626c6560701b60448201526064016106bc565b600081815260096020526040902060030154610f73908390611824565b341015610fba5760405162461bcd60e51b8152602060048201526015602482015274115d1a195c881d985b1d59481a5b98dbdc9c9958dd605a1b60448201526064016106bc565b60008181526009602052604090206001810154600290910154610fdd9084611837565b111561102b5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746f74616c20737570706c79206c696d697400000000000060448201526064016106bc565b60008181526009602090815260408083206006810154338552600b9091019092529091205461105a9084611837565b11156110785760405162461bcd60e51b81526004016106bc9061314d565b6000818152600960205260409020600701548211156110a95760405162461bcd60e51b81526004016106bc9061318e565b6000818152600960209081526040808320338452600b019091529020546110d09083611837565b6000828152600960208181526040808420338552600b8101835290842094909455918490529052600201546111059083611837565b600960008381526020019081526020016000206002018190555061113a33828460405180602001604052806000815250611900565b60405182815233907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859060200160405180910390a25050565b606081518351146111d85760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016106bc565b600083516001600160401b0381111561120157634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561122a578160200160208202803683370190505b50905060005b84518110156112cc5761129185828151811061125c57634e487b7160e01b600052603260045260246000fd5b602002602001015185838151811061128457634e487b7160e01b600052603260045260246000fd5b6020026020010151610654565b8282815181106112b157634e487b7160e01b600052603260045260246000fd5b60209081029190910101526112c581613320565b9050611230565b509392505050565b6001600160a01b0383163314806112f057506112f083336105c6565b61130c5760405162461bcd60e51b81526004016106bc90612ffd565b611317838383611bff565b505050565b6005546001600160a01b031633146113465760405162461bcd60e51b81526004016106bc90613118565b610e5d6000611c0a565b6005546001600160a01b0316331461137a5760405162461bcd60e51b81526004016106bc90613118565b610e5d611c5c565b606060078054610782906132b9565b336001600160a01b03831614156113fc5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016106bc565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005546001600160a01b031633146114925760405162461bcd60e51b81526004016106bc90613118565b6000818152600960205260409020600201548810156114ec5760405162461bcd60e51b8152602060048201526016602482015275496e636f727265637420746f74616c20737570706c7960501b60448201526064016106bc565b60008181526009602081815260409092208b8155600181018b9055600381018a905560048101899055600581018890556006810187905560078101869055845161153e939190920191908501906125c4565b50505050505050505050565b6005546001600160a01b031633146115745760405162461bcd60e51b81526004016106bc90613118565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611317573d6000803e3d6000fd5b6005546001600160a01b031633146115d65760405162461bcd60e51b81526004016106bc90613118565b60009182526009602052604090912060080180549115156101000261ff0019909216919091179055565b60096020819052600091825260409091208054600182015460028301546003840154600485015460058601546006870154600788015460088901549989018054989a979996989597949693959294919360ff80841694610100909404169290919061166a906132b9565b80601f0160208091040260200160405190810160405280929190818152602001828054611696906132b9565b80156116e35780601f106116b8576101008083540402835291602001916116e3565b820191906000526020600020905b8154815290600101906020018083116116c657829003601f168201915b505050505090508b565b6001600160a01b038516331480611709575061170985336105c6565b6117255760405162461bcd60e51b81526004016106bc90612ffd565b610e248585858585611cd7565b6005546001600160a01b0316331461175c5760405162461bcd60e51b81526004016106bc90613118565b6001600160a01b0381166117c15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106bc565b61077081611c0a565b6001600160a01b0383163314806117e657506117e683336105c6565b6118025760405162461bcd60e51b81526004016106bc90612ffd565b611317838383611e03565b80516118209060029060208401906125c4565b5050565b60006118308284613257565b9392505050565b6000611830828461323f565b600081815b85518110156118f557600086828151811061187357634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116118b55760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506118e2565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806118ed81613320565b915050611848565b509092149392505050565b61190c84848484611e0e565b50505050565b606060028054611921906132b9565b80601f016020809104026020016040519081016040528092919081815260200182805461194d906132b9565b801561199a5780601f1061196f5761010080835404028352916020019161199a565b820191906000526020600020905b81548152906001019060200180831161197d57829003601f168201915b50505050509050919050565b81518351146119c75760405162461bcd60e51b81526004016106bc906131d4565b6001600160a01b0384166119ed5760405162461bcd60e51b81526004016106bc90613046565b336119fc818787878787611e43565b60005b8451811015611afe576000858281518110611a2a57634e487b7160e01b600052603260045260246000fd5b602002602001015190506000858381518110611a5657634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611aa65760405162461bcd60e51b81526004016106bc906130ce565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611ae390849061323f565b9250508190555050505080611af790613320565b90506119ff565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b4e929190612ec7565b60405180910390a4611b64818787878787611e51565b505050505050565b60035460ff16611bb55760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016106bc565b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b611317838383611fbc565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60035460ff1615611ca25760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016106bc565b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611be23390565b6001600160a01b038416611cfd5760405162461bcd60e51b81526004016106bc90613046565b33611d1c818787611d0d8861205a565b611d168861205a565b87611e43565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611d5d5760405162461bcd60e51b81526004016106bc906130ce565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611d9a90849061323f565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611dfa8288888888886120b3565b50505050505050565b61131783838361217d565b611e1a848484846121b0565b60008381526004602052604081208054849290611e3890849061323f565b909155505050505050565b611b648686868686866122b1565b6001600160a01b0384163b15611b645760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611e959089908990889088908890600401612e11565b602060405180830381600087803b158015611eaf57600080fd5b505af1925050508015611edf575060408051601f3d908101601f19168201909252611edc91810190612baa565b60015b611f8c57611eeb613367565b806308c379a01415611f255750611f0061337f565b80611f0b5750611f27565b8060405162461bcd60e51b81526004016106bc9190612f5e565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016106bc565b6001600160e01b0319811663bc197c8160e01b14611dfa5760405162461bcd60e51b81526004016106bc90612f71565b611fc7838383612319565b60005b825181101561190c57818181518110611ff357634e487b7160e01b600052603260045260246000fd5b60200260200101516004600085848151811061201f57634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060008282546120449190613276565b90915550612053905081613320565b9050611fca565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106120a257634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6001600160a01b0384163b15611b645760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906120f79089908990889088908890600401612e6f565b602060405180830381600087803b15801561211157600080fd5b505af1925050508015612141575060408051601f3d908101601f1916820190925261213e91810190612baa565b60015b61214d57611eeb613367565b6001600160e01b0319811663f23a6e6160e01b14611dfa5760405162461bcd60e51b81526004016106bc90612f71565b6121888383836124c3565b600082815260046020526040812080548392906121a6908490613276565b9091555050505050565b6001600160a01b0384166122105760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106bc565b3361222181600087611d0d8861205a565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061225190849061323f565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610e24816000878787876120b3565b60035460ff1615611b645760405162461bcd60e51b815260206004820152602c60248201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060448201526b1dda1a5b19481c185d5cd95960a21b60648201526084016106bc565b6001600160a01b03831661233f5760405162461bcd60e51b81526004016106bc9061308b565b80518251146123605760405162461bcd60e51b81526004016106bc906131d4565b600033905061238381856000868660405180602001604052806000815250611e43565b60005b83518110156124645760008482815181106123b157634e487b7160e01b600052603260045260246000fd5b6020026020010151905060008483815181106123dd57634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038c16835290935291909120549091508181101561242d5760405162461bcd60e51b81526004016106bc90612fb9565b6000928352602083815260408085206001600160a01b038b168652909152909220910390558061245c81613320565b915050612386565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516124b5929190612ec7565b60405180910390a450505050565b6001600160a01b0383166124e95760405162461bcd60e51b81526004016106bc9061308b565b33612518818560006124fa8761205a565b6125038761205a565b60405180602001604052806000815250611e43565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156125595760405162461bcd60e51b81526004016106bc90612fb9565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b8280546125d0906132b9565b90600052602060002090601f0160209004810192826125f25760008555612638565b82601f1061260b57805160ff1916838001178555612638565b82800160010185558215612638579182015b8281111561263857825182559160200191906001019061261d565b50612644929150612648565b5090565b5b808211156126445760008155600101612649565b600082601f83011261266d578081fd5b8135602061267a8261321c565b60405161268782826132f4565b8381528281019150858301600585901b870184018810156126a6578586fd5b855b858110156126c4578135845292840192908401906001016126a8565b5090979650505050505050565b803580151581146126e157600080fd5b919050565b600082601f8301126126f6578081fd5b81356001600160401b0381111561270f5761270f613351565b604051612726601f8301601f1916602001826132f4565b81815284602083860101111561273a578283fd5b816020850160208301379081016020019190915292915050565b600060208284031215612765578081fd5b813561183081613408565b60008060408385031215612782578081fd5b823561278d81613408565b9150602083013561279d81613408565b809150509250929050565b600080600080600060a086880312156127bf578081fd5b85356127ca81613408565b945060208601356127da81613408565b935060408601356001600160401b03808211156127f5578283fd5b61280189838a0161265d565b94506060880135915080821115612816578283fd5b61282289838a0161265d565b93506080880135915080821115612837578283fd5b50612844888289016126e6565b9150509295509295909350565b600080600080600060a08688031215612868578081fd5b853561287381613408565b9450602086013561288381613408565b9350604086013592506060860135915060808601356001600160401b038111156128ab578182fd5b612844888289016126e6565b6000806000606084860312156128cb578283fd5b83356128d681613408565b925060208401356001600160401b03808211156128f1578384fd5b6128fd8783880161265d565b93506040860135915080821115612912578283fd5b5061291f8682870161265d565b9150509250925092565b6000806040838503121561293b578081fd5b823561294681613408565b9150612954602084016126d1565b90509250929050565b6000806040838503121561296f578182fd5b823561297a81613408565b946020939093013593505050565b60008060006060848603121561299c578081fd5b83356129a781613408565b95602085013595506040909401359392505050565b600080604083850312156129ce578182fd5b82356001600160401b03808211156129e4578384fd5b818501915085601f8301126129f7578384fd5b81356020612a048261321c565b604051612a1182826132f4565b8381528281019150858301600585901b870184018b1015612a30578889fd5b8896505b84871015612a5b578035612a4781613408565b835260019690960195918301918301612a34565b5096505086013592505080821115612a71578283fd5b50612a7e8582860161265d565b9150509250929050565b600080600080600080600080610100898b031215612aa4578586fd5b883597506020890135965060408901359550606089013594506080890135935060a0890135925060c0890135915060e08901356001600160401b03811115612aea578182fd5b612af68b828c016126e6565b9150509295985092959890939650565b60008060008060008060008060006101208a8c031215612b24578283fd5b8935985060208a0135975060408a0135965060608a0135955060808a0135945060a08a0135935060c08a0135925060e08a01356001600160401b03811115612b6a578182fd5b612b768c828d016126e6565b9250506101008a013590509295985092959850929598565b600060208284031215612b9f578081fd5b81356118308161341d565b600060208284031215612bbb578081fd5b81516118308161341d565b600060208284031215612bd7578081fd5b81356001600160401b03811115612bec578182fd5b612bf8848285016126e6565b949350505050565b600060208284031215612c11578081fd5b5035919050565b60008060408385031215612c2a578182fd5b82359150602083013561279d81613408565b60008060408385031215612c4e578182fd5b82359150612954602084016126d1565b60008060408385031215612c70578182fd5b50508035926020909101359150565b60008060008060608587031215612c94578182fd5b843593506020850135925060408501356001600160401b0380821115612cb8578384fd5b818701915087601f830112612ccb578384fd5b813581811115612cd9578485fd5b8860208260051b8501011115612ced578485fd5b95989497505060200194505050565b6000815180845260208085019450808401835b83811015612d2b57815187529582019590820190600101612d0f565b509495945050505050565b60008151808452612d4e81602086016020860161328d565b601f01601f19169290920160200192915050565b600083516020612d75828583890161328d565b8454918401918390600181811c9080831680612d9257607f831692505b858310811415612db057634e487b7160e01b88526022600452602488fd5b808015612dc45760018114612dd557612e01565b60ff19851688528388019550612e01565b60008b815260209020895b85811015612df95781548a820152908401908801612de0565b505083880195505b50939a9950505050505050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090612e3d90830186612cfc565b8281036060840152612e4f8186612cfc565b90508281036080840152612e638185612d36565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612ea990830184612d36565b979650505050505050565b6020815260006118306020830184612cfc565b604081526000612eda6040830185612cfc565b8281036020840152612eec8185612cfc565b95945050505050565b60006101608d83528c60208401528b60408401528a60608401528960808401528860a08401528760c08401528660e084015285151561010084015284151561012084015280610140840152612f4c81840185612d36565b9e9d5050505050505050505050505050565b6020815260006118306020830184612d36565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b60208082526026908201527f45786365656473206d6178206d696e74206c696d697420706572207472616e7360408201526530b1ba34b7b760d11b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60006001600160401b0382111561323557613235613351565b5060051b60200190565b600082198211156132525761325261333b565b500190565b60008160001904831182151516156132715761327161333b565b500290565b6000828210156132885761328861333b565b500390565b60005b838110156132a8578181015183820152602001613290565b8381111561190c5750506000910152565b600181811c908216806132cd57607f821691505b602082108114156132ee57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b038111828210171561331957613319613351565b6040525050565b60006000198214156133345761333461333b565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561337c57600481823e5160e01c5b90565b600060443d101561338d5790565b6040516003193d81016004833e81513d6001600160401b0381602484011181841117156133bc57505050505090565b82850191508151818111156133d45750505050505090565b843d87010160208285010111156133ee5750505050505090565b6133fd602082860101876132f4565b509095945050505050565b6001600160a01b038116811461077057600080fd5b6001600160e01b03198116811461077057600080fdfea2646970667358221220b1e9b8a132441e1ae7d7a3e89dfc05a61721c886a58ac5263a35e75b66d1fc0864736f6c63430008040033
Deployed Bytecode Sourcemap
212:5964:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2122:231:5;;;;;;;;;;-1:-1:-1;2122:231:5;;;;;:::i;:::-;;:::i;:::-;;;29585:25:18;;;29573:2;29558:18;2122:231:5;;;;;;;;1145:310;;;;;;;;;;-1:-1:-1;1145:310:5;;;;;:::i;:::-;;:::i;:::-;;;16989:14:18;;16982:22;16964:41;;16952:2;16937:18;1145:310:5;16919:92:18;548:93:0;;;;;;;;;;-1:-1:-1;548:93:0;;;;;:::i;:::-;;:::i;:::-;;653:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;992:786:2:-;;;;;;;;;;-1:-1:-1;992:786:2;;;;;:::i;:::-;;:::i;2639:1386::-;;;;;;:::i;:::-;;:::i;5939:230::-;;;;;;;;;;-1:-1:-1;5939:230:2;;;;;:::i;:::-;;:::i;5309:147::-;;;;;;;;;;-1:-1:-1;5309:147:2;;;;;:::i;:::-;;:::i;4217:442:5:-;;;;;;;;;;-1:-1:-1;4217:442:5;;;;;:::i;:::-;;:::i;469:67:0:-;;;;;;;;;;;;;:::i;5618:156:2:-;;;;;;;;;;-1:-1:-1;5618:156:2;;;;;:::i;:::-;5699:7;5726:11;;;:5;:11;;;;;;;;-1:-1:-1;;;;;5726:40:2;;;;:28;;:40;;;;;;5618:156;;;;;4031:1125;;;;;;:::i;:::-;;:::i;2519:524:5:-;;;;;;;;;;-1:-1:-1;2519:524:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;834:122:8:-;;;;;;;;;;-1:-1:-1;834:122:8;;;;;:::i;:::-;891:4;712:16;;;:12;:16;;;;;;-1:-1:-1;;;834:122:8;1072:86:16;;;;;;;;;;-1:-1:-1;1143:7:16;;;;1072:86;;654:353:6;;;;;;;;;;-1:-1:-1;654:353:6;;;;;:::i;:::-;;:::i;1650:94:15:-;;;;;;;;;;;;;:::i;398:63:0:-;;;;;;;;;;;;;:::i;5780:150:2:-;;;;;;;;;;-1:-1:-1;5780:150:2;;;;;:::i;:::-;5858:7;5885:11;;;:5;:11;;;;;;;;-1:-1:-1;;;;;5885:37:2;;;;:25;;:37;;;;;;5780:150;;;;;999:87:15;;;;;;;;;;-1:-1:-1;1072:6:15;;999:87;;-1:-1:-1;;;;;1072:6:15;;;14630:51:18;;14618:2;14603:18;999:87:15;14585:102:18;744:87:0;;;;;;;;;;;;;:::i;3116:311:5:-;;;;;;;;;;-1:-1:-1;3116:311:5;;;;;:::i;:::-;;:::i;1784:849:2:-;;;;;;;;;;-1:-1:-1;1784:849:2;;;;;:::i;:::-;;:::i;5465:147::-;;;;;;;;;;-1:-1:-1;5465:147:2;;;;;:::i;:::-;;:::i;623:113:8:-;;;;;;;;;;-1:-1:-1;623:113:8;;;;;:::i;:::-;685:7;712:16;;;:12;:16;;;;;;;623:113;5162:141:2;;;;;;;;;;-1:-1:-1;5162:141:2;;;;;:::i;:::-;;:::i;395:37::-;;;;;;;;;;-1:-1:-1;395:37:2;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;:::i;3499:168:5:-;;;;;;;;;;-1:-1:-1;3499:168:5;;;;;:::i;:::-;-1:-1:-1;;;;;3622:27:5;;;3598:4;3622:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;3499:168;3739:401;;;;;;;;;;-1:-1:-1;3739:401:5;;;;;:::i;:::-;;:::i;1899:192:15:-;;;;;;;;;;-1:-1:-1;1899:192:15;;;;;:::i;:::-;;:::i;325:321:6:-;;;;;;;;;;-1:-1:-1;325:321:6;;;;;:::i;:::-;;:::i;2122:231:5:-;2208:7;-1:-1:-1;;;;;2236:21:5;;2228:77;;;;-1:-1:-1;;;2228:77:5;;20312:2:18;2228:77:5;;;20294:21:18;20351:2;20331:18;;;20324:30;20390:34;20370:18;;;20363:62;-1:-1:-1;;;20441:18:18;;;20434:41;20492:19;;2228:77:5;;;;;;;;;-1:-1:-1;2323:9:5;:13;;;;;;;;;;;-1:-1:-1;;;;;2323:22:5;;;;;;;;;;;;2122:231::o;1145:310::-;1247:4;-1:-1:-1;;;;;;1284:41:5;;-1:-1:-1;;;1284:41:5;;:110;;-1:-1:-1;;;;;;;1342:52:5;;-1:-1:-1;;;1342:52:5;1284:110;:163;;;-1:-1:-1;;;;;;;;;;896:40:9;;;1411:36:5;1264:183;1145:310;-1:-1:-1;;1145:310:5:o;548:93:0:-;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:3;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;617:16:0::1;625:7;617;:16::i;:::-;548:93:::0;:::o;653:83::-;690:13;723:5;716:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;653:83;:::o;992:786:2:-;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:3;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;1279:17:2::1;1299:5;:28;1305:21;:11;885:14:4::0;;793:114;1305:21:2::1;1299:28:::0;;::::1;::::0;;::::1;::::0;;;;;;-1:-1:-1;1299:28:2;1338:29;;;1378:16:::1;::::0;::::1;:31:::0;;;1420:14:::1;::::0;::::1;:27:::0;;;1452:17:::1;::::0;::::1;:33:::0;;;1490:21:::1;::::0;::::1;:41:::0;;;1536:18:::1;::::0;::::1;:35:::0;;;1576:28:::1;::::0;::::1;:55:::0;;;1636:41;;1299:28;;-1:-1:-1;1636:41:2::1;::::0;:21:::1;::::0;::::1;::::0;:41;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;1682:18:2::1;::::0;;::::1;:26:::0;;-1:-1:-1;;1713:23:2;;;1004:19:4;;-1:-1:-1;1004:19:4;;;-1:-1:-1;;;;;;;;992:786:2:o;2639:1386::-;2782:28;;-1:-1:-1;;2799:10:2;12803:2:18;12799:15;12795:53;2782:28:2;;;12783:66:18;2757:12:2;;12865::18;;2782:28:2;;;;;;;;;;;;2772:39;;;;;;2757:54;;2832:8;1143:7:16;;;;;1072:86;2832:8:2;2831:9;2816:58;;;;-1:-1:-1;;;2816:58:2;;22359:2:18;2816:58:2;;;22341:21:18;22398:2;22378:18;;;22371:30;-1:-1:-1;;;22417:18:18;;;22410:48;22475:18;;2816:58:2;22331:168:18;2816:58:2;2898:17;;;;:5;:17;;;;;:29;;;2885:80;;;;-1:-1:-1;;;2885:80:2;;22706:2:18;2885:80:2;;;22688:21:18;22745:2;22725:18;;;22718:30;-1:-1:-1;;;22764:18:18;;;22757:49;22823:18;;2885:80:2;22678:169:18;2885:80:2;2983:17;;;;:5;:17;;;;;:31;;;;;2970:80;;;;-1:-1:-1;;;2970:80:2;;23401:2:18;2970:80:2;;;23383:21:18;23440:2;23420:18;;;23413:30;-1:-1:-1;;;23459:18:18;;;23452:52;23521:18;;2970:80:2;23373:172:18;2970:80:2;3098:17;;;;:5;:17;;;;;:30;;;3087:42;;:6;;:10;:42::i;:::-;3074:9;:55;;3061:103;;;;-1:-1:-1;;;3061:103:2;;29291:2:18;3061:103:2;;;29273:21:18;29330:2;29310:18;;;29303:30;-1:-1:-1;;;29349:18:18;;;29342:51;29410:18;;3061:103:2;29263:171:18;3061:103:2;3227:17;;;;:5;:17;;;;;:29;;;;3182;;;;;:41;;3216:6;3182:33;:41::i;:::-;:74;;3169:127;;;;-1:-1:-1;;;3169:127:2;;19957:2:18;3169:127:2;;;19939:21:18;19996:2;19976:18;;;19969:30;20035:28;20015:18;;;20008:56;20081:18;;3169:127:2;19929:176:18;3169:127:2;3382:17;;;;:5;:17;;;;;;;;:34;;;;3355:10;3320:46;;:34;;;;:46;;;;;;;:58;;3371:6;3320:50;:58::i;:::-;:96;;3307:156;;;;-1:-1:-1;;;3307:156:2;;;;;;;:::i;:::-;3491:17;;;;:5;:17;;;;;:41;;;3481:51;;;3468:115;;;;-1:-1:-1;;;3468:115:2;;;;;;;:::i;:::-;3607:67;3626:11;;3607:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3639:17:2;;;:5;:17;;;;;:28;;-1:-1:-1;3669:4:2;;-1:-1:-1;3607:18:2;;-1:-1:-1;3607:67:2:i;:::-;3594:127;;;;-1:-1:-1;;;3594:127:2;;24097:2:18;3594:127:2;;;24079:21:18;24136:2;24116:18;;;24109:30;24175:34;24155:18;;;24148:62;-1:-1:-1;;;24226:18:18;;;24219:31;24267:19;;3594:127:2;24069:223:18;3594:127:2;3785:17;;;;:5;:17;;;;;;;;3820:10;3785:46;;:34;;:46;;;;;;:58;;3836:6;3785:50;:58::i;:::-;3736:17;;;;:5;:17;;;;;;;;3771:10;3736:46;;:34;;;:46;;;;;:107;;;;3880:17;;;;;;:29;;;:41;;3914:6;3880:33;:41::i;:::-;3848:5;:17;3854:10;3848:17;;;;;;;;;;;:29;;:73;;;;3936:41;3942:10;3954;3966:6;3936:41;;;;;;;;;;;;:5;:41::i;:::-;3993:24;;29585:25:18;;;3998:10:2;;3993:24;;29573:2:18;29558:18;3993:24:2;;;;;;;2639:1386;;;;;:::o;5939:230::-;6047:1;712:16:8;;;:12;:16;;;;;;5995:13:2;;-1:-1:-1;6020:55:2;;;;-1:-1:-1;;;6020:55:2;;26500:2:18;6020:55:2;;;26482:21:18;26539:2;26519:18;;;26512:30;-1:-1:-1;;;26558:18:18;;;26551:52;26620:18;;6020:55:2;26472:172:18;6020:55:2;6116:14;6126:3;6116:9;:14::i;:::-;6132:5;:10;6138:3;6132:10;;;;;;;;;;;:27;;6099:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6085:76;;5939:230;;;:::o;5309:147::-;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:3;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;5407:17:2::1;::::0;;;:5:::1;:17;::::0;;;;;:31:::1;;:41:::0;;-1:-1:-1;;5407:41:2::1;::::0;::::1;;::::0;;;::::1;::::0;;5309:147::o;4217:442:5:-;-1:-1:-1;;;;;4450:20:5;;681:10:3;4450:20:5;;:60;;-1:-1:-1;4474:36:5;4491:4;681:10:3;3499:168:5;:::i;4474:36::-;4428:160;;;;-1:-1:-1;;;4428:160:5;;24905:2:18;4428:160:5;;;24887:21:18;24944:2;24924:18;;;24917:30;24983:34;24963:18;;;24956:62;-1:-1:-1;;;25034:18:18;;;25027:48;25092:19;;4428:160:5;24877:240:18;4428:160:5;4599:52;4622:4;4628:2;4632:3;4637:7;4646:4;4599:22;:52::i;:::-;4217:442;;;;;:::o;469:67:0:-;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:3;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;518:10:0::1;:8;:10::i;:::-;469:67::o:0;4031:1125:2:-;1143:7:16;;;;4122:9:2;4107:58;;;;-1:-1:-1;;;4107:58:2;;22359:2:18;4107:58:2;;;22341:21:18;22398:2;22378:18;;;22371:30;-1:-1:-1;;;22417:18:18;;;22410:48;22475:18;;4107:58:2;22331:168:18;4107:58:2;4189:17;;;;:5;:17;;;;;:29;;;4176:80;;;;-1:-1:-1;;;4176:80:2;;22706:2:18;4176:80:2;;;22688:21:18;22745:2;22725:18;;;22718:30;-1:-1:-1;;;22764:18:18;;;22757:49;22823:18;;4176:80:2;22678:169:18;4176:80:2;4274:17;;;;:5;:17;;;;;:28;;;;;;;;4261:73;;;;-1:-1:-1;;;4261:73:2;;23054:2:18;4261:73:2;;;23036:21:18;23093:2;23073:18;;;23066:30;-1:-1:-1;;;23112:18:18;;;23105:48;23170:18;;4261:73:2;23026:168:18;4261:73:2;4382:17;;;;:5;:17;;;;;:27;;;4371:39;;:6;;:10;:39::i;:::-;4358:9;:52;;4345:100;;;;-1:-1:-1;;;4345:100:2;;29291:2:18;4345:100:2;;;29273:21:18;29330:2;29310:18;;;29303:30;-1:-1:-1;;;29349:18:18;;;29342:51;29410:18;;4345:100:2;29263:171:18;4345:100:2;4508:17;;;;:5;:17;;;;;:29;;;;4463;;;;;:41;;4497:6;4463:33;:41::i;:::-;:74;;4450:127;;;;-1:-1:-1;;;4450:127:2;;19957:2:18;4450:127:2;;;19939:21:18;19996:2;19976:18;;;19969:30;20035:28;20015:18;;;20008:56;20081:18;;4450:127:2;19929:176:18;4450:127:2;4660:17;;;;:5;:17;;;;;;;;:31;;;;4633:10;4601:43;;:31;;;;:43;;;;;;;:55;;4649:6;4601:47;:55::i;:::-;:90;;4588:150;;;;-1:-1:-1;;;4588:150:2;;;;;;;:::i;:::-;4766:17;;;;:5;:17;;;;;:41;;;4756:51;;;4743:115;;;;-1:-1:-1;;;4743:115:2;;;;;;;:::i;:::-;4919:17;;;;:5;:17;;;;;;;;4951:10;4919:43;;:31;;:43;;;;;;:55;;4967:6;4919:47;:55::i;:::-;4873:17;;;;:5;:17;;;;;;;;4905:10;4873:43;;:31;;;:43;;;;;:101;;;;5011:17;;;;;;:29;;;:41;;5045:6;5011:33;:41::i;:::-;4979:5;:17;4985:10;4979:17;;;;;;;;;;;:29;;:73;;;;5067:41;5073:10;5085;5097:6;5067:41;;;;;;;;;;;;:5;:41::i;:::-;5124:24;;29585:25:18;;;5129:10:2;;5124:24;;29573:2:18;29558:18;5124:24:2;;;;;;;4031:1125;;:::o;2519:524:5:-;2675:16;2736:3;:10;2717:8;:15;:29;2709:83;;;;-1:-1:-1;;;2709:83:5;;27663:2:18;2709:83:5;;;27645:21:18;27702:2;27682:18;;;27675:30;27741:34;27721:18;;;27714:62;-1:-1:-1;;;27792:18:18;;;27785:39;27841:19;;2709:83:5;27635:231:18;2709:83:5;2805:30;2852:8;:15;-1:-1:-1;;;;;2838:30:5;;;;;-1:-1:-1;;;2838:30:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2838:30:5;;2805:63;;2886:9;2881:122;2905:8;:15;2901:1;:19;2881:122;;;2961:30;2971:8;2980:1;2971:11;;;;;;-1:-1:-1;;;2971:11:5;;;;;;;;;;;;;;;2984:3;2988:1;2984:6;;;;;;-1:-1:-1;;;2984:6:5;;;;;;;;;;;;;;;2961:9;:30::i;:::-;2942:13;2956:1;2942:16;;;;;;-1:-1:-1;;;2942:16:5;;;;;;;;;;;;;;;;;;:49;2922:3;;;:::i;:::-;;;2881:122;;;-1:-1:-1;3022:13:5;2519:524;-1:-1:-1;;;2519:524:5:o;654:353:6:-;-1:-1:-1;;;;;819:23:6;;681:10:3;819:23:6;;:66;;-1:-1:-1;846:39:6;863:7;681:10:3;3499:168:5;:::i;846:39:6:-;797:157;;;;-1:-1:-1;;;797:157:6;;;;;;;:::i;:::-;967:32;978:7;987:3;992:6;967:10;:32::i;:::-;654:353;;;:::o;1650:94:15:-;1072:6;;-1:-1:-1;;;;;1072:6:15;681:10:3;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;398:63:0:-:0;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:3;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;445:8:0::1;:6;:8::i;744:87::-:0;783:13;816:7;809:14;;;;;:::i;3116:311:5:-;681:10:3;-1:-1:-1;;;;;3219:24:5;;;;3211:78;;;;-1:-1:-1;;;3211:78:5;;27253:2:18;3211:78:5;;;27235:21:18;27292:2;27272:18;;;27265:30;27331:34;27311:18;;;27304:62;-1:-1:-1;;;27382:18:18;;;27375:39;27431:19;;3211:78:5;27225:231:18;3211:78:5;681:10:3;3302:32:5;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;3302:42:5;;;;;;;;;;;;:53;;-1:-1:-1;;3302:53:5;;;;;;;;;;3371:48;;16964:41:18;;;3302:42:5;;681:10:3;3371:48:5;;16937:18:18;3371:48:5;;;;;;;3116:311;;:::o;1784:849:2:-;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:3;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;2121:17:2::1;::::0;;;:5:::1;:17;::::0;;;;:29:::1;;::::0;2105:45;::::1;;2097:80;;;::::0;-1:-1:-1;;;2097:80:2;;18848:2:18;2097:80:2::1;::::0;::::1;18830:21:18::0;18887:2;18867:18;;;18860:30;-1:-1:-1;;;18906:18:18;;;18899:52;18968:18;;2097:80:2::1;18820:172:18::0;2097:80:2::1;2182:17;::::0;;;:5:::1;:17;::::0;;;;;;;:42;;;2235:29:::1;::::0;::::1;:44:::0;;;2290:27:::1;::::0;::::1;:40:::0;;;2335:30:::1;::::0;::::1;:46:::0;;;2386:34:::1;::::0;::::1;:54:::0;;;2445:31:::1;::::0;::::1;:48:::0;;;2498:41:::1;::::0;::::1;:68:::0;;;2571:54;;::::1;::::0;:34;;;::::1;::::0;:54;;::::1;::::0;::::1;:::i;:::-;;1784:849:::0;;;;;;;;;:::o;5465:147::-;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:3;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;5583:21:2::1;::::0;5551::::1;::::0;-1:-1:-1;;;;;5583:12:2;::::1;::::0;:21;::::1;;;::::0;5551;;5533:15:::1;5583:21:::0;5533:15;5583:21;5551;5583:12;:21;::::1;;;;;;;;;;;;;::::0;::::1;;;;5162:141:::0;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:3;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;5257:17:2::1;::::0;;;:5:::1;:17;::::0;;;;;:28:::1;;:38:::0;;;::::1;;;;-1:-1:-1::0;;5257:38:2;;::::1;::::0;;;::::1;::::0;;5162:141::o;395:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3739:401:5:-;-1:-1:-1;;;;;3947:20:5;;681:10:3;3947:20:5;;:60;;-1:-1:-1;3971:36:5;3988:4;681:10:3;3499:168:5;:::i;3971:36::-;3925:151;;;;-1:-1:-1;;;3925:151:5;;;;;;;:::i;:::-;4087:45;4105:4;4111:2;4115;4119:6;4127:4;4087:17;:45::i;1899:192:15:-;1072:6;;-1:-1:-1;;;;;1072:6:15;681:10:3;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:15;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:15;;20724:2:18;1980:73:15::1;::::0;::::1;20706:21:18::0;20763:2;20743:18;;;20736:30;20802:34;20782:18;;;20775:62;-1:-1:-1;;;20853:18:18;;;20846:36;20899:19;;1980:73:15::1;20696:228:18::0;1980:73:15::1;2064:19;2074:8;2064:9;:19::i;325:321:6:-:0;-1:-1:-1;;;;;465:23:6;;681:10:3;465:23:6;;:66;;-1:-1:-1;492:39:6;509:7;681:10:3;3499:168:5;:::i;492:39:6:-;443:157;;;;-1:-1:-1;;;443:157:6;;;;;;;:::i;:::-;613:25;619:7;628:2;632:5;613;:25::i;8219:88:5:-;8286:13;;;;:4;;:13;;;;;:::i;:::-;;8219:88;:::o;3501:98:17:-;3559:7;3586:5;3590:1;3586;:5;:::i;:::-;3579:12;3501:98;-1:-1:-1;;;3501:98:17:o;2763:::-;2821:7;2848:5;2852:1;2848;:5;:::i;797:830:14:-;922:4;962;922;979:525;1003:5;:12;999:1;:16;979:525;;;1037:20;1060:5;1066:1;1060:8;;;;;;-1:-1:-1;;;1060:8:14;;;;;;;;;;;;;;;1037:31;;1105:12;1089;:28;1085:408;;1242:44;;;;;;13045:19:18;;;13080:12;;;13073:28;;;13117:12;;1242:44:14;;;;;;;;;;;;1232:55;;;;;;1217:70;;1085:408;;;1432:44;;;;;;13045:19:18;;;13080:12;;;13073:28;;;13117:12;;1432:44:14;;;;;;;;;;;;1422:55;;;;;;1407:70;;1085:408;-1:-1:-1;1017:3:14;;;;:::i;:::-;;;;979:525;;;-1:-1:-1;1599:20:14;;;;797:830;-1:-1:-1;;;797:830:14:o;849:229:0:-;1032:38;1044:7;1053:2;1057:6;1065:4;1032:11;:38::i;:::-;849:229;;;;:::o;1866:105:5:-;1926:13;1959:4;1952:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1866:105;;;:::o;6301:1074::-;6528:7;:14;6514:3;:10;:28;6506:81;;;;-1:-1:-1;;;6506:81:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;6606:16:5;;6598:66;;;;-1:-1:-1;;;6598:66:5;;;;;;;:::i;:::-;681:10:3;6721:60:5;681:10:3;6752:4:5;6758:2;6762:3;6767:7;6776:4;6721:20;:60::i;:::-;6799:9;6794:421;6818:3;:10;6814:1;:14;6794:421;;;6850:10;6863:3;6867:1;6863:6;;;;;;-1:-1:-1;;;6863:6:5;;;;;;;;;;;;;;;6850:19;;6884:14;6901:7;6909:1;6901:10;;;;;;-1:-1:-1;;;6901:10:5;;;;;;;;;;;;;;;;;;;;6928:19;6950:13;;;;;;;;;;-1:-1:-1;;;;;6950:19:5;;;;;;;;;;;;6901:10;;-1:-1:-1;6992:21:5;;;;6984:76;;;;-1:-1:-1;;;6984:76:5;;;;;;;:::i;:::-;7104:9;:13;;;;;;;;;;;-1:-1:-1;;;;;7104:19:5;;;;;;;;;;7126:20;;;7104:42;;7176:17;;;;;;;:27;;7126:20;;7104:9;7176:27;;7126:20;;7176:27;:::i;:::-;;;;;;;;6794:421;;;6830:3;;;;:::i;:::-;;;6794:421;;;;7262:2;-1:-1:-1;;;;;7232:47:5;7256:4;-1:-1:-1;;;;;7232:47:5;7246:8;-1:-1:-1;;;;;7232:47:5;;7266:3;7271:7;7232:47;;;;;;;:::i;:::-;;;;;;;;7292:75;7328:8;7338:4;7344:2;7348:3;7353:7;7362:4;7292:35;:75::i;:::-;6301:1074;;;;;;:::o;2131:120:16:-;1143:7;;;;1667:41;;;;-1:-1:-1;;;1667:41:16;;19608:2:18;1667:41:16;;;19590:21:18;19647:2;19627:18;;;19620:30;-1:-1:-1;;;19666:18:18;;;19659:50;19726:18;;1667:41:16;19580:170:18;1667:41:16;2190:7:::1;:15:::0;;-1:-1:-1;;2190:15:16::1;::::0;;2221:22:::1;681:10:3::0;2230:12:16::1;2221:22;::::0;-1:-1:-1;;;;;14648:32:18;;;14630:51;;14618:2;14603:18;2221:22:16::1;;;;;;;2131:120::o:0;1548:227:0:-;1728:39;1745:7;1754:3;1759:7;1728:16;:39::i;2099:173:15:-;2174:6;;;-1:-1:-1;;;;;2191:17:15;;;-1:-1:-1;;;;;;2191:17:15;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2099:173;;:::o;1872:118:16:-;1143:7;;;;1397:9;1389:38;;;;-1:-1:-1;;;1389:38:16;;23752:2:18;1389:38:16;;;23734:21:18;23791:2;23771:18;;;23764:30;-1:-1:-1;;;23810:18:18;;;23803:46;23866:18;;1389:38:16;23724:166:18;1389:38:16;1932:7:::1;:14:::0;;-1:-1:-1;;1932:14:16::1;1942:4;1932:14;::::0;;1962:20:::1;1969:12;681:10:3::0;;601:98;5123:820:5;-1:-1:-1;;;;;5311:16:5;;5303:66;;;;-1:-1:-1;;;5303:66:5;;;;;;;:::i;:::-;681:10:3;5426:96:5;681:10:3;5457:4:5;5463:2;5467:21;5485:2;5467:17;:21::i;:::-;5490:25;5508:6;5490:17;:25::i;:::-;5517:4;5426:20;:96::i;:::-;5535:19;5557:13;;;;;;;;;;;-1:-1:-1;;;;;5557:19:5;;;;;;;;;;5595:21;;;;5587:76;;;;-1:-1:-1;;;5587:76:5;;;;;;;:::i;:::-;5699:9;:13;;;;;;;;;;;-1:-1:-1;;;;;5699:19:5;;;;;;;;;;5721:20;;;5699:42;;5763:17;;;;;;;:27;;5721:20;;5699:9;5763:27;;5721:20;;5763:27;:::i;:::-;;;;-1:-1:-1;;5808:46:5;;;29795:25:18;;;29851:2;29836:18;;29829:34;;;-1:-1:-1;;;;;5808:46:5;;;;;;;;;;;;;;29768:18:18;5808:46:5;;;;;;;5867:68;5898:8;5908:4;5914:2;5918;5922:6;5930:4;5867:30;:68::i;:::-;5123:820;;;;;;;:::o;1345:195:0:-;1500:32;1512:7;1521:2;1525:6;1500:11;:32::i;1016:242:8:-;1175:38;1187:7;1196:2;1200:6;1208:4;1175:11;:38::i;:::-;1224:16;;;;:12;:16;;;;;:26;;1244:6;;1224:16;:26;;1244:6;;1224:26;:::i;:::-;;;;-1:-1:-1;;;;;;1016:242:8:o;1785:339:0:-;2050:66;2077:8;2087:4;2093:2;2097:3;2102:7;2111:4;2050:26;:66::i;14394:817:5:-;-1:-1:-1;;;;;14634:13:5;;1066:20:1;1114:8;14630:574:5;;14670:79;;-1:-1:-1;;;14670:79:5;;-1:-1:-1;;;;;14670:43:5;;;;;:79;;14714:8;;14724:4;;14730:3;;14735:7;;14744:4;;14670:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14670:79:5;;;;;;;;-1:-1:-1;;14670:79:5;;;;;;;;;;;;:::i;:::-;;;14666:527;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;15066:6;15059:14;;-1:-1:-1;;;15059:14:5;;;;;;;;:::i;14666:527::-;;;15115:62;;-1:-1:-1;;;15115:62:5;;18427:2:18;15115:62:5;;;18409:21:18;18466:2;18446:18;;;18439:30;18505:34;18485:18;;;18478:62;-1:-1:-1;;;18556:18:18;;;18549:50;18616:19;;15115:62:5;18399:242:18;14666:527:5;-1:-1:-1;;;;;;14831:64:5;;-1:-1:-1;;;14831:64:5;14827:163;;14920:50;;-1:-1:-1;;;14920:50:5;;;;;;;:::i;1995:315:8:-;2151:39;2168:7;2177:3;2182:7;2151:16;:39::i;:::-;2206:9;2201:102;2225:3;:10;2221:1;:14;2201:102;;;2281:7;2289:1;2281:10;;;;;;-1:-1:-1;;;2281:10:8;;;;;;;;;;;;;;;2257:12;:20;2270:3;2274:1;2270:6;;;;;;-1:-1:-1;;;2270:6:8;;;;;;;;;;;;;;;2257:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;2237:3:8;;-1:-1:-1;2237:3:8;;:::i;:::-;;;2201:102;;15219:198:5;15339:16;;;15353:1;15339:16;;;;;;;;;15285;;15314:22;;15339:16;;;;;;;;;;;;-1:-1:-1;15339:16:5;15314:41;;15377:7;15366:5;15372:1;15366:8;;;;;;-1:-1:-1;;;15366:8:5;;;;;;;;;;;;;;;;;;:18;15404:5;15219:198;-1:-1:-1;;15219:198:5:o;13638:748::-;-1:-1:-1;;;;;13853:13:5;;1066:20:1;1114:8;13849:530:5;;13889:72;;-1:-1:-1;;;13889:72:5;;-1:-1:-1;;;;;13889:38:5;;;;;:72;;13928:8;;13938:4;;13944:2;;13948:6;;13956:4;;13889:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13889:72:5;;;;;;;;-1:-1:-1;;13889:72:5;;;;;;;;;;;;:::i;:::-;;;13885:483;;;;:::i;:::-;-1:-1:-1;;;;;;14011:59:5;;-1:-1:-1;;;14011:59:5;14007:158;;14095:50;;-1:-1:-1;;;14095:50:5;;;;;;;:::i;1722:208:8:-;1853:32;1865:7;1874:2;1878:6;1853:11;:32::i;:::-;1896:16;;;;:12;:16;;;;;:26;;1916:6;;1896:16;:26;;1916:6;;1896:26;:::i;:::-;;;;-1:-1:-1;;;;;1722:208:8:o;8708:599:5:-;-1:-1:-1;;;;;8866:21:5;;8858:67;;;;-1:-1:-1;;;8858:67:5;;28889:2:18;8858:67:5;;;28871:21:18;28928:2;28908:18;;;28901:30;28967:34;28947:18;;;28940:62;-1:-1:-1;;;29018:18:18;;;29011:31;29059:19;;8858:67:5;28861:223:18;8858:67:5;681:10:3;8982:107:5;681:10:3;8938:16:5;9025:7;9034:21;9052:2;9034:17;:21::i;8982:107::-;9102:9;:13;;;;;;;;;;;-1:-1:-1;;;;;9102:22:5;;;;;;;;;:32;;9128:6;;9102:9;:32;;9128:6;;9102:32;:::i;:::-;;;;-1:-1:-1;;9150:57:5;;;29795:25:18;;;29851:2;29836:18;;29829:34;;;-1:-1:-1;;;;;9150:57:5;;;;9183:1;;9150:57;;;;;;29768:18:18;9150:57:5;;;;;;;9220:79;9251:8;9269:1;9273:7;9282:2;9286:6;9294:4;9220:30;:79::i;636:392:7:-;1143:7:16;;;;962:9:7;954:66;;;;-1:-1:-1;;;954:66:7;;21536:2:18;954:66:7;;;21518:21:18;21575:2;21555:18;;;21548:30;21614:34;21594:18;;;21587:62;-1:-1:-1;;;21665:18:18;;;21658:42;21717:19;;954:66:7;21508:234:18;11535:918:5;-1:-1:-1;;;;;11690:21:5;;11682:69;;;;-1:-1:-1;;;11682:69:5;;;;;;;:::i;:::-;11784:7;:14;11770:3;:10;:28;11762:81;;;;-1:-1:-1;;;11762:81:5;;;;;;;:::i;:::-;11856:16;681:10:3;11856:31:5;;11900:69;11921:8;11931:7;11948:1;11952:3;11957:7;11900:69;;;;;;;;;;;;:20;:69::i;:::-;11987:9;11982:388;12006:3;:10;12002:1;:14;11982:388;;;12038:10;12051:3;12055:1;12051:6;;;;;;-1:-1:-1;;;12051:6:5;;;;;;;;;;;;;;;12038:19;;12072:14;12089:7;12097:1;12089:10;;;;;;-1:-1:-1;;;12089:10:5;;;;;;;;;;;;;;;;;;;;12116:22;12141:13;;;;;;;;;;-1:-1:-1;;;;;12141:22:5;;;;;;;;;;;;12089:10;;-1:-1:-1;12186:24:5;;;;12178:73;;;;-1:-1:-1;;;12178:73:5;;;;;;;:::i;:::-;12295:9;:13;;;;;;;;;;;-1:-1:-1;;;;;12295:22:5;;;;;;;;;;12320:23;;12295:48;;12018:3;;;;:::i;:::-;;;;11982:388;;;;12428:1;-1:-1:-1;;;;;12387:58:5;12411:7;-1:-1:-1;;;;;12387:58:5;12401:8;-1:-1:-1;;;;;12387:58:5;;12432:3;12437:7;12387:58;;;;;;;:::i;:::-;;;;;;;;11535:918;;;;:::o;10657:675::-;-1:-1:-1;;;;;10787:21:5;;10779:69;;;;-1:-1:-1;;;10779:69:5;;;;;;;:::i;:::-;681:10:3;10905:105:5;681:10:3;10936:7:5;10861:16;10957:21;10975:2;10957:17;:21::i;:::-;10980:25;10998:6;10980:17;:25::i;:::-;10905:105;;;;;;;;;;;;:20;:105::i;:::-;11023:22;11048:13;;;;;;;;;;;-1:-1:-1;;;;;11048:22:5;;;;;;;;;;11089:24;;;;11081:73;;;;-1:-1:-1;;;11081:73:5;;;;;;;:::i;:::-;11190:9;:13;;;;;;;;;;;-1:-1:-1;;;;;11190:22:5;;;;;;;;;;;;11215:23;;;11190:48;;11267:57;;29795:25:18;;;29836:18;;;29829:34;;;11190:22:5;;11267:57;;;;;;29768:18:18;11267:57:5;;;;;;;10657:675;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:755:18;68:5;121:3;114:4;106:6;102:17;98:27;88:2;;143:5;136;129:20;88:2;183:6;170:20;209:4;232:43;272:2;232:43;:::i;:::-;304:2;298:9;316:31;344:2;336:6;316:31;:::i;:::-;382:18;;;416:15;;;;-1:-1:-1;451:15:18;;;501:1;497:10;;;485:23;;481:32;;478:41;-1:-1:-1;475:2:18;;;536:5;529;522:20;475:2;562:5;576:163;590:2;587:1;584:9;576:163;;;647:17;;635:30;;685:12;;;;717;;;;608:1;601:9;576:163;;;-1:-1:-1;757:6:18;;78:691;-1:-1:-1;;;;;;;78:691:18:o;774:160::-;839:20;;895:13;;888:21;878:32;;868:2;;924:1;921;914:12;868:2;820:114;;;:::o;939:575::-;981:5;1034:3;1027:4;1019:6;1015:17;1011:27;1001:2;;1056:5;1049;1042:20;1001:2;1096:6;1083:20;-1:-1:-1;;;;;1118:2:18;1115:26;1112:2;;;1144:18;;:::i;:::-;1193:2;1187:9;1205:67;1260:2;1241:13;;-1:-1:-1;;1237:27:18;1266:4;1233:38;1187:9;1205:67;:::i;:::-;1296:2;1288:6;1281:18;1342:3;1335:4;1330:2;1322:6;1318:15;1314:26;1311:35;1308:2;;;1363:5;1356;1349:20;1308:2;1431;1424:4;1416:6;1412:17;1405:4;1397:6;1393:17;1380:54;1454:15;;;1471:4;1450:26;1443:41;;;;1458:6;991:523;-1:-1:-1;;991:523:18:o;1519:257::-;1578:6;1631:2;1619:9;1610:7;1606:23;1602:32;1599:2;;;1652:6;1644;1637:22;1599:2;1696:9;1683:23;1715:31;1740:5;1715:31;:::i;2051:398::-;2119:6;2127;2180:2;2168:9;2159:7;2155:23;2151:32;2148:2;;;2201:6;2193;2186:22;2148:2;2245:9;2232:23;2264:31;2289:5;2264:31;:::i;:::-;2314:5;-1:-1:-1;2371:2:18;2356:18;;2343:32;2384:33;2343:32;2384:33;:::i;:::-;2436:7;2426:17;;;2138:311;;;;;:::o;2454:1111::-;2608:6;2616;2624;2632;2640;2693:3;2681:9;2672:7;2668:23;2664:33;2661:2;;;2715:6;2707;2700:22;2661:2;2759:9;2746:23;2778:31;2803:5;2778:31;:::i;:::-;2828:5;-1:-1:-1;2885:2:18;2870:18;;2857:32;2898:33;2857:32;2898:33;:::i;:::-;2950:7;-1:-1:-1;3008:2:18;2993:18;;2980:32;-1:-1:-1;;;;;3061:14:18;;;3058:2;;;3093:6;3085;3078:22;3058:2;3121:61;3174:7;3165:6;3154:9;3150:22;3121:61;:::i;:::-;3111:71;;3235:2;3224:9;3220:18;3207:32;3191:48;;3264:2;3254:8;3251:16;3248:2;;;3285:6;3277;3270:22;3248:2;3313:63;3368:7;3357:8;3346:9;3342:24;3313:63;:::i;:::-;3303:73;;3429:3;3418:9;3414:19;3401:33;3385:49;;3459:2;3449:8;3446:16;3443:2;;;3480:6;3472;3465:22;3443:2;;3508:51;3551:7;3540:8;3529:9;3525:24;3508:51;:::i;:::-;3498:61;;;2651:914;;;;;;;;:::o;3570:754::-;3674:6;3682;3690;3698;3706;3759:3;3747:9;3738:7;3734:23;3730:33;3727:2;;;3781:6;3773;3766:22;3727:2;3825:9;3812:23;3844:31;3869:5;3844:31;:::i;:::-;3894:5;-1:-1:-1;3951:2:18;3936:18;;3923:32;3964:33;3923:32;3964:33;:::i;:::-;4016:7;-1:-1:-1;4070:2:18;4055:18;;4042:32;;-1:-1:-1;4121:2:18;4106:18;;4093:32;;-1:-1:-1;4176:3:18;4161:19;;4148:33;-1:-1:-1;;;;;4193:30:18;;4190:2;;;4241:6;4233;4226:22;4190:2;4269:49;4310:7;4301:6;4290:9;4286:22;4269:49;:::i;4329:760::-;4456:6;4464;4472;4525:2;4513:9;4504:7;4500:23;4496:32;4493:2;;;4546:6;4538;4531:22;4493:2;4590:9;4577:23;4609:31;4634:5;4609:31;:::i;:::-;4659:5;-1:-1:-1;4715:2:18;4700:18;;4687:32;-1:-1:-1;;;;;4768:14:18;;;4765:2;;;4800:6;4792;4785:22;4765:2;4828:61;4881:7;4872:6;4861:9;4857:22;4828:61;:::i;:::-;4818:71;;4942:2;4931:9;4927:18;4914:32;4898:48;;4971:2;4961:8;4958:16;4955:2;;;4992:6;4984;4977:22;4955:2;;5020:63;5075:7;5064:8;5053:9;5049:24;5020:63;:::i;:::-;5010:73;;;4483:606;;;;;:::o;5094:325::-;5159:6;5167;5220:2;5208:9;5199:7;5195:23;5191:32;5188:2;;;5241:6;5233;5226:22;5188:2;5285:9;5272:23;5304:31;5329:5;5304:31;:::i;:::-;5354:5;-1:-1:-1;5378:35:18;5409:2;5394:18;;5378:35;:::i;:::-;5368:45;;5178:241;;;;;:::o;5424:325::-;5492:6;5500;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5574:6;5566;5559:22;5521:2;5618:9;5605:23;5637:31;5662:5;5637:31;:::i;:::-;5687:5;5739:2;5724:18;;;;5711:32;;-1:-1:-1;;;5511:238:18:o;5754:393::-;5831:6;5839;5847;5900:2;5888:9;5879:7;5875:23;5871:32;5868:2;;;5921:6;5913;5906:22;5868:2;5965:9;5952:23;5984:31;6009:5;5984:31;:::i;:::-;6034:5;6086:2;6071:18;;6058:32;;-1:-1:-1;6137:2:18;6122:18;;;6109:32;;5858:289;-1:-1:-1;;;5858:289:18:o;6152:1343::-;6270:6;6278;6331:2;6319:9;6310:7;6306:23;6302:32;6299:2;;;6352:6;6344;6337:22;6299:2;6397:9;6384:23;-1:-1:-1;;;;;6467:2:18;6459:6;6456:14;6453:2;;;6488:6;6480;6473:22;6453:2;6531:6;6520:9;6516:22;6506:32;;6576:7;6569:4;6565:2;6561:13;6557:27;6547:2;;6603:6;6595;6588:22;6547:2;6644;6631:16;6666:4;6689:43;6729:2;6689:43;:::i;:::-;6761:2;6755:9;6773:31;6801:2;6793:6;6773:31;:::i;:::-;6839:18;;;6873:15;;;;-1:-1:-1;6908:11:18;;;6950:1;6946:10;;;6938:19;;6934:28;;6931:41;-1:-1:-1;6928:2:18;;;6990:6;6982;6975:22;6928:2;7017:6;7008:15;;7032:238;7046:2;7043:1;7040:9;7032:238;;;7117:3;7104:17;7134:31;7159:5;7134:31;:::i;:::-;7178:18;;7064:1;7057:9;;;;;7216:12;;;;7248;;7032:238;;;-1:-1:-1;7289:6:18;-1:-1:-1;;7333:18:18;;7320:32;;-1:-1:-1;;7364:16:18;;;7361:2;;;7398:6;7390;7383:22;7361:2;;7426:63;7481:7;7470:8;7459:9;7455:24;7426:63;:::i;:::-;7416:73;;;6289:1206;;;;;:::o;7500:822::-;7632:6;7640;7648;7656;7664;7672;7680;7688;7741:3;7729:9;7720:7;7716:23;7712:33;7709:2;;;7763:6;7755;7748:22;7709:2;7804:9;7791:23;7781:33;;7861:2;7850:9;7846:18;7833:32;7823:42;;7912:2;7901:9;7897:18;7884:32;7874:42;;7963:2;7952:9;7948:18;7935:32;7925:42;;8014:3;8003:9;7999:19;7986:33;7976:43;;8066:3;8055:9;8051:19;8038:33;8028:43;;8118:3;8107:9;8103:19;8090:33;8080:43;;8174:3;8163:9;8159:19;8146:33;-1:-1:-1;;;;;8194:6:18;8191:30;8188:2;;;8239:6;8231;8224:22;8188:2;8267:49;8308:7;8299:6;8288:9;8284:22;8267:49;:::i;:::-;8257:59;;;7699:623;;;;;;;;;;;:::o;8327:891::-;8468:6;8476;8484;8492;8500;8508;8516;8524;8532;8585:3;8573:9;8564:7;8560:23;8556:33;8553:2;;;8607:6;8599;8592:22;8553:2;8648:9;8635:23;8625:33;;8705:2;8694:9;8690:18;8677:32;8667:42;;8756:2;8745:9;8741:18;8728:32;8718:42;;8807:2;8796:9;8792:18;8779:32;8769:42;;8858:3;8847:9;8843:19;8830:33;8820:43;;8910:3;8899:9;8895:19;8882:33;8872:43;;8962:3;8951:9;8947:19;8934:33;8924:43;;9018:3;9007:9;9003:19;8990:33;-1:-1:-1;;;;;9038:6:18;9035:30;9032:2;;;9083:6;9075;9068:22;9032:2;9111:49;9152:7;9143:6;9132:9;9128:22;9111:49;:::i;:::-;9101:59;;;9207:3;9196:9;9192:19;9179:33;9169:43;;8543:675;;;;;;;;;;;:::o;9223:255::-;9281:6;9334:2;9322:9;9313:7;9309:23;9305:32;9302:2;;;9355:6;9347;9340:22;9302:2;9399:9;9386:23;9418:30;9442:5;9418:30;:::i;9483:259::-;9552:6;9605:2;9593:9;9584:7;9580:23;9576:32;9573:2;;;9626:6;9618;9611:22;9573:2;9663:9;9657:16;9682:30;9706:5;9682:30;:::i;9747:341::-;9816:6;9869:2;9857:9;9848:7;9844:23;9840:32;9837:2;;;9890:6;9882;9875:22;9837:2;9935:9;9922:23;-1:-1:-1;;;;;9960:6:18;9957:30;9954:2;;;10005:6;9997;9990:22;9954:2;10033:49;10074:7;10065:6;10054:9;10050:22;10033:49;:::i;:::-;10023:59;9827:261;-1:-1:-1;;;;9827:261:18:o;10093:190::-;10152:6;10205:2;10193:9;10184:7;10180:23;10176:32;10173:2;;;10226:6;10218;10211:22;10173:2;-1:-1:-1;10254:23:18;;10163:120;-1:-1:-1;10163:120:18:o;10288:325::-;10356:6;10364;10417:2;10405:9;10396:7;10392:23;10388:32;10385:2;;;10438:6;10430;10423:22;10385:2;10479:9;10466:23;10456:33;;10539:2;10528:9;10524:18;10511:32;10552:31;10577:5;10552:31;:::i;10618:258::-;10683:6;10691;10744:2;10732:9;10723:7;10719:23;10715:32;10712:2;;;10765:6;10757;10750:22;10712:2;10806:9;10793:23;10783:33;;10835:35;10866:2;10855:9;10851:18;10835:35;:::i;10881:258::-;10949:6;10957;11010:2;10998:9;10989:7;10985:23;10981:32;10978:2;;;11031:6;11023;11016:22;10978:2;-1:-1:-1;;11059:23:18;;;11129:2;11114:18;;;11101:32;;-1:-1:-1;10968:171:18:o;11144:801::-;11248:6;11256;11264;11272;11325:2;11313:9;11304:7;11300:23;11296:32;11293:2;;;11346:6;11338;11331:22;11293:2;11387:9;11374:23;11364:33;;11444:2;11433:9;11429:18;11416:32;11406:42;;11499:2;11488:9;11484:18;11471:32;-1:-1:-1;;;;;11563:2:18;11555:6;11552:14;11549:2;;;11584:6;11576;11569:22;11549:2;11627:6;11616:9;11612:22;11602:32;;11672:7;11665:4;11661:2;11657:13;11653:27;11643:2;;11699:6;11691;11684:22;11643:2;11744;11731:16;11770:2;11762:6;11759:14;11756:2;;;11791:6;11783;11776:22;11756:2;11849:7;11844:2;11834:6;11831:1;11827:14;11823:2;11819:23;11815:32;11812:45;11809:2;;;11875:6;11867;11860:22;11809:2;11283:662;;;;-1:-1:-1;;11911:2:18;11903:11;;-1:-1:-1;;;11283:662:18:o;11950:437::-;12003:3;12041:5;12035:12;12068:6;12063:3;12056:19;12094:4;12123:2;12118:3;12114:12;12107:19;;12160:2;12153:5;12149:14;12181:3;12193:169;12207:6;12204:1;12201:13;12193:169;;;12268:13;;12256:26;;12302:12;;;;12337:15;;;;12229:1;12222:9;12193:169;;;-1:-1:-1;12378:3:18;;12011:376;-1:-1:-1;;;;;12011:376:18:o;12392:257::-;12433:3;12471:5;12465:12;12498:6;12493:3;12486:19;12514:63;12570:6;12563:4;12558:3;12554:14;12547:4;12540:5;12536:16;12514:63;:::i;:::-;12631:2;12610:15;-1:-1:-1;;12606:29:18;12597:39;;;;12638:4;12593:50;;12441:208;-1:-1:-1;;12441:208:18:o;13140:1339::-;13316:3;13354:6;13348:13;13380:4;13393:51;13437:6;13432:3;13427:2;13419:6;13415:15;13393:51;:::i;:::-;13531:13;;13466:16;;;;13502:3;;13591:1;13613:18;;;;13666;;;;13693:2;;13771:4;13761:8;13757:19;13745:31;;13693:2;13834;13824:8;13821:16;13801:18;13798:40;13795:2;;;-1:-1:-1;;;13861:33:18;;13917:4;13914:1;13907:15;13947:4;13868:3;13935:17;13795:2;13978:18;14005:110;;;;14129:1;14124:330;;;;13971:483;;14005:110;-1:-1:-1;;14040:24:18;;14026:39;;14085:20;;;;-1:-1:-1;14005:110:18;;14124:330;30109:4;30128:17;;;30178:4;30162:21;;14219:3;14235:169;14249:8;14246:1;14243:15;14235:169;;;14331:14;;14316:13;;;14309:37;14374:16;;;;14266:10;;14235:169;;;14239:3;;14435:8;14428:5;14424:20;14417:27;;13971:483;-1:-1:-1;14470:3:18;;13324:1155;-1:-1:-1;;;;;;;;;;13324:1155:18:o;14692:826::-;-1:-1:-1;;;;;15089:15:18;;;15071:34;;15141:15;;15136:2;15121:18;;15114:43;15051:3;15188:2;15173:18;;15166:31;;;15014:4;;15220:57;;15257:19;;15249:6;15220:57;:::i;:::-;15325:9;15317:6;15313:22;15308:2;15297:9;15293:18;15286:50;15359:44;15396:6;15388;15359:44;:::i;:::-;15345:58;;15452:9;15444:6;15440:22;15434:3;15423:9;15419:19;15412:51;15480:32;15505:6;15497;15480:32;:::i;:::-;15472:40;15023:495;-1:-1:-1;;;;;;;;15023:495:18:o;15523:560::-;-1:-1:-1;;;;;15820:15:18;;;15802:34;;15872:15;;15867:2;15852:18;;15845:43;15919:2;15904:18;;15897:34;;;15962:2;15947:18;;15940:34;;;15782:3;16005;15990:19;;15983:32;;;15745:4;;16032:45;;16057:19;;16049:6;16032:45;:::i;:::-;16024:53;15754:329;-1:-1:-1;;;;;;;15754:329:18:o;16088:261::-;16267:2;16256:9;16249:21;16230:4;16287:56;16339:2;16328:9;16324:18;16316:6;16287:56;:::i;16354:465::-;16611:2;16600:9;16593:21;16574:4;16637:56;16689:2;16678:9;16674:18;16666:6;16637:56;:::i;:::-;16741:9;16733:6;16729:22;16724:2;16713:9;16709:18;16702:50;16769:44;16806:6;16798;16769:44;:::i;:::-;16761:52;16583:236;-1:-1:-1;;;;;16583:236:18:o;17016:980::-;17397:4;17426:3;17456:6;17445:9;17438:25;17499:6;17494:2;17483:9;17479:18;17472:34;17542:6;17537:2;17526:9;17522:18;17515:34;17585:6;17580:2;17569:9;17565:18;17558:34;17629:6;17623:3;17612:9;17608:19;17601:35;17673:6;17667:3;17656:9;17652:19;17645:35;17717:6;17711:3;17700:9;17696:19;17689:35;17761:6;17755:3;17744:9;17740:19;17733:35;17819:6;17812:14;17805:22;17799:3;17788:9;17784:19;17777:51;17879:6;17872:14;17865:22;17859:3;17848:9;17844:19;17837:51;17925:2;17919:3;17908:9;17904:19;17897:31;17945:45;17986:2;17975:9;17971:18;17962:7;17945:45;:::i;:::-;17937:53;17406:590;-1:-1:-1;;;;;;;;;;;;;;17406:590:18:o;18001:219::-;18150:2;18139:9;18132:21;18113:4;18170:44;18210:2;18199:9;18195:18;18187:6;18170:44;:::i;18997:404::-;19199:2;19181:21;;;19238:2;19218:18;;;19211:30;19277:34;19272:2;19257:18;;19250:62;-1:-1:-1;;;19343:2:18;19328:18;;19321:38;19391:3;19376:19;;19171:230::o;20929:400::-;21131:2;21113:21;;;21170:2;21150:18;;;21143:30;21209:34;21204:2;21189:18;;21182:62;-1:-1:-1;;;21275:2:18;21260:18;;21253:34;21319:3;21304:19;;21103:226::o;21747:405::-;21949:2;21931:21;;;21988:2;21968:18;;;21961:30;22027:34;22022:2;22007:18;;22000:62;-1:-1:-1;;;22093:2:18;22078:18;;22071:39;22142:3;22127:19;;21921:231::o;24297:401::-;24499:2;24481:21;;;24538:2;24518:18;;;24511:30;24577:34;24572:2;24557:18;;24550:62;-1:-1:-1;;;24643:2:18;24628:18;;24621:35;24688:3;24673:19;;24471:227::o;25122:399::-;25324:2;25306:21;;;25363:2;25343:18;;;25336:30;25402:34;25397:2;25382:18;;25375:62;-1:-1:-1;;;25468:2:18;25453:18;;25446:33;25511:3;25496:19;;25296:225::o;25526:406::-;25728:2;25710:21;;;25767:2;25747:18;;;25740:30;25806:34;25801:2;25786:18;;25779:62;-1:-1:-1;;;25872:2:18;25857:18;;25850:40;25922:3;25907:19;;25700:232::o;25937:356::-;26139:2;26121:21;;;26158:18;;;26151:30;26217:34;26212:2;26197:18;;26190:62;26284:2;26269:18;;26111:182::o;26649:397::-;26851:2;26833:21;;;26890:2;26870:18;;;26863:30;26929:34;26924:2;26909:18;;26902:62;-1:-1:-1;;;26995:2:18;26980:18;;26973:31;27036:3;27021:19;;26823:223::o;27871:402::-;28073:2;28055:21;;;28112:2;28092:18;;;28085:30;28151:34;28146:2;28131:18;;28124:62;-1:-1:-1;;;28217:2:18;28202:18;;28195:36;28263:3;28248:19;;28045:228::o;28278:404::-;28480:2;28462:21;;;28519:2;28499:18;;;28492:30;28558:34;28553:2;28538:18;;28531:62;-1:-1:-1;;;28624:2:18;28609:18;;28602:38;28672:3;28657:19;;28452:230::o;29874:183::-;29934:4;-1:-1:-1;;;;;29959:6:18;29956:30;29953:2;;;29989:18;;:::i;:::-;-1:-1:-1;30034:1:18;30030:14;30046:4;30026:25;;29943:114::o;30194:128::-;30234:3;30265:1;30261:6;30258:1;30255:13;30252:2;;;30271:18;;:::i;:::-;-1:-1:-1;30307:9:18;;30242:80::o;30327:168::-;30367:7;30433:1;30429;30425:6;30421:14;30418:1;30415:21;30410:1;30403:9;30396:17;30392:45;30389:2;;;30440:18;;:::i;:::-;-1:-1:-1;30480:9:18;;30379:116::o;30500:125::-;30540:4;30568:1;30565;30562:8;30559:2;;;30573:18;;:::i;:::-;-1:-1:-1;30610:9:18;;30549:76::o;30630:258::-;30702:1;30712:113;30726:6;30723:1;30720:13;30712:113;;;30802:11;;;30796:18;30783:11;;;30776:39;30748:2;30741:10;30712:113;;;30843:6;30840:1;30837:13;30834:2;;;-1:-1:-1;;30878:1:18;30860:16;;30853:27;30683:205::o;30893:380::-;30972:1;30968:12;;;;31015;;;31036:2;;31090:4;31082:6;31078:17;31068:27;;31036:2;31143;31135:6;31132:14;31112:18;31109:38;31106:2;;;31189:10;31184:3;31180:20;31177:1;31170:31;31224:4;31221:1;31214:15;31252:4;31249:1;31242:15;31106:2;;30948:325;;;:::o;31278:249::-;31388:2;31369:13;;-1:-1:-1;;31365:27:18;31353:40;;-1:-1:-1;;;;;31408:34:18;;31444:22;;;31405:62;31402:2;;;31470:18;;:::i;:::-;31506:2;31499:22;-1:-1:-1;;31325:202:18:o;31532:135::-;31571:3;-1:-1:-1;;31592:17:18;;31589:2;;;31612:18;;:::i;:::-;-1:-1:-1;31659:1:18;31648:13;;31579:88::o;31672:127::-;31733:10;31728:3;31724:20;31721:1;31714:31;31764:4;31761:1;31754:15;31788:4;31785:1;31778:15;31804:127;31865:10;31860:3;31856:20;31853:1;31846:31;31896:4;31893:1;31886:15;31920:4;31917:1;31910:15;31936:185;31971:3;32013:1;31995:16;31992:23;31989:2;;;32063:1;32058:3;32053;32038:27;32094:10;32089:3;32085:20;31989:2;31979:142;:::o;32126:671::-;32165:3;32207:4;32189:16;32186:26;32183:2;;;32173:624;:::o;32183:2::-;32249;32243:9;-1:-1:-1;;32314:16:18;32310:25;;32307:1;32243:9;32286:50;32365:4;32359:11;32389:16;-1:-1:-1;;;;;32495:2:18;32488:4;32480:6;32476:17;32473:25;32468:2;32460:6;32457:14;32454:45;32451:2;;;32502:5;;;;;32173:624;:::o;32451:2::-;32539:6;32533:4;32529:17;32518:28;;32575:3;32569:10;32602:2;32594:6;32591:14;32588:2;;;32608:5;;;;;;32173:624;:::o;32588:2::-;32692;32673:16;32667:4;32663:27;32659:36;32652:4;32643:6;32638:3;32634:16;32630:27;32627:69;32624:2;;;32699:5;;;;;;32173:624;:::o;32624:2::-;32715:57;32766:4;32757:6;32749;32745:19;32741:30;32735:4;32715:57;:::i;:::-;-1:-1:-1;32788:3:18;;32173:624;-1:-1:-1;;;;;32173:624:18:o;32802:131::-;-1:-1:-1;;;;;32877:31:18;;32867:42;;32857:2;;32923:1;32920;32913:12;32938:131;-1:-1:-1;;;;;;33012:32:18;;33002:43;;32992:2;;33059:1;33056;33049:12
Swarm Source
ipfs://b1e9b8a132441e1ae7d7a3e89dfc05a61721c886a58ac5263a35e75b66d1fc08
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.