ERC-1155
Overview
Max Total Supply
3,393 JVL
Holders
55
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:
JevelsERC1155
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.5.11 <0.9.0; import "./ERC1155Tradable.sol"; contract JevelsERC1155 is ERC1155Tradable { string private _contractURI = "https://jevels.com/contract-uri"; constructor(address[] memory _proxyRegistries) ERC1155Tradable( "Jevels", "JVL", _proxyRegistries ) {} function contractURI() public view returns (string memory) { return _contractURI; } function setContractURI(string calldata contractURI_) public returns (bool) { _contractURI = contractURI_; return true; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity >=0.5.11 <0.9.0; library Strings { // via https://github.com/oraclize/ethereum-api/blob/master/oraclizeAPI_0.5.sol function strConcat(string memory _a, string memory _b, string memory _c, string memory _d, string memory _e) internal pure returns (string memory) { bytes memory _ba = bytes(_a); bytes memory _bb = bytes(_b); bytes memory _bc = bytes(_c); bytes memory _bd = bytes(_d); bytes memory _be = bytes(_e); string memory abcde = new string(_ba.length + _bb.length + _bc.length + _bd.length + _be.length); bytes memory babcde = bytes(abcde); uint k = 0; for (uint i = 0; i < _ba.length; i++) babcde[k++] = _ba[i]; for (uint i = 0; i < _bb.length; i++) babcde[k++] = _bb[i]; for (uint i = 0; i < _bc.length; i++) babcde[k++] = _bc[i]; for (uint i = 0; i < _bd.length; i++) babcde[k++] = _bd[i]; for (uint i = 0; i < _be.length; i++) babcde[k++] = _be[i]; return string(babcde); } function strConcat(string memory _a, string memory _b, string memory _c, string memory _d) internal pure returns (string memory) { return strConcat(_a, _b, _c, _d, ""); } function strConcat(string memory _a, string memory _b, string memory _c) internal pure returns (string memory) { return strConcat(_a, _b, _c, "", ""); } function strConcat(string memory _a, string memory _b) internal pure returns (string memory) { return strConcat(_a, _b, "", "", ""); } function uint2str(uint _i) internal pure returns (string memory _uintAsString) { if (_i == 0) { return "0"; } uint j = _i; uint len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint k = len - 1; while (_i != 0) { bstr[k--] = bytes1(uint8(48 + _i % 10)); _i /= 10; } return string(bstr); } }
// 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.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; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity >=0.7.4 <0.9.0; /** * @title ERC165 * @dev https://github.com/ethereum/EIPs/blob/master/EIPS/eip-165.md */ interface IERC165 { /** * @notice Query if a contract implements an interface * @dev Interface identification is specified in ERC-165. This function * uses less than 30,000 gas * @param _interfaceId The interface identifier, as specified in ERC-165 */ function supportsInterface(bytes4 _interfaceId) external view returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity >=0.7.4 <0.9.0; /** * @dev ERC-1155 interface for accepting safe transfers. */ interface IERC1155TokenReceiver { /** * @notice Handle the receipt of a single ERC1155 token type * @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeTransferFrom` after the balance has been updated * This function MAY throw to revert and reject the transfer * Return of other amount than the magic value MUST result in the transaction being reverted * Note: The token contract address is always the message sender * @param _operator The address which called the `safeTransferFrom` function * @param _from The address which previously owned the token * @param _id The id of the token being transferred * @param _amount The amount of tokens being transferred * @param _data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` */ function onERC1155Received(address _operator, address _from, uint256 _id, uint256 _amount, bytes calldata _data) external returns(bytes4); /** * @notice Handle the receipt of multiple ERC1155 token types * @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeBatchTransferFrom` after the balances have been updated * This function MAY throw to revert and reject the transfer * Return of other amount than the magic value WILL result in the transaction being reverted * Note: The token contract address is always the message sender * @param _operator The address which called the `safeBatchTransferFrom` function * @param _from The address which previously owned the token * @param _ids An array containing ids of each token being transferred * @param _amounts An array containing amounts of each token being transferred * @param _data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` */ function onERC1155BatchReceived(address _operator, address _from, uint256[] calldata _ids, uint256[] calldata _amounts, bytes calldata _data) external returns(bytes4); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity >=0.7.4 <0.9.0; interface IERC1155Metadata { event URI(string _uri, uint256 indexed _id); /****************************************| | Functions | |_______________________________________*/ /** * @notice A distinct Uniform Resource Identifier (URI) for a given token. * @dev URIs are defined in RFC 3986. * URIs are assumed to be deterministically generated based on token ID * Token IDs are assumed to be represented in their hex format in URIs * @return URI string */ function uri(uint256 _id) external view returns (string memory); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity >=0.7.4 <0.9.0; interface IERC1155 { /****************************************| | Events | |_______________________________________*/ /** * @dev Either TransferSingle or TransferBatch MUST emit when tokens are transferred, including zero amount transfers as well as minting or burning * Operator MUST be msg.sender * When minting/creating tokens, the `_from` field MUST be set to `0x0` * When burning/destroying tokens, the `_to` field MUST be set to `0x0` * The total amount transferred from address 0x0 minus the total amount transferred to 0x0 may be used by clients and exchanges to be added to the "circulating supply" for a given token ID * To broadcast the existence of a token ID with no initial balance, the contract SHOULD emit the TransferSingle event from `0x0` to `0x0`, with the token creator as `_operator`, and a `_amount` of 0 */ event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _amount); /** * @dev Either TransferSingle or TransferBatch MUST emit when tokens are transferred, including zero amount transfers as well as minting or burning * Operator MUST be msg.sender * When minting/creating tokens, the `_from` field MUST be set to `0x0` * When burning/destroying tokens, the `_to` field MUST be set to `0x0` * The total amount transferred from address 0x0 minus the total amount transferred to 0x0 may be used by clients and exchanges to be added to the "circulating supply" for a given token ID * To broadcast the existence of multiple token IDs with no initial balance, this SHOULD emit the TransferBatch event from `0x0` to `0x0`, with the token creator as `_operator`, and a `_amount` of 0 */ event TransferBatch(address indexed _operator, address indexed _from, address indexed _to, uint256[] _ids, uint256[] _amounts); /** * @dev MUST emit when an approval is updated */ event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved); /****************************************| | Functions | |_______________________________________*/ /** * @notice Transfers amount of an _id from the _from address to the _to address specified * @dev MUST emit TransferSingle event on success * Caller must be approved to manage the _from account's tokens (see isApprovedForAll) * MUST throw if `_to` is the zero address * MUST throw if balance of sender for token `_id` is lower than the `_amount` sent * MUST throw on any other error * When transfer is complete, this function MUST check if `_to` is a smart contract (code size > 0). If so, it MUST call `onERC1155Received` on `_to` and revert if the return amount is not `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * @param _from Source address * @param _to Target address * @param _id ID of the token type * @param _amount Transfered amount * @param _data Additional data with no specified format, sent in call to `_to` */ function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount, bytes calldata _data) external; /** * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call) * @dev MUST emit TransferBatch event on success * Caller must be approved to manage the _from account's tokens (see isApprovedForAll) * MUST throw if `_to` is the zero address * MUST throw if length of `_ids` is not the same as length of `_amounts` * MUST throw if any of the balance of sender for token `_ids` is lower than the respective `_amounts` sent * MUST throw on any other error * When transfer is complete, this function MUST check if `_to` is a smart contract (code size > 0). If so, it MUST call `onERC1155BatchReceived` on `_to` and revert if the return amount is not `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * Transfers and events MUST occur in the array order they were submitted (_ids[0] before _ids[1], etc) * @param _from Source addresses * @param _to Target addresses * @param _ids IDs of each token type * @param _amounts Transfer amounts per token type * @param _data Additional data with no specified format, sent in call to `_to` */ function safeBatchTransferFrom(address _from, address _to, uint256[] calldata _ids, uint256[] calldata _amounts, bytes calldata _data) external; /** * @notice Get the balance of an account's Tokens * @param _owner The address of the token holder * @param _id ID of the Token * @return The _owner's balance of the Token type requested */ function balanceOf(address _owner, uint256 _id) external view returns (uint256); /** * @notice Get the balance of multiple account/token pairs * @param _owners The addresses of the token holders * @param _ids ID of the Tokens * @return The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair) */ function balanceOfBatch(address[] calldata _owners, uint256[] calldata _ids) external view returns (uint256[] memory); /** * @notice Enable or disable approval for a third party ("operator") to manage all of caller's tokens * @dev MUST emit the ApprovalForAll event on success * @param _operator Address to add to the set of authorized operators * @param _approved True if the operator is approved, false to revoke approval */ function setApprovalForAll(address _operator, bool _approved) external; /** * @notice Queries the approval status of an operator for a given owner * @param _owner The owner of the Tokens * @param _operator Address of authorized operator * @return isOperator True if the operator is approved, false if not */ function isApprovedForAll(address _owner, address _operator) external view returns (bool isOperator); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity >=0.7.4 <0.9.0; import "../ERC1155.sol"; /** * @dev Multi-Fungible Tokens with minting and burning methods. These methods assume * a parent contract to be executed as they are `internal` functions */ contract ERC1155MintBurn is ERC1155 { /****************************************| | Minting Functions | |_______________________________________*/ /** * @notice Mint _amount of tokens of a given id * @param _to The address to mint tokens to * @param _id Token id to mint * @param _amount The amount to be minted * @param _data Data to pass if receiver is contract */ function _mint(address _to, uint256 _id, uint256 _amount, bytes memory _data) internal { // Add _amount balances[_to][_id] = balances[_to][_id] + _amount; // Emit event emit TransferSingle(msg.sender, address(0x0), _to, _id, _amount); // Calling onReceive method if recipient is contract _callonERC1155Received(address(0x0), _to, _id, _amount, _data); } /** * @notice Mint tokens for each ids in _ids * @param _to The address to mint tokens to * @param _ids Array of ids to mint * @param _amounts Array of amount of tokens to mint per id * @param _data Data to pass if receiver is contract */ function _batchMint(address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data) internal { require(_ids.length == _amounts.length, "ERC1155MintBurn#batchMint: INVALID_ARRAYS_LENGTH"); // Number of mints to execute uint256 nMint = _ids.length; // Executing all minting for (uint256 i = 0; i < nMint; i++) { // Update storage balance balances[_to][_ids[i]] = balances[_to][_ids[i]] + _amounts[i]; } // Emit batch mint event emit TransferBatch(msg.sender, address(0x0), _to, _ids, _amounts); // Calling onReceive method if recipient is contract _callonERC1155BatchReceived(address(0x0), _to, _ids, _amounts, _data); } /****************************************| | Burning Functions | |_______________________________________*/ /** * @notice Burn _amount of tokens of a given token id * @param _from The address to burn tokens from * @param _id Token id to burn * @param _amount The amount to be burned */ function _burn(address _from, uint256 _id, uint256 _amount) internal { //Substract _amount balances[_from][_id] = balances[_from][_id] - _amount; // Emit event emit TransferSingle(msg.sender, _from, address(0x0), _id, _amount); } /** * @notice Burn tokens of given token id for each (_ids[i], _amounts[i]) pair * @param _from The address to burn tokens from * @param _ids Array of token ids to burn * @param _amounts Array of the amount to be burned */ function _batchBurn(address _from, uint256[] memory _ids, uint256[] memory _amounts) internal { require(_ids.length == _amounts.length, "ERC1155MintBurn#batchBurn: INVALID_ARRAYS_LENGTH"); // Number of mints to execute uint256 nBurn = _ids.length; // Executing all minting for (uint256 i = 0; i < nBurn; i++) { // Update storage balance balances[_from][_ids[i]] = balances[_from][_ids[i]] - _amounts[i]; } // Emit batch mint event emit TransferBatch(msg.sender, _from, address(0x0), _ids, _amounts); } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity >=0.5.12 <0.9.0; import './ERC1155.sol'; import './extensions/ERC1155MintBurn.sol'; import "../utils/Ownable.sol"; import "../utils/Strings.sol"; import "./interfaces/IERC1155Metadata.sol"; contract OwnableDelegateProxy { } contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } /** * @title ERC1155Tradable * ERC1155Tradable - ERC1155 contract that whitelists an operator address, has create and mint functionality, and supports useful standards from OpenZeppelin, like _exists(), name(), symbol(), and totalSupply() */ contract ERC1155Tradable is ERC1155, ERC1155MintBurn, IERC1155Metadata, Ownable { event CreatorChanged(uint256 id, address newCreator, address oldCreator); using Strings for string; address[] _proxyRegistries; uint256 private _currentTokenID = 0; mapping (uint256 => address) public creators; mapping (uint256 => uint256) public tokenSupply; mapping (uint256 => string) public uris; string public name; string public symbol; /** * @dev Require msg.sender to be the creator of the token id */ modifier creatorOnly(uint256 _id) { require(creators[_id] == msg.sender, "ERC1155Tradable#creatorOnly: ONLY_CREATOR_ALLOWED"); _; } /** * @dev Require msg.sender to own more than 0 of the token id */ modifier ownersOnly(uint256 _id) { require(balances[msg.sender][_id] > 0, "ERC1155Tradable#ownersOnly: ONLY_OWNERS_ALLOWED"); _; } constructor( string memory _name, string memory _symbol, address[] memory proxyRegistries_ ) { name = _name; symbol = _symbol; for(uint8 i = 0; i < proxyRegistries_.length; i++) { _proxyRegistries.push(proxyRegistries_[i]); } } /** * @dev Returns the total quantity for a token ID * @param _id uint256 ID of the token to query * @return amount of token in existence */ function totalSupply( uint256 _id ) public view returns (uint256) { return tokenSupply[_id]; } /** * @dev Returns the uri of the token * @param id_ Id of the token to query * @return URI of the token */ function uri(uint256 id_) public view override returns (string memory) { return uris[id_]; } /** * @dev Will add a Proxy Registry address * @param _proxyRegistry New Proxy Registry address */ function addProxyRegistry( address _proxyRegistry ) external onlyOwner { require(_proxyRegistries.length < 256, "ERC1155Tradable#addProxyRegistry: MAX_NUMBER_OF_PROXIES_REACHED"); _proxyRegistries.push(_proxyRegistry); } /** * @dev Will remove a Proxy Registry address * @param _proxyRegistry Proxy Registry address to remove */ function removeProxyRegistry( address _proxyRegistry ) external onlyOwner { for(uint8 i=0; i< _proxyRegistries.length; i++) { if(_proxyRegistries[i] == _proxyRegistry) { delete _proxyRegistries[i]; _proxyRegistries[i] = _proxyRegistries[_proxyRegistries.length - 1]; delete _proxyRegistries[_proxyRegistries.length - 1]; } } } /** * @dev Will change a Proxy Registry address * @param _proxyRegistry Proxy Registry address to swap with * @param _index Proxy Registry index to swap */ function swapProxyRegistry( address _proxyRegistry, uint8 _index ) external onlyOwner { _proxyRegistries[_index] = _proxyRegistry; } /** * @dev Returns the registered proxy registries */ function proxyRegistries() public view returns(address[] memory) { return _proxyRegistries; } /** * @dev Creates a new token type and assigns _initialSupply to an address * @param _initialOwner address of the first owner of the token * @param _initialSupply amount to supply the first owner * @param _uri URI for this token type * @param _data Data to pass if receiver is contract * @return The newly created token ID */ function create( address _initialOwner, uint256 _initialSupply, string calldata _uri, bytes calldata _data ) external returns (uint256) { uint256 _id = _getNextTokenID(); _incrementTokenTypeId(); uris[_id] = _uri; creators[_id] = msg.sender; _mint(_initialOwner, _id, _initialSupply, _data); tokenSupply[_id] = _initialSupply; return _id; } /** * @dev Mints some amount of tokens to an address * @param _to Address of the future owner of the token * @param _id Token ID to mint * @param _quantity Amount of tokens to mint * @param _data Data to pass if receiver is contract */ function mint( address _to, uint256 _id, uint256 _quantity, bytes memory _data ) public creatorOnly(_id) { _mint(_to, _id, _quantity, _data); tokenSupply[_id] = tokenSupply[_id] + _quantity; } /** * @dev Mint tokens for each id in _ids * @param _to The address to mint tokens to * @param _ids Array of ids to mint * @param _quantities Array of amounts of tokens to mint per id * @param _data Data to pass if receiver is contract */ function batchMint( address _to, uint256[] memory _ids, uint256[] memory _quantities, bytes memory _data ) public { for (uint256 i = 0; i < _ids.length; i++) { uint256 _id = _ids[i]; require(creators[_id] == msg.sender, "ERC1155Tradable#batchMint: ONLY_CREATOR_ALLOWED"); uint256 quantity = _quantities[i]; tokenSupply[_id] = tokenSupply[_id] + quantity; } _batchMint(_to, _ids, _quantities, _data); } /** * @dev Change the creator address for given tokens * @param _to Address of the new creator * @param _ids Array of Token IDs to change creator */ function setCreator( address _to, uint256[] memory _ids ) public { require(_to != address(0), "ERC1155Tradable#setCreator: INVALID_ADDRESS."); for (uint256 i = 0; i < _ids.length; i++) { uint256 id = _ids[i]; _setCreator(_to, id); } } /** * Override isApprovedForAll to whitelist user's proxies accounts to enable gas-free listings. */ function isApprovedForAll( address _owner, address _operator ) public view virtual override returns (bool isOperator) { // Whitelist proxy contracts for easy trading. for(uint8 i=0; i< _proxyRegistries.length; i++) { ProxyRegistry proxyRegistry = ProxyRegistry(_proxyRegistries[i]); if (address(proxyRegistry.proxies(_owner)) == _operator) { return true; } } return super.isApprovedForAll(_owner, _operator); } /** * @dev Returns the creator of a token * @param id_ Id of the token to query * @return The creator's address */ function creator(uint256 id_) public view returns(address){ return creators[id_]; } /** * @dev Change the creator address for given token * @param _to Address of the new creator * @param _id Token IDs to change creator of */ function _setCreator(address _to, uint256 _id) internal creatorOnly(_id) { emit CreatorChanged(_id, _to, creators[_id]); creators[_id] = _to; } /** * @dev Returns whether the specified token exists by checking to see if it has a creator * @param _id uint256 ID of the token to query the existence of * @return bool whether the token exists */ function _exists( uint256 _id ) internal view returns (bool) { return creators[_id] != address(0); } /** * @dev calculates the next token ID based on value of _currentTokenID * @return uint256 for the next token ID */ function _getNextTokenID() private view returns (uint256) { return _currentTokenID + 1; } /** * @dev increments the value of _currentTokenID */ function _incrementTokenTypeId() private { _currentTokenID++; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity >=0.7.4 <0.9.0; import "./interfaces/IERC1155.sol"; import "./interfaces/IERC165.sol"; import "./interfaces/IERC1155TokenReceiver.sol"; import "../utils/Address.sol"; /** * @dev Implementation of Multi-Token Standard contract */ contract ERC1155 is IERC165, IERC1155 { using Address for address; /***********************************| | Variables and Events | |__________________________________*/ // onReceive function signatures bytes4 constant internal ERC1155_RECEIVED_VALUE = 0xf23a6e61; bytes4 constant internal ERC1155_BATCH_RECEIVED_VALUE = 0xbc197c81; mapping (address => mapping(uint256 => uint256)) internal balances; mapping (address => mapping(address => bool)) internal operators; /***********************************| | Public Transfer Functions | |__________________________________*/ /** * @notice Transfers amount amount of an _id from the _from address to the _to address specified * @param _from Source address * @param _to Target address * @param _id ID of the token type * @param _amount Transfered amount * @param _data Additional data with no specified format, sent in call to `_to` */ function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount, bytes memory _data) public virtual override { require((msg.sender == _from) || isApprovedForAll(_from, msg.sender), "ERC1155#safeTransferFrom: INVALID_OPERATOR"); require(_to != address(0),"ERC1155#safeTransferFrom: INVALID_RECIPIENT"); _safeTransferFrom(_from, _to, _id, _amount); _callonERC1155Received(_from, _to, _id, _amount, _data); } /** * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call) * @param _from Source addresses * @param _to Target addresses * @param _ids IDs of each token type * @param _amounts Transfer amounts per token type * @param _data Additional data with no specified format, sent in call to `_to` */ function safeBatchTransferFrom(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data) public virtual override { // Requirements require((msg.sender == _from) || isApprovedForAll(_from, msg.sender), "ERC1155#safeBatchTransferFrom: INVALID_OPERATOR"); require(_to != address(0), "ERC1155#safeBatchTransferFrom: INVALID_RECIPIENT"); _safeBatchTransferFrom(_from, _to, _ids, _amounts); _callonERC1155BatchReceived(_from, _to, _ids, _amounts, _data); } /***********************************| | Internal Transfer Functions | |__________________________________*/ /** * @notice Transfers amount amount of an _id from the _from address to the _to address specified * @param _from Source address * @param _to Target address * @param _id ID of the token type * @param _amount Transfered amount */ function _safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount) internal { // Update balances balances[_from][_id] = balances[_from][_id] - _amount; // Subtract amount balances[_to][_id] = balances[_to][_id] + _amount; // Add amount // Emit event emit TransferSingle(msg.sender, _from, _to, _id, _amount); } /** * @notice Verifies if receiver is contract and if so, calls (_to).onERC1155Received(...) */ function _callonERC1155Received(address _from, address _to, uint256 _id, uint256 _amount, bytes memory _data) internal { // Check if recipient is contract if (_to.isContract()) { bytes4 retval = IERC1155TokenReceiver(_to).onERC1155Received(msg.sender, _from, _id, _amount, _data); require(retval == ERC1155_RECEIVED_VALUE, "ERC1155#_callonERC1155Received: INVALID_ON_RECEIVE_MESSAGE"); } } /** * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call) * @param _from Source addresses * @param _to Target addresses * @param _ids IDs of each token type * @param _amounts Transfer amounts per token type */ function _safeBatchTransferFrom(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts) internal { require(_ids.length == _amounts.length, "ERC1155#_safeBatchTransferFrom: INVALID_ARRAYS_LENGTH"); // Number of transfer to execute uint256 nTransfer = _ids.length; // Executing all transfers for (uint256 i = 0; i < nTransfer; i++) { // Update storage balance of previous bin balances[_from][_ids[i]] = balances[_from][_ids[i]] - _amounts[i]; balances[_to][_ids[i]] = balances[_to][_ids[i]] + _amounts[i]; } // Emit event emit TransferBatch(msg.sender, _from, _to, _ids, _amounts); } /** * @notice Verifies if receiver is contract and if so, calls (_to).onERC1155BatchReceived(...) */ function _callonERC1155BatchReceived(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data) internal { // Pass data if recipient is contract if (_to.isContract()) { bytes4 retval = IERC1155TokenReceiver(_to).onERC1155BatchReceived(msg.sender, _from, _ids, _amounts, _data); require(retval == ERC1155_BATCH_RECEIVED_VALUE, "ERC1155#_callonERC1155BatchReceived: INVALID_ON_RECEIVE_MESSAGE"); } } /***********************************| | Operator Functions | |__________________________________*/ /** * @notice Enable or disable approval for a third party ("operator") to manage all of caller's tokens * @param _operator Address to add to the set of authorized operators * @param _approved True if the operator is approved, false to revoke approval */ function setApprovalForAll(address _operator, bool _approved) external virtual override { // Update operator status operators[msg.sender][_operator] = _approved; emit ApprovalForAll(msg.sender, _operator, _approved); } /** * @notice Queries the approval status of an operator for a given owner * @param _owner The owner of the Tokens * @param _operator Address of authorized operator * @return isOperator True if the operator is approved, false if not */ function isApprovedForAll(address _owner, address _operator) public view virtual override returns (bool isOperator) { return operators[_owner][_operator]; } /***********************************| | Balance Functions | |__________________________________*/ /** * @notice Get the balance of an account's Tokens * @param _owner The address of the token holder * @param _id ID of the Token * @return The _owner's balance of the Token type requested */ function balanceOf(address _owner, uint256 _id) public view virtual override returns (uint256) { return balances[_owner][_id]; } /** * @notice Get the balance of multiple account/token pairs * @param _owners The addresses of the token holders * @param _ids ID of the Tokens * @return The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair) */ function balanceOfBatch(address[] memory _owners, uint256[] memory _ids) public view virtual override returns (uint256[] memory) { require(_owners.length == _ids.length, "ERC1155#balanceOfBatch: INVALID_ARRAY_LENGTH"); // Variables uint256[] memory batchBalances = new uint256[](_owners.length); // Iterate over each owner and token ID for (uint256 i = 0; i < _owners.length; i++) { batchBalances[i] = balances[_owners[i]][_ids[i]]; } return batchBalances; } /***********************************| | ERC165 Functions | |__________________________________*/ /** * INTERFACE_SIGNATURE_ERC165 = bytes4(keccak256("supportsInterface(bytes4)")); */ bytes4 constant private INTERFACE_SIGNATURE_ERC165 = 0x01ffc9a7; /** * INTERFACE_SIGNATURE_ERC1155 = * bytes4(keccak256("safeTransferFrom(address,address,uint256,uint256,bytes)")) ^ * bytes4(keccak256("safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)")) ^ * bytes4(keccak256("balanceOf(address,uint256)")) ^ * bytes4(keccak256("balanceOfBatch(address[],uint256[])")) ^ * bytes4(keccak256("setApprovalForAll(address,bool)")) ^ * bytes4(keccak256("isApprovedForAll(address,address)")); */ bytes4 constant private INTERFACE_SIGNATURE_ERC1155 = 0xd9b67a26; /** * @notice Query if a contract implements an interface * @param _interfaceID The interface identifier, as specified in ERC-165 * @return `true` if the contract implements `_interfaceID` and */ function supportsInterface(bytes4 _interfaceID) public view virtual override returns (bool) { if (_interfaceID == INTERFACE_SIGNATURE_ERC165 || _interfaceID == INTERFACE_SIGNATURE_ERC1155) { return true; } return false; } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address[]","name":"_proxyRegistries","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":false,"internalType":"bool","name":"_approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"address","name":"newCreator","type":"address"},{"indexed":false,"internalType":"address","name":"oldCreator","type":"address"}],"name":"CreatorChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"_amounts","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":"_amount","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_uri","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"_proxyRegistry","type":"address"}],"name":"addProxyRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_owners","type":"address[]"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_quantities","type":"uint256[]"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_initialOwner","type":"address"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"create","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id_","type":"uint256"}],"name":"creator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"creators","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistries","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistry","type":"address"}],"name":"removeProxyRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contractURI_","type":"string"}],"name":"setContractURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"setCreator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistry","type":"address"},{"internalType":"uint8","name":"_index","type":"uint8"}],"name":"swapProxyRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id_","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uris","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405260006004556040518060400160405280601f81526020017f68747470733a2f2f6a6576656c732e636f6d2f636f6e74726163742d75726900815250600a908051906020019062000056929190620002ba565b503480156200006457600080fd5b5060405162004d2e38038062004d2e83398181016040528101906200008a919062000423565b6040518060400160405280600681526020017f4a6576656c7300000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4a564c000000000000000000000000000000000000000000000000000000000081525082600062000109620002b260201b60201c565b905080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508260089080519060200190620001c0929190620002ba565b508160099080519060200190620001d9929190620002ba565b5060005b81518160ff161015620002a7576003828260ff168151811062000229577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080806200029e906200056d565b915050620001dd565b505050505062000654565b600033905090565b828054620002c89062000501565b90600052602060002090601f016020900481019282620002ec576000855562000338565b82601f106200030757805160ff191683800117855562000338565b8280016001018555821562000338579182015b82811115620003375782518255916020019190600101906200031a565b5b5090506200034791906200034b565b5090565b5b80821115620003665760008160009055506001016200034c565b5090565b6000620003816200037b8462000491565b62000468565b90508083825260208201905082856020860282011115620003a157600080fd5b60005b85811015620003d55781620003ba8882620003df565b845260208401935060208301925050600181019050620003a4565b5050509392505050565b600081519050620003f0816200063a565b92915050565b600082601f8301126200040857600080fd5b81516200041a8482602086016200036a565b91505092915050565b6000602082840312156200043657600080fd5b600082015167ffffffffffffffff8111156200045157600080fd5b6200045f84828501620003f6565b91505092915050565b60006200047462000487565b905062000482828262000537565b919050565b6000604051905090565b600067ffffffffffffffff821115620004af57620004ae620005fa565b5b602082029050602081019050919050565b6000620004cd82620004d4565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060ff82169050919050565b600060028204905060018216806200051a57607f821691505b60208210811415620005315762000530620005cb565b5b50919050565b620005428262000629565b810181811067ffffffffffffffff82111715620005645762000563620005fa565b5b80604052505050565b60006200057a82620004f4565b915060ff8214156200059157620005906200059c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200064581620004c0565b81146200065157600080fd5b50565b6146ca80620006646000396000f3fe608060405234801561001057600080fd5b50600436106101c35760003560e01c806395d89b41116100f9578063d2a6b51a11610097578063e985e9c511610071578063e985e9c51461053c578063ef72f2761461056c578063f242432a14610588578063f2fde38b146105a4576101c3565b8063d2a6b51a146104d2578063e38e3b24146104ee578063e8a3d4851461051e576101c3565b8063b0fd7f8f116100d3578063b0fd7f8f14610438578063b48ab8b614610456578063bd85b03914610472578063cd53d08e146104a2576101c3565b806395d89b41146103e25780639fe66b9414610400578063a22cb4651461041c576101c3565b80634e1273f411610166578063715018a611610140578063715018a61461036e578063731133e9146103785780638da5cb5b14610394578063938e3d7b146103b2576101c3565b80634e1273f4146102f2578063510b5158146103225780636dfa99fd14610352576101c3565b80630e89341c116101a25780630e89341c146102465780631253c546146102765780632693ebf2146102a65780632eb2c2d6146102d6576101c3565b8062fdd58e146101c857806301ffc9a7146101f857806306fdde0314610228575b600080fd5b6101e260048036038101906101dd91906132db565b6105c0565b6040516101ef9190613ce9565b60405180910390f35b610212600480360381019061020d91906134d5565b61061a565b60405161021f9190613acc565b60405180910390f35b6102306106cb565b60405161023d9190613ae7565b60405180910390f35b610260600480360381019061025b9190613595565b610759565b60405161026d9190613ae7565b60405180910390f35b610290600480360381019061028b9190613595565b6107fe565b60405161029d9190613ae7565b60405180910390f35b6102c060048036038101906102bb9190613595565b61089e565b6040516102cd9190613ce9565b60405180910390f35b6102f060048036038101906102eb9190613052565b6108b6565b005b61030c60048036038101906103079190613469565b6109c5565b6040516103199190613a73565b60405180910390f35b61033c60048036038101906103379190613595565b610bbe565b6040516103499190613974565b60405180910390f35b61036c60048036038101906103679190612fed565b610bfb565b005b610376610f1a565b005b610392600480360381019061038d91906133b2565b611057565b005b61039c611142565b6040516103a99190613974565b60405180910390f35b6103cc60048036038101906103c79190613550565b61116c565b6040516103d99190613acc565b60405180910390f35b6103ea61118a565b6040516103f79190613ae7565b60405180910390f35b61041a6004803603810190610415919061342d565b611218565b005b6104366004803603810190610431919061329f565b61131e565b005b61044061141b565b60405161044d9190613a51565b60405180910390f35b610470600480360381019061046b91906131f4565b6114a9565b005b61048c60048036038101906104879190613595565b61163e565b6040516104999190613ce9565b60405180910390f35b6104bc60048036038101906104b79190613595565b61165b565b6040516104c99190613974565b60405180910390f35b6104ec60048036038101906104e791906131a0565b61168e565b005b61050860048036038101906105039190613317565b611772565b6040516105159190613ce9565b60405180910390f35b610526611872565b6040516105339190613ae7565b60405180910390f35b61055660048036038101906105519190613016565b611904565b6040516105639190613acc565b60405180910390f35b61058660048036038101906105819190612fed565b611a77565b005b6105a2600480360381019061059d9190613111565b611ba2565b005b6105be60048036038101906105b99190612fed565b611cb1565b005b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006301ffc9a760e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b3575063d9b67a2660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b156106c157600190506106c6565b600090505b919050565b600880546106d89061401b565b80601f01602080910402602001604051908101604052809291908181526020018280546107049061401b565b80156107515780601f1061072657610100808354040283529160200191610751565b820191906000526020600020905b81548152906001019060200180831161073457829003601f168201915b505050505081565b60606007600083815260200190815260200160002080546107799061401b565b80601f01602080910402602001604051908101604052809291908181526020018280546107a59061401b565b80156107f25780601f106107c7576101008083540402835291602001916107f2565b820191906000526020600020905b8154815290600101906020018083116107d557829003601f168201915b50505050509050919050565b6007602052806000526040600020600091509050805461081d9061401b565b80601f01602080910402602001604051908101604052809291908181526020018280546108499061401b565b80156108965780601f1061086b57610100808354040283529160200191610896565b820191906000526020600020905b81548152906001019060200180831161087957829003601f168201915b505050505081565b60066020528060005260406000206000915090505481565b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806108f657506108f58533611904565b5b610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c90613c09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156109a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099c90613ba9565b60405180910390fd5b6109b185858585611e5d565b6109be8585858585612227565b5050505050565b60608151835114610a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0290613be9565b60405180910390fd5b6000835167ffffffffffffffff811115610a4e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610a7c5781602001602082028036833780820191505090505b50905060005b8451811015610bb357600080868381518110610ac7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858381518110610b44577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002054828281518110610b94577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610bab9061407e565b915050610a82565b508091505092915050565b60006005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c03612372565b73ffffffffffffffffffffffffffffffffffffffff16610c21611142565b73ffffffffffffffffffffffffffffffffffffffff1614610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e90613bc9565b60405180910390fd5b60005b6003805490508160ff161015610f16578173ffffffffffffffffffffffffffffffffffffffff1660038260ff1681548110610cde577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f035760038160ff1681548110610d62577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560036001600380549050610da39190613f12565b81548110610dda577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660038260ff1681548110610e42577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060036001600380549050610e9e9190613f12565b81548110610ed5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b8080610f0e906140c7565b915050610c7a565b5050565b610f22612372565b73ffffffffffffffffffffffffffffffffffffffff16610f40611142565b73ffffffffffffffffffffffffffffffffffffffff1614610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90613bc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b823373ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f090613cc9565b60405180910390fd5b6111058585858561237a565b8260066000868152602001908152602001600020546111249190613ebc565b60066000868152602001908152602001600020819055505050505050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008282600a919061117f929190612c8f565b506001905092915050565b600980546111979061401b565b80601f01602080910402602001604051908101604052809291908181526020018280546111c39061401b565b80156112105780601f106111e557610100808354040283529160200191611210565b820191906000526020600020905b8154815290600101906020018083116111f357829003601f168201915b505050505081565b611220612372565b73ffffffffffffffffffffffffffffffffffffffff1661123e611142565b73ffffffffffffffffffffffffffffffffffffffff1614611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b90613bc9565b60405180910390fd5b8160038260ff16815481106112d2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b80600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161140f9190613acc565b60405180910390a35050565b6060600380548060200260200160405190810160405280929190818152602001828054801561149f57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611455575b5050505050905090565b60005b835181101561162b5760008482815181106114f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190503373ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290613b29565b60405180910390fd5b60008483815181106115d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508060066000848152602001908152602001600020546115ff9190613ebc565b6006600084815260200190815260200160002081905550505080806116239061407e565b9150506114ac565b50611638848484846124bb565b50505050565b600060066000838152602001908152602001600020549050919050565b60056020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f590613ca9565b60405180910390fd5b60005b815181101561176d576000828281518110611745577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506117598482612726565b5080806117659061407e565b915050611701565b505050565b60008061177d61288d565b90506117876128a3565b85856007600084815260200190815260200160002091906117a9929190612c8f565b50336005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061184c88828987878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061237a565b866006600083815260200190815260200160002081905550809150509695505050505050565b6060600a80546118819061401b565b80601f01602080910402602001604051908101604052809291908181526020018280546118ad9061401b565b80156118fa5780601f106118cf576101008083540402835291602001916118fa565b820191906000526020600020905b8154815290600101906020018083116118dd57829003601f168201915b5050505050905090565b600080600090505b6003805490508160ff161015611a6357600060038260ff168154811061195b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791876040518263ffffffff1660e01b81526004016119d89190613974565b60206040518083038186803b1580156119f057600080fd5b505afa158015611a04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a289190613527565b73ffffffffffffffffffffffffffffffffffffffff161415611a4f57600192505050611a71565b508080611a5b906140c7565b91505061190c565b50611a6e83836128bd565b90505b92915050565b611a7f612372565b73ffffffffffffffffffffffffffffffffffffffff16611a9d611142565b73ffffffffffffffffffffffffffffffffffffffff1614611af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aea90613bc9565b60405180910390fd5b61010060038054905010611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3390613c49565b60405180910390fd5b6003819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611be25750611be18533611904565b5b611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1890613b69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8890613b09565b60405180910390fd5b611c9d85858585612951565b611caa8585858585612b31565b5050505050565b611cb9612372565b73ffffffffffffffffffffffffffffffffffffffff16611cd7611142565b73ffffffffffffffffffffffffffffffffffffffff1614611d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2490613bc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9490613b49565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8051825114611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890613b89565b60405180910390fd5b60008251905060005b818110156121a157828181518110611eeb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000868481518110611f6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002054611f8d9190613f12565b6000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000868481518110612006577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002081905550828181518110612059577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008684815181106120da577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518152602001908152602001600020546120fb9190613ebc565b6000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000868481518110612174577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000208190555080806121999061407e565b915050611eaa565b508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612218929190613a95565b60405180910390a45050505050565b6122468473ffffffffffffffffffffffffffffffffffffffff16612c7c565b1561236b5760008473ffffffffffffffffffffffffffffffffffffffff1663bc197c8133888787876040518663ffffffff1660e01b815260040161228e95949392919061398f565b602060405180830381600087803b1580156122a857600080fd5b505af11580156122bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122e091906134fe565b905063bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236090613c69565b60405180910390fd5b505b5050505050565b600033905090565b816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020546123d59190613ebc565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62868660405161249f929190613d3b565b60405180910390a46124b5600085858585612b31565b50505050565b81518351146124ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f690613c29565b60405180910390fd5b60008351905060005b8181101561269157838181518110612549577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008784815181106125ca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518152602001908152602001600020546125eb9190613ebc565b6000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000878481518110612664577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000208190555080806126899061407e565b915050612508565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612709929190613a95565b60405180910390a461271f600086868686612227565b5050505050565b803373ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bf90613cc9565b60405180910390fd5b7f8cd29a07104aeb56321ba0252c5201b28d3dc57bb098695e355a2ff9510135f182846005600086815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660405161282e93929190613d04565b60405180910390a1826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b6000600160045461289e9190613ebc565b905090565b600460008154809291906128b69061407e565b9190505550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b806000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020546129ac9190613f12565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054612a5a9190613ebc565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628585604051612b23929190613d3b565b60405180910390a450505050565b612b508473ffffffffffffffffffffffffffffffffffffffff16612c7c565b15612c755760008473ffffffffffffffffffffffffffffffffffffffff1663f23a6e6133888787876040518663ffffffff1660e01b8152600401612b989594939291906139f7565b602060405180830381600087803b158015612bb257600080fd5b505af1158015612bc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bea91906134fe565b905063f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6a90613c89565b60405180910390fd5b505b5050505050565b600080823b905060008111915050919050565b828054612c9b9061401b565b90600052602060002090601f016020900481019282612cbd5760008555612d04565b82601f10612cd657803560ff1916838001178555612d04565b82800160010185558215612d04579182015b82811115612d03578235825591602001919060010190612ce8565b5b509050612d119190612d15565b5090565b5b80821115612d2e576000816000905550600101612d16565b5090565b6000612d45612d4084613d89565b613d64565b90508083825260208201905082856020860282011115612d6457600080fd5b60005b85811015612d945781612d7a8882612e48565b845260208401935060208301925050600181019050612d67565b5050509392505050565b6000612db1612dac84613db5565b613d64565b90508083825260208201905082856020860282011115612dd057600080fd5b60005b85811015612e005781612de68882612fc3565b845260208401935060208301925050600181019050612dd3565b5050509392505050565b6000612e1d612e1884613de1565b613d64565b905082815260208101848484011115612e3557600080fd5b612e40848285613fd9565b509392505050565b600081359050612e578161460a565b92915050565b600082601f830112612e6e57600080fd5b8135612e7e848260208601612d32565b91505092915050565b600082601f830112612e9857600080fd5b8135612ea8848260208601612d9e565b91505092915050565b600081359050612ec081614621565b92915050565b600081359050612ed581614638565b92915050565b600081519050612eea81614638565b92915050565b60008083601f840112612f0257600080fd5b8235905067ffffffffffffffff811115612f1b57600080fd5b602083019150836001820283011115612f3357600080fd5b9250929050565b600082601f830112612f4b57600080fd5b8135612f5b848260208601612e0a565b91505092915050565b600081519050612f738161464f565b92915050565b60008083601f840112612f8b57600080fd5b8235905067ffffffffffffffff811115612fa457600080fd5b602083019150836001820283011115612fbc57600080fd5b9250929050565b600081359050612fd281614666565b92915050565b600081359050612fe78161467d565b92915050565b600060208284031215612fff57600080fd5b600061300d84828501612e48565b91505092915050565b6000806040838503121561302957600080fd5b600061303785828601612e48565b925050602061304885828601612e48565b9150509250929050565b600080600080600060a0868803121561306a57600080fd5b600061307888828901612e48565b955050602061308988828901612e48565b945050604086013567ffffffffffffffff8111156130a657600080fd5b6130b288828901612e87565b935050606086013567ffffffffffffffff8111156130cf57600080fd5b6130db88828901612e87565b925050608086013567ffffffffffffffff8111156130f857600080fd5b61310488828901612f3a565b9150509295509295909350565b600080600080600060a0868803121561312957600080fd5b600061313788828901612e48565b955050602061314888828901612e48565b945050604061315988828901612fc3565b935050606061316a88828901612fc3565b925050608086013567ffffffffffffffff81111561318757600080fd5b61319388828901612f3a565b9150509295509295909350565b600080604083850312156131b357600080fd5b60006131c185828601612e48565b925050602083013567ffffffffffffffff8111156131de57600080fd5b6131ea85828601612e87565b9150509250929050565b6000806000806080858703121561320a57600080fd5b600061321887828801612e48565b945050602085013567ffffffffffffffff81111561323557600080fd5b61324187828801612e87565b935050604085013567ffffffffffffffff81111561325e57600080fd5b61326a87828801612e87565b925050606085013567ffffffffffffffff81111561328757600080fd5b61329387828801612f3a565b91505092959194509250565b600080604083850312156132b257600080fd5b60006132c085828601612e48565b92505060206132d185828601612eb1565b9150509250929050565b600080604083850312156132ee57600080fd5b60006132fc85828601612e48565b925050602061330d85828601612fc3565b9150509250929050565b6000806000806000806080878903121561333057600080fd5b600061333e89828a01612e48565b965050602061334f89828a01612fc3565b955050604087013567ffffffffffffffff81111561336c57600080fd5b61337889828a01612f79565b9450945050606087013567ffffffffffffffff81111561339757600080fd5b6133a389828a01612ef0565b92509250509295509295509295565b600080600080608085870312156133c857600080fd5b60006133d687828801612e48565b94505060206133e787828801612fc3565b93505060406133f887828801612fc3565b925050606085013567ffffffffffffffff81111561341557600080fd5b61342187828801612f3a565b91505092959194509250565b6000806040838503121561344057600080fd5b600061344e85828601612e48565b925050602061345f85828601612fd8565b9150509250929050565b6000806040838503121561347c57600080fd5b600083013567ffffffffffffffff81111561349657600080fd5b6134a285828601612e5d565b925050602083013567ffffffffffffffff8111156134bf57600080fd5b6134cb85828601612e87565b9150509250929050565b6000602082840312156134e757600080fd5b60006134f584828501612ec6565b91505092915050565b60006020828403121561351057600080fd5b600061351e84828501612edb565b91505092915050565b60006020828403121561353957600080fd5b600061354784828501612f64565b91505092915050565b6000806020838503121561356357600080fd5b600083013567ffffffffffffffff81111561357d57600080fd5b61358985828601612f79565b92509250509250929050565b6000602082840312156135a757600080fd5b60006135b584828501612fc3565b91505092915050565b60006135ca83836135ee565b60208301905092915050565b60006135e28383613956565b60208301905092915050565b6135f781613f46565b82525050565b61360681613f46565b82525050565b600061361782613e32565b6136218185613e78565b935061362c83613e12565b8060005b8381101561365d57815161364488826135be565b975061364f83613e5e565b925050600181019050613630565b5085935050505092915050565b600061367582613e3d565b61367f8185613e89565b935061368a83613e22565b8060005b838110156136bb5781516136a288826135d6565b97506136ad83613e6b565b92505060018101905061368e565b5085935050505092915050565b6136d181613f58565b82525050565b60006136e282613e48565b6136ec8185613e9a565b93506136fc818560208601613fe8565b6137058161417e565b840191505092915050565b600061371b82613e53565b6137258185613eab565b9350613735818560208601613fe8565b61373e8161417e565b840191505092915050565b6000613756602b83613eab565b91506137618261418f565b604082019050919050565b6000613779602f83613eab565b9150613784826141de565b604082019050919050565b600061379c602683613eab565b91506137a78261422d565b604082019050919050565b60006137bf602a83613eab565b91506137ca8261427c565b604082019050919050565b60006137e2603583613eab565b91506137ed826142cb565b604082019050919050565b6000613805603083613eab565b91506138108261431a565b604082019050919050565b6000613828602083613eab565b915061383382614369565b602082019050919050565b600061384b602c83613eab565b915061385682614392565b604082019050919050565b600061386e602f83613eab565b9150613879826143e1565b604082019050919050565b6000613891603083613eab565b915061389c82614430565b604082019050919050565b60006138b4603f83613eab565b91506138bf8261447f565b604082019050919050565b60006138d7603f83613eab565b91506138e2826144ce565b604082019050919050565b60006138fa603a83613eab565b91506139058261451d565b604082019050919050565b600061391d602c83613eab565b91506139288261456c565b604082019050919050565b6000613940603183613eab565b915061394b826145bb565b604082019050919050565b61395f81613fc2565b82525050565b61396e81613fc2565b82525050565b600060208201905061398960008301846135fd565b92915050565b600060a0820190506139a460008301886135fd565b6139b160208301876135fd565b81810360408301526139c3818661366a565b905081810360608301526139d7818561366a565b905081810360808301526139eb81846136d7565b90509695505050505050565b600060a082019050613a0c60008301886135fd565b613a1960208301876135fd565b613a266040830186613965565b613a336060830185613965565b8181036080830152613a4581846136d7565b90509695505050505050565b60006020820190508181036000830152613a6b818461360c565b905092915050565b60006020820190508181036000830152613a8d818461366a565b905092915050565b60006040820190508181036000830152613aaf818561366a565b90508181036020830152613ac3818461366a565b90509392505050565b6000602082019050613ae160008301846136c8565b92915050565b60006020820190508181036000830152613b018184613710565b905092915050565b60006020820190508181036000830152613b2281613749565b9050919050565b60006020820190508181036000830152613b428161376c565b9050919050565b60006020820190508181036000830152613b628161378f565b9050919050565b60006020820190508181036000830152613b82816137b2565b9050919050565b60006020820190508181036000830152613ba2816137d5565b9050919050565b60006020820190508181036000830152613bc2816137f8565b9050919050565b60006020820190508181036000830152613be28161381b565b9050919050565b60006020820190508181036000830152613c028161383e565b9050919050565b60006020820190508181036000830152613c2281613861565b9050919050565b60006020820190508181036000830152613c4281613884565b9050919050565b60006020820190508181036000830152613c62816138a7565b9050919050565b60006020820190508181036000830152613c82816138ca565b9050919050565b60006020820190508181036000830152613ca2816138ed565b9050919050565b60006020820190508181036000830152613cc281613910565b9050919050565b60006020820190508181036000830152613ce281613933565b9050919050565b6000602082019050613cfe6000830184613965565b92915050565b6000606082019050613d196000830186613965565b613d2660208301856135fd565b613d3360408301846135fd565b949350505050565b6000604082019050613d506000830185613965565b613d5d6020830184613965565b9392505050565b6000613d6e613d7f565b9050613d7a828261404d565b919050565b6000604051905090565b600067ffffffffffffffff821115613da457613da361414f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613dd057613dcf61414f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613dfc57613dfb61414f565b5b613e058261417e565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613ec782613fc2565b9150613ed283613fc2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f0757613f066140f1565b5b828201905092915050565b6000613f1d82613fc2565b9150613f2883613fc2565b925082821015613f3b57613f3a6140f1565b5b828203905092915050565b6000613f5182613fa2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613f9b82613f46565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614006578082015181840152602081019050613feb565b83811115614015576000848401525b50505050565b6000600282049050600182168061403357607f821691505b6020821081141561404757614046614120565b5b50919050565b6140568261417e565b810181811067ffffffffffffffff821117156140755761407461414f565b5b80604052505050565b600061408982613fc2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140bc576140bb6140f1565b5b600182019050919050565b60006140d282613fcc565b915060ff8214156140e6576140e56140f1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433131353523736166655472616e7366657246726f6d3a20494e56414c4960008201527f445f524543495049454e54000000000000000000000000000000000000000000602082015250565b7f455243313135355472616461626c652362617463684d696e743a204f4e4c595f60008201527f43524541544f525f414c4c4f5745440000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433131353523736166655472616e7366657246726f6d3a20494e56414c4960008201527f445f4f50455241544f5200000000000000000000000000000000000000000000602082015250565b7f45524331313535235f7361666542617463685472616e7366657246726f6d3a2060008201527f494e56414c49445f4152524159535f4c454e4754480000000000000000000000602082015250565b7f45524331313535237361666542617463685472616e7366657246726f6d3a204960008201527f4e56414c49445f524543495049454e5400000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135352362616c616e63654f6642617463683a20494e56414c49445f60008201527f41525241595f4c454e4754480000000000000000000000000000000000000000602082015250565b7f45524331313535237361666542617463685472616e7366657246726f6d3a204960008201527f4e56414c49445f4f50455241544f520000000000000000000000000000000000602082015250565b7f455243313135354d696e744275726e2362617463684d696e743a20494e56414c60008201527f49445f4152524159535f4c454e47544800000000000000000000000000000000602082015250565b7f455243313135355472616461626c652361646450726f7879526567697374727960008201527f3a204d41585f4e554d4245525f4f465f50524f584945535f5245414348454400602082015250565b7f45524331313535235f63616c6c6f6e455243313135354261746368526563656960008201527f7665643a20494e56414c49445f4f4e5f524543454956455f4d45535341474500602082015250565b7f45524331313535235f63616c6c6f6e4552433131353552656365697665643a2060008201527f494e56414c49445f4f4e5f524543454956455f4d455353414745000000000000602082015250565b7f455243313135355472616461626c652373657443726561746f723a20494e564160008201527f4c49445f414444524553532e0000000000000000000000000000000000000000602082015250565b7f455243313135355472616461626c652363726561746f724f6e6c793a204f4e4c60008201527f595f43524541544f525f414c4c4f574544000000000000000000000000000000602082015250565b61461381613f46565b811461461e57600080fd5b50565b61462a81613f58565b811461463557600080fd5b50565b61464181613f64565b811461464c57600080fd5b50565b61465881613f90565b811461466357600080fd5b50565b61466f81613fc2565b811461467a57600080fd5b50565b61468681613fcc565b811461469157600080fd5b5056fea264697066735822122005da360626a79c135df1457b273a9f9a1ee391386a99d9e9bc9a962aaac9b24964736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c35760003560e01c806395d89b41116100f9578063d2a6b51a11610097578063e985e9c511610071578063e985e9c51461053c578063ef72f2761461056c578063f242432a14610588578063f2fde38b146105a4576101c3565b8063d2a6b51a146104d2578063e38e3b24146104ee578063e8a3d4851461051e576101c3565b8063b0fd7f8f116100d3578063b0fd7f8f14610438578063b48ab8b614610456578063bd85b03914610472578063cd53d08e146104a2576101c3565b806395d89b41146103e25780639fe66b9414610400578063a22cb4651461041c576101c3565b80634e1273f411610166578063715018a611610140578063715018a61461036e578063731133e9146103785780638da5cb5b14610394578063938e3d7b146103b2576101c3565b80634e1273f4146102f2578063510b5158146103225780636dfa99fd14610352576101c3565b80630e89341c116101a25780630e89341c146102465780631253c546146102765780632693ebf2146102a65780632eb2c2d6146102d6576101c3565b8062fdd58e146101c857806301ffc9a7146101f857806306fdde0314610228575b600080fd5b6101e260048036038101906101dd91906132db565b6105c0565b6040516101ef9190613ce9565b60405180910390f35b610212600480360381019061020d91906134d5565b61061a565b60405161021f9190613acc565b60405180910390f35b6102306106cb565b60405161023d9190613ae7565b60405180910390f35b610260600480360381019061025b9190613595565b610759565b60405161026d9190613ae7565b60405180910390f35b610290600480360381019061028b9190613595565b6107fe565b60405161029d9190613ae7565b60405180910390f35b6102c060048036038101906102bb9190613595565b61089e565b6040516102cd9190613ce9565b60405180910390f35b6102f060048036038101906102eb9190613052565b6108b6565b005b61030c60048036038101906103079190613469565b6109c5565b6040516103199190613a73565b60405180910390f35b61033c60048036038101906103379190613595565b610bbe565b6040516103499190613974565b60405180910390f35b61036c60048036038101906103679190612fed565b610bfb565b005b610376610f1a565b005b610392600480360381019061038d91906133b2565b611057565b005b61039c611142565b6040516103a99190613974565b60405180910390f35b6103cc60048036038101906103c79190613550565b61116c565b6040516103d99190613acc565b60405180910390f35b6103ea61118a565b6040516103f79190613ae7565b60405180910390f35b61041a6004803603810190610415919061342d565b611218565b005b6104366004803603810190610431919061329f565b61131e565b005b61044061141b565b60405161044d9190613a51565b60405180910390f35b610470600480360381019061046b91906131f4565b6114a9565b005b61048c60048036038101906104879190613595565b61163e565b6040516104999190613ce9565b60405180910390f35b6104bc60048036038101906104b79190613595565b61165b565b6040516104c99190613974565b60405180910390f35b6104ec60048036038101906104e791906131a0565b61168e565b005b61050860048036038101906105039190613317565b611772565b6040516105159190613ce9565b60405180910390f35b610526611872565b6040516105339190613ae7565b60405180910390f35b61055660048036038101906105519190613016565b611904565b6040516105639190613acc565b60405180910390f35b61058660048036038101906105819190612fed565b611a77565b005b6105a2600480360381019061059d9190613111565b611ba2565b005b6105be60048036038101906105b99190612fed565b611cb1565b005b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006301ffc9a760e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b3575063d9b67a2660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b156106c157600190506106c6565b600090505b919050565b600880546106d89061401b565b80601f01602080910402602001604051908101604052809291908181526020018280546107049061401b565b80156107515780601f1061072657610100808354040283529160200191610751565b820191906000526020600020905b81548152906001019060200180831161073457829003601f168201915b505050505081565b60606007600083815260200190815260200160002080546107799061401b565b80601f01602080910402602001604051908101604052809291908181526020018280546107a59061401b565b80156107f25780601f106107c7576101008083540402835291602001916107f2565b820191906000526020600020905b8154815290600101906020018083116107d557829003601f168201915b50505050509050919050565b6007602052806000526040600020600091509050805461081d9061401b565b80601f01602080910402602001604051908101604052809291908181526020018280546108499061401b565b80156108965780601f1061086b57610100808354040283529160200191610896565b820191906000526020600020905b81548152906001019060200180831161087957829003601f168201915b505050505081565b60066020528060005260406000206000915090505481565b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806108f657506108f58533611904565b5b610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c90613c09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156109a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099c90613ba9565b60405180910390fd5b6109b185858585611e5d565b6109be8585858585612227565b5050505050565b60608151835114610a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0290613be9565b60405180910390fd5b6000835167ffffffffffffffff811115610a4e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610a7c5781602001602082028036833780820191505090505b50905060005b8451811015610bb357600080868381518110610ac7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858381518110610b44577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002054828281518110610b94577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610bab9061407e565b915050610a82565b508091505092915050565b60006005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c03612372565b73ffffffffffffffffffffffffffffffffffffffff16610c21611142565b73ffffffffffffffffffffffffffffffffffffffff1614610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e90613bc9565b60405180910390fd5b60005b6003805490508160ff161015610f16578173ffffffffffffffffffffffffffffffffffffffff1660038260ff1681548110610cde577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f035760038160ff1681548110610d62577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560036001600380549050610da39190613f12565b81548110610dda577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660038260ff1681548110610e42577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060036001600380549050610e9e9190613f12565b81548110610ed5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b8080610f0e906140c7565b915050610c7a565b5050565b610f22612372565b73ffffffffffffffffffffffffffffffffffffffff16610f40611142565b73ffffffffffffffffffffffffffffffffffffffff1614610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90613bc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b823373ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f090613cc9565b60405180910390fd5b6111058585858561237a565b8260066000868152602001908152602001600020546111249190613ebc565b60066000868152602001908152602001600020819055505050505050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008282600a919061117f929190612c8f565b506001905092915050565b600980546111979061401b565b80601f01602080910402602001604051908101604052809291908181526020018280546111c39061401b565b80156112105780601f106111e557610100808354040283529160200191611210565b820191906000526020600020905b8154815290600101906020018083116111f357829003601f168201915b505050505081565b611220612372565b73ffffffffffffffffffffffffffffffffffffffff1661123e611142565b73ffffffffffffffffffffffffffffffffffffffff1614611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b90613bc9565b60405180910390fd5b8160038260ff16815481106112d2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b80600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161140f9190613acc565b60405180910390a35050565b6060600380548060200260200160405190810160405280929190818152602001828054801561149f57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611455575b5050505050905090565b60005b835181101561162b5760008482815181106114f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190503373ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290613b29565b60405180910390fd5b60008483815181106115d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508060066000848152602001908152602001600020546115ff9190613ebc565b6006600084815260200190815260200160002081905550505080806116239061407e565b9150506114ac565b50611638848484846124bb565b50505050565b600060066000838152602001908152602001600020549050919050565b60056020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f590613ca9565b60405180910390fd5b60005b815181101561176d576000828281518110611745577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506117598482612726565b5080806117659061407e565b915050611701565b505050565b60008061177d61288d565b90506117876128a3565b85856007600084815260200190815260200160002091906117a9929190612c8f565b50336005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061184c88828987878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061237a565b866006600083815260200190815260200160002081905550809150509695505050505050565b6060600a80546118819061401b565b80601f01602080910402602001604051908101604052809291908181526020018280546118ad9061401b565b80156118fa5780601f106118cf576101008083540402835291602001916118fa565b820191906000526020600020905b8154815290600101906020018083116118dd57829003601f168201915b5050505050905090565b600080600090505b6003805490508160ff161015611a6357600060038260ff168154811061195b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791876040518263ffffffff1660e01b81526004016119d89190613974565b60206040518083038186803b1580156119f057600080fd5b505afa158015611a04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a289190613527565b73ffffffffffffffffffffffffffffffffffffffff161415611a4f57600192505050611a71565b508080611a5b906140c7565b91505061190c565b50611a6e83836128bd565b90505b92915050565b611a7f612372565b73ffffffffffffffffffffffffffffffffffffffff16611a9d611142565b73ffffffffffffffffffffffffffffffffffffffff1614611af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aea90613bc9565b60405180910390fd5b61010060038054905010611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3390613c49565b60405180910390fd5b6003819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611be25750611be18533611904565b5b611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1890613b69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8890613b09565b60405180910390fd5b611c9d85858585612951565b611caa8585858585612b31565b5050505050565b611cb9612372565b73ffffffffffffffffffffffffffffffffffffffff16611cd7611142565b73ffffffffffffffffffffffffffffffffffffffff1614611d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2490613bc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9490613b49565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8051825114611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890613b89565b60405180910390fd5b60008251905060005b818110156121a157828181518110611eeb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000868481518110611f6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002054611f8d9190613f12565b6000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000868481518110612006577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002081905550828181518110612059577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008684815181106120da577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518152602001908152602001600020546120fb9190613ebc565b6000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000868481518110612174577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000208190555080806121999061407e565b915050611eaa565b508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612218929190613a95565b60405180910390a45050505050565b6122468473ffffffffffffffffffffffffffffffffffffffff16612c7c565b1561236b5760008473ffffffffffffffffffffffffffffffffffffffff1663bc197c8133888787876040518663ffffffff1660e01b815260040161228e95949392919061398f565b602060405180830381600087803b1580156122a857600080fd5b505af11580156122bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122e091906134fe565b905063bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236090613c69565b60405180910390fd5b505b5050505050565b600033905090565b816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020546123d59190613ebc565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62868660405161249f929190613d3b565b60405180910390a46124b5600085858585612b31565b50505050565b81518351146124ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f690613c29565b60405180910390fd5b60008351905060005b8181101561269157838181518110612549577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008784815181106125ca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518152602001908152602001600020546125eb9190613ebc565b6000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000878481518110612664577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000208190555080806126899061407e565b915050612508565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612709929190613a95565b60405180910390a461271f600086868686612227565b5050505050565b803373ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bf90613cc9565b60405180910390fd5b7f8cd29a07104aeb56321ba0252c5201b28d3dc57bb098695e355a2ff9510135f182846005600086815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660405161282e93929190613d04565b60405180910390a1826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b6000600160045461289e9190613ebc565b905090565b600460008154809291906128b69061407e565b9190505550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b806000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020546129ac9190613f12565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054612a5a9190613ebc565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628585604051612b23929190613d3b565b60405180910390a450505050565b612b508473ffffffffffffffffffffffffffffffffffffffff16612c7c565b15612c755760008473ffffffffffffffffffffffffffffffffffffffff1663f23a6e6133888787876040518663ffffffff1660e01b8152600401612b989594939291906139f7565b602060405180830381600087803b158015612bb257600080fd5b505af1158015612bc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bea91906134fe565b905063f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6a90613c89565b60405180910390fd5b505b5050505050565b600080823b905060008111915050919050565b828054612c9b9061401b565b90600052602060002090601f016020900481019282612cbd5760008555612d04565b82601f10612cd657803560ff1916838001178555612d04565b82800160010185558215612d04579182015b82811115612d03578235825591602001919060010190612ce8565b5b509050612d119190612d15565b5090565b5b80821115612d2e576000816000905550600101612d16565b5090565b6000612d45612d4084613d89565b613d64565b90508083825260208201905082856020860282011115612d6457600080fd5b60005b85811015612d945781612d7a8882612e48565b845260208401935060208301925050600181019050612d67565b5050509392505050565b6000612db1612dac84613db5565b613d64565b90508083825260208201905082856020860282011115612dd057600080fd5b60005b85811015612e005781612de68882612fc3565b845260208401935060208301925050600181019050612dd3565b5050509392505050565b6000612e1d612e1884613de1565b613d64565b905082815260208101848484011115612e3557600080fd5b612e40848285613fd9565b509392505050565b600081359050612e578161460a565b92915050565b600082601f830112612e6e57600080fd5b8135612e7e848260208601612d32565b91505092915050565b600082601f830112612e9857600080fd5b8135612ea8848260208601612d9e565b91505092915050565b600081359050612ec081614621565b92915050565b600081359050612ed581614638565b92915050565b600081519050612eea81614638565b92915050565b60008083601f840112612f0257600080fd5b8235905067ffffffffffffffff811115612f1b57600080fd5b602083019150836001820283011115612f3357600080fd5b9250929050565b600082601f830112612f4b57600080fd5b8135612f5b848260208601612e0a565b91505092915050565b600081519050612f738161464f565b92915050565b60008083601f840112612f8b57600080fd5b8235905067ffffffffffffffff811115612fa457600080fd5b602083019150836001820283011115612fbc57600080fd5b9250929050565b600081359050612fd281614666565b92915050565b600081359050612fe78161467d565b92915050565b600060208284031215612fff57600080fd5b600061300d84828501612e48565b91505092915050565b6000806040838503121561302957600080fd5b600061303785828601612e48565b925050602061304885828601612e48565b9150509250929050565b600080600080600060a0868803121561306a57600080fd5b600061307888828901612e48565b955050602061308988828901612e48565b945050604086013567ffffffffffffffff8111156130a657600080fd5b6130b288828901612e87565b935050606086013567ffffffffffffffff8111156130cf57600080fd5b6130db88828901612e87565b925050608086013567ffffffffffffffff8111156130f857600080fd5b61310488828901612f3a565b9150509295509295909350565b600080600080600060a0868803121561312957600080fd5b600061313788828901612e48565b955050602061314888828901612e48565b945050604061315988828901612fc3565b935050606061316a88828901612fc3565b925050608086013567ffffffffffffffff81111561318757600080fd5b61319388828901612f3a565b9150509295509295909350565b600080604083850312156131b357600080fd5b60006131c185828601612e48565b925050602083013567ffffffffffffffff8111156131de57600080fd5b6131ea85828601612e87565b9150509250929050565b6000806000806080858703121561320a57600080fd5b600061321887828801612e48565b945050602085013567ffffffffffffffff81111561323557600080fd5b61324187828801612e87565b935050604085013567ffffffffffffffff81111561325e57600080fd5b61326a87828801612e87565b925050606085013567ffffffffffffffff81111561328757600080fd5b61329387828801612f3a565b91505092959194509250565b600080604083850312156132b257600080fd5b60006132c085828601612e48565b92505060206132d185828601612eb1565b9150509250929050565b600080604083850312156132ee57600080fd5b60006132fc85828601612e48565b925050602061330d85828601612fc3565b9150509250929050565b6000806000806000806080878903121561333057600080fd5b600061333e89828a01612e48565b965050602061334f89828a01612fc3565b955050604087013567ffffffffffffffff81111561336c57600080fd5b61337889828a01612f79565b9450945050606087013567ffffffffffffffff81111561339757600080fd5b6133a389828a01612ef0565b92509250509295509295509295565b600080600080608085870312156133c857600080fd5b60006133d687828801612e48565b94505060206133e787828801612fc3565b93505060406133f887828801612fc3565b925050606085013567ffffffffffffffff81111561341557600080fd5b61342187828801612f3a565b91505092959194509250565b6000806040838503121561344057600080fd5b600061344e85828601612e48565b925050602061345f85828601612fd8565b9150509250929050565b6000806040838503121561347c57600080fd5b600083013567ffffffffffffffff81111561349657600080fd5b6134a285828601612e5d565b925050602083013567ffffffffffffffff8111156134bf57600080fd5b6134cb85828601612e87565b9150509250929050565b6000602082840312156134e757600080fd5b60006134f584828501612ec6565b91505092915050565b60006020828403121561351057600080fd5b600061351e84828501612edb565b91505092915050565b60006020828403121561353957600080fd5b600061354784828501612f64565b91505092915050565b6000806020838503121561356357600080fd5b600083013567ffffffffffffffff81111561357d57600080fd5b61358985828601612f79565b92509250509250929050565b6000602082840312156135a757600080fd5b60006135b584828501612fc3565b91505092915050565b60006135ca83836135ee565b60208301905092915050565b60006135e28383613956565b60208301905092915050565b6135f781613f46565b82525050565b61360681613f46565b82525050565b600061361782613e32565b6136218185613e78565b935061362c83613e12565b8060005b8381101561365d57815161364488826135be565b975061364f83613e5e565b925050600181019050613630565b5085935050505092915050565b600061367582613e3d565b61367f8185613e89565b935061368a83613e22565b8060005b838110156136bb5781516136a288826135d6565b97506136ad83613e6b565b92505060018101905061368e565b5085935050505092915050565b6136d181613f58565b82525050565b60006136e282613e48565b6136ec8185613e9a565b93506136fc818560208601613fe8565b6137058161417e565b840191505092915050565b600061371b82613e53565b6137258185613eab565b9350613735818560208601613fe8565b61373e8161417e565b840191505092915050565b6000613756602b83613eab565b91506137618261418f565b604082019050919050565b6000613779602f83613eab565b9150613784826141de565b604082019050919050565b600061379c602683613eab565b91506137a78261422d565b604082019050919050565b60006137bf602a83613eab565b91506137ca8261427c565b604082019050919050565b60006137e2603583613eab565b91506137ed826142cb565b604082019050919050565b6000613805603083613eab565b91506138108261431a565b604082019050919050565b6000613828602083613eab565b915061383382614369565b602082019050919050565b600061384b602c83613eab565b915061385682614392565b604082019050919050565b600061386e602f83613eab565b9150613879826143e1565b604082019050919050565b6000613891603083613eab565b915061389c82614430565b604082019050919050565b60006138b4603f83613eab565b91506138bf8261447f565b604082019050919050565b60006138d7603f83613eab565b91506138e2826144ce565b604082019050919050565b60006138fa603a83613eab565b91506139058261451d565b604082019050919050565b600061391d602c83613eab565b91506139288261456c565b604082019050919050565b6000613940603183613eab565b915061394b826145bb565b604082019050919050565b61395f81613fc2565b82525050565b61396e81613fc2565b82525050565b600060208201905061398960008301846135fd565b92915050565b600060a0820190506139a460008301886135fd565b6139b160208301876135fd565b81810360408301526139c3818661366a565b905081810360608301526139d7818561366a565b905081810360808301526139eb81846136d7565b90509695505050505050565b600060a082019050613a0c60008301886135fd565b613a1960208301876135fd565b613a266040830186613965565b613a336060830185613965565b8181036080830152613a4581846136d7565b90509695505050505050565b60006020820190508181036000830152613a6b818461360c565b905092915050565b60006020820190508181036000830152613a8d818461366a565b905092915050565b60006040820190508181036000830152613aaf818561366a565b90508181036020830152613ac3818461366a565b90509392505050565b6000602082019050613ae160008301846136c8565b92915050565b60006020820190508181036000830152613b018184613710565b905092915050565b60006020820190508181036000830152613b2281613749565b9050919050565b60006020820190508181036000830152613b428161376c565b9050919050565b60006020820190508181036000830152613b628161378f565b9050919050565b60006020820190508181036000830152613b82816137b2565b9050919050565b60006020820190508181036000830152613ba2816137d5565b9050919050565b60006020820190508181036000830152613bc2816137f8565b9050919050565b60006020820190508181036000830152613be28161381b565b9050919050565b60006020820190508181036000830152613c028161383e565b9050919050565b60006020820190508181036000830152613c2281613861565b9050919050565b60006020820190508181036000830152613c4281613884565b9050919050565b60006020820190508181036000830152613c62816138a7565b9050919050565b60006020820190508181036000830152613c82816138ca565b9050919050565b60006020820190508181036000830152613ca2816138ed565b9050919050565b60006020820190508181036000830152613cc281613910565b9050919050565b60006020820190508181036000830152613ce281613933565b9050919050565b6000602082019050613cfe6000830184613965565b92915050565b6000606082019050613d196000830186613965565b613d2660208301856135fd565b613d3360408301846135fd565b949350505050565b6000604082019050613d506000830185613965565b613d5d6020830184613965565b9392505050565b6000613d6e613d7f565b9050613d7a828261404d565b919050565b6000604051905090565b600067ffffffffffffffff821115613da457613da361414f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613dd057613dcf61414f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613dfc57613dfb61414f565b5b613e058261417e565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613ec782613fc2565b9150613ed283613fc2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f0757613f066140f1565b5b828201905092915050565b6000613f1d82613fc2565b9150613f2883613fc2565b925082821015613f3b57613f3a6140f1565b5b828203905092915050565b6000613f5182613fa2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613f9b82613f46565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614006578082015181840152602081019050613feb565b83811115614015576000848401525b50505050565b6000600282049050600182168061403357607f821691505b6020821081141561404757614046614120565b5b50919050565b6140568261417e565b810181811067ffffffffffffffff821117156140755761407461414f565b5b80604052505050565b600061408982613fc2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140bc576140bb6140f1565b5b600182019050919050565b60006140d282613fcc565b915060ff8214156140e6576140e56140f1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433131353523736166655472616e7366657246726f6d3a20494e56414c4960008201527f445f524543495049454e54000000000000000000000000000000000000000000602082015250565b7f455243313135355472616461626c652362617463684d696e743a204f4e4c595f60008201527f43524541544f525f414c4c4f5745440000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433131353523736166655472616e7366657246726f6d3a20494e56414c4960008201527f445f4f50455241544f5200000000000000000000000000000000000000000000602082015250565b7f45524331313535235f7361666542617463685472616e7366657246726f6d3a2060008201527f494e56414c49445f4152524159535f4c454e4754480000000000000000000000602082015250565b7f45524331313535237361666542617463685472616e7366657246726f6d3a204960008201527f4e56414c49445f524543495049454e5400000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135352362616c616e63654f6642617463683a20494e56414c49445f60008201527f41525241595f4c454e4754480000000000000000000000000000000000000000602082015250565b7f45524331313535237361666542617463685472616e7366657246726f6d3a204960008201527f4e56414c49445f4f50455241544f520000000000000000000000000000000000602082015250565b7f455243313135354d696e744275726e2362617463684d696e743a20494e56414c60008201527f49445f4152524159535f4c454e47544800000000000000000000000000000000602082015250565b7f455243313135355472616461626c652361646450726f7879526567697374727960008201527f3a204d41585f4e554d4245525f4f465f50524f584945535f5245414348454400602082015250565b7f45524331313535235f63616c6c6f6e455243313135354261746368526563656960008201527f7665643a20494e56414c49445f4f4e5f524543454956455f4d45535341474500602082015250565b7f45524331313535235f63616c6c6f6e4552433131353552656365697665643a2060008201527f494e56414c49445f4f4e5f524543454956455f4d455353414745000000000000602082015250565b7f455243313135355472616461626c652373657443726561746f723a20494e564160008201527f4c49445f414444524553532e0000000000000000000000000000000000000000602082015250565b7f455243313135355472616461626c652363726561746f724f6e6c793a204f4e4c60008201527f595f43524541544f525f414c4c4f574544000000000000000000000000000000602082015250565b61461381613f46565b811461461e57600080fd5b50565b61462a81613f58565b811461463557600080fd5b50565b61464181613f64565b811461464c57600080fd5b50565b61465881613f90565b811461466357600080fd5b50565b61466f81613fc2565b811461467a57600080fd5b50565b61468681613fcc565b811461469157600080fd5b5056fea264697066735822122005da360626a79c135df1457b273a9f9a1ee391386a99d9e9bc9a962aaac9b24964736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
-----Decoded View---------------
Arg [0] : _proxyRegistries (address[]): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [2] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
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.