ETH Price: $2,564.45 (-16.91%)
 

Overview

Max Total Supply

1,440 FLOPPY

Holders

656

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FLOPPY
0x57dc4a5d290275b953ab837ff74115ee9ad07e06
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

1440 pieces of throwback tech updated for the future as NFTs. Fully on-chain and reacts to wallet. Brought to you by General Galactic Corporation (galactic.io)

# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
GalacticFloppyDisk

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 19 : GalacticFloppyDisk.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pragma solidity >=0.8.0 <0.9.0;
//SPDX-License-Identifier: MIT
import 'base64-sol/base64.sol';
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import './SVGBuilder.sol';
import './HexStrings.sol';
import './ToColor.sol';
// External Contracts Interfaces
abstract contract NFTContract {
function balanceOf(address owner) external virtual view returns (uint256);
}
interface IERC20 {
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
}
struct CoolSoftware {
NFTContract contractInterface;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 19 : base64.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0;
/// @title Base64
/// @author Brecht Devos - <brecht@loopring.org>
/// @notice Provides functions for encoding/decoding base64
library Base64 {
string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
bytes internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000"
hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000"
hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000"
hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000";
function encode(bytes memory data) internal pure returns (string memory) {
if (data.length == 0) return '';
// load the table into memory
string memory table = TABLE_ENCODE;
// multiply by 4/3 rounded up
uint256 encodedLen = 4 * ((data.length + 2) / 3);
// add some extra buffer at the end required for the writing
string memory result = new string(encodedLen + 32);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 3 of 19 : SafeMath.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 4 of 19 : Strings.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 5 of 19 : ERC721Enumerable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 6 of 19 : Ownable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/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.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 7 of 19 : Counters.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 8 of 19 : SVGBuilder.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
import './ToColor.sol';
struct colorSet {
bytes3 color1;
bytes3 color2;
bytes3 color3;
bytes3 color4;
bytes3 color5;
}
struct FileListing {
string textElements;
string[10] boringSoftwares;
string[10] specialSoftwares;
}
library SVGBuilder {
using ToColor for bytes3;
function generateSVGofToken(colorSet memory tokenColors, FileListing memory files, uint8 wackyPattern) public pure returns (string memory) {
string memory diskFill = tokenColors.color1.toColor();
string memory svg = string(abi.encodePacked(
"<svg viewBox='0 0 322.2 332.55' xmlns='http://www.w3.org/2000/svg'><style>.t { white-space: pre; fill: rgb(51, 51, 51); font: 11px monospace;
          }</style><defs><linearGradient id='a' x1='80.802' x2='254.2' y1='-28.879' y2='-28.879' gradientTransform='matrix(-.99682 0 0 -2.5057 319.72
          205.97)' gradientUnits='userSpaceOnUse'><stop stop-color='#878787' offset='0'/><stop stop-color='#fff' offset='.5'/><stop stop-color
          ='#878787' offset='1'/></linearGradient>"
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 9 of 19 : HexStrings.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
library HexStrings {
bytes16 internal constant ALPHABET = '0123456789abcdef';
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = '0';
buffer[1] = 'x';
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = ALPHABET[value & 0xf];
value >>= 4;
}
return string(buffer);
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 10 of 19 : ToColor.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
library ToColor {
bytes16 internal constant ALPHABET = '0123456789abcdef';
function toColor(bytes3 value) internal pure returns (string memory) {
bytes memory buffer = new bytes(6);
for (uint256 i = 0; i < 3; i++) {
buffer[i*2+1] = ALPHABET[uint8(value[i]) & 0xf];
buffer[i*2] = ALPHABET[uint8(value[i]>>4) & 0xf];
}
return string(abi.encodePacked("#", string(buffer)));
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 11 of 19 : ERC721.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 12 of 19 : IERC721Enumerable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 13 of 19 : IERC721.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 14 of 19 : IERC721Receiver.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 15 of 19 : IERC721Metadata.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 16 of 19 : Address.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 17 of 19 : Context.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 18 of 19 : ERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 19 of 19 : IERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"metadata": {
"useLiteralContent": true
},
"libraries": {
"contracts/SVGBuilder.sol": {
"SVGBuilder": "0x5610296d8bf05b992aadad6676a98db77363ca17"
}
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_NFT_NAME","type":"string"},{"internalType":"string","name":"_NFT_SYMBOL","type":"string"},{"internalType":"uint256","name":"_MAX_PER_ADDRESS","type":"uint256"},{"internalType":"uint256","name":"_AVAILABLE_SUPPLY","type":"uint256"},{"internalType":"uint16","name":"_WACKY_THRESHHOLD","type":"uint16"},{"internalType":"uint16","name":"_INSECURE_THRESHHOLD","type":"uint16"},{"internalType":"uint16","name":"_INFECTED_THRESHHOLD","type":"uint16"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"contractName","type":"string"}],"name":"ContractSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"mintIndex","type":"uint256"}],"name":"FloppyMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"active","type":"bool"}],"name":"SaleStateFlipped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"AVAILABLE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clearNFTContracts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNFTContracts","outputs":[{"components":[{"internalType":"contract NFTContract","name":"contractInterface","type":"address"},{"internalType":"string","name":"contractName","type":"string"},{"internalType":"string","name":"softwareName","type":"string"}],"internalType":"struct CoolSoftware[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"},{"internalType":"string","name":"contractName","type":"string"},{"internalType":"string","name":"softwareName","type":"string"}],"name":"setNFTContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610120604052600d805460ff191660011790553480156200001f57600080fd5b506040516200542d3803806200542d833981016040819052620000429162000277565b86866200004f33620000b6565b81516200006490600190602085019062000106565b5080516200007a90600290602084019062000106565b50505060a0949094526080929092526001600160f01b031960f091821b811660c05291811b821660e0529190911b1661010052506200037c9050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001149062000329565b90600052602060002090601f01602090048101928262000138576000855562000183565b82601f106200015357805160ff191683800117855562000183565b8280016001018555821562000183579182015b828111156200018357825182559160200191906001019062000166565b506200019192915062000195565b5090565b5b8082111562000191576000815560010162000196565b600082601f830112620001bd578081fd5b81516001600160401b0380821115620001da57620001da62000366565b604051601f8301601f19908116603f0116810190828211818310171562000205576200020562000366565b8160405283815260209250868385880101111562000221578485fd5b8491505b8382101562000244578582018301518183018401529082019062000225565b838211156200025557848385830101525b9695505050505050565b805161ffff811681146200027257600080fd5b919050565b600080600080600080600060e0888a03121562000292578283fd5b87516001600160401b0380821115620002a9578485fd5b620002b78b838c01620001ac565b985060208a0151915080821115620002cd578485fd5b50620002dc8a828b01620001ac565b9650506040880151945060608801519350620002fb608089016200025f565b92506200030b60a089016200025f565b91506200031b60c089016200025f565b905092959891949750929550565b600181811c908216806200033e57607f821691505b602082108114156200036057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c05160f01c60e05160f01c6101005160f01c615055620003d860003960006110960152600061106401526000611035015260008181610230015261075601526000818161034b01526106ed01526150556000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80636352211e116100f9578063b438e12e11610097578063e985e9c511610071578063e985e9c514610393578063f2fde38b146103cf578063f4f3b200146103e2578063f679076d146103f557600080fd5b8063b438e12e14610346578063b88d4fde1461036d578063c87b56dd1461038057600080fd5b80638da5cb5b116100d35780638da5cb5b1461030757806395d89b41146103185780639c3e808314610320578063a22cb4651461033357600080fd5b80636352211e146102d957806370a08231146102ec578063715018a6146102ff57600080fd5b806318160ddd1161016657806333b0b8fb1161014057806333b0b8fb1461029657806334918dfd146102ab57806342842e0e146102b35780634f6ccce7146102c657600080fd5b806318160ddd1461026857806323b872dd146102705780632f745c591461028357600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc146101eb578063095ea7b3146102165780630aaef2851461022b5780631249c58b14610260575b600080fd5b6101c16101bc36600461405d565b6103fd565b60405190151581526020015b60405180910390f35b6101de610428565b6040516101cd9190614bfa565b6101fe6101f93660046140ff565b6104ba565b6040516001600160a01b0390911681526020016101cd565b610229610224366004614016565b610554565b005b6102527f000000000000000000000000000000000000000000000000000000000000000081565b6040519081526020016101cd565b61022961066a565b600954610252565b61022961027e366004613eb9565b61088d565b610252610291366004614016565b6108be565b61029e610954565b6040516101cd9190614b5f565b610229610b18565b6102296102c1366004613eb9565b610b8f565b6102526102d43660046140ff565b610baa565b6101fe6102e73660046140ff565b610c4b565b6102526102fa366004613e65565b610cc2565b610229610d49565b6000546001600160a01b03166101fe565b6101de610d7f565b61022961032e366004613fa3565b610d8e565b610229610341366004613f76565b610ebf565b6102527f000000000000000000000000000000000000000000000000000000000000000081565b61022961037b366004613ef9565b610f84565b6101de61038e3660046140ff565b610fbc565b6101c16103a1366004613e81565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102296103dd366004613e65565b611235565b6102296103f0366004613e65565b6112d0565b6102296113fd565b60006001600160e01b0319821663780e9d6360e01b1480610422575061042282611433565b92915050565b60606001805461043790614eb7565b80601f016020809104026020016040519081016040528092919081815260200182805461046390614eb7565b80156104b05780601f10610485576101008083540402835291602001916104b0565b820191906000526020600020905b81548152906001019060200180831161049357829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166105385760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061055f82610c4b565b9050806001600160a01b0316836001600160a01b031614156105cd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161052f565b336001600160a01b03821614806105e957506105e981336103a1565b61065b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161052f565b6106658383611483565b505050565b6000610675600b5490565b905060006106848260016114f1565b9050600061069133610cc2565b905060006106a08260016114f1565b600d5490915060ff166106eb5760405162461bcd60e51b815260206004820152601360248201527253616c65206d7573742062652061637469766560681b604482015260640161052f565b7f00000000000000000000000000000000000000000000000000000000000000008311156107545760405162461bcd60e51b815260206004820152601660248201527557652072616e206f7574206f6620666c6f707069657360501b604482015260640161052f565b7f00000000000000000000000000000000000000000000000000000000000000008111156107c45760405162461bcd60e51b815260206004820152601960248201527f4d617820666c6f707079206469736b73206f627461696e656400000000000000604482015260640161052f565b6107ce3385611504565b6107dc600b80546001019055565b424485336040805160208101959095528401929092526060808401919091526bffffffffffffffffffffffff1991811b8216608084015230901b16609482015260a80160408051808303601f1901815291815281516020928301206000878152600e909352912055336001600160a01b03167f60411d7660eb1ef01cc94571639dd047c44a61dd07106bff7dbd27d1f52d8f0b8560405161087f91815260200190565b60405180910390a250505050565b610897338261151e565b6108b35760405162461bcd60e51b815260040161052f90614c94565b610665838383611615565b60006108c983610cc2565b821061092b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161052f565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546060906001600160a01b031633146109815760405162461bcd60e51b815260040161052f90614c5f565b600c805480602002602001604051908101604052809291908181526020016000905b82821015610b0f57600084815260209081902060408051606081019091526003850290910180546001600160a01b0316825260018101805492939192918401916109ec90614eb7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1890614eb7565b8015610a655780601f10610a3a57610100808354040283529160200191610a65565b820191906000526020600020905b815481529060010190602001808311610a4857829003601f168201915b50505050508152602001600282018054610a7e90614eb7565b80601f0160208091040260200160405190810160405280929190818152602001828054610aaa90614eb7565b8015610af75780601f10610acc57610100808354040283529160200191610af7565b820191906000526020600020905b815481529060010190602001808311610ada57829003601f168201915b505050505081525050815260200190600101906109a3565b50505050905090565b6000546001600160a01b03163314610b425760405162461bcd60e51b815260040161052f90614c5f565b600d805460ff8082161560ff1990921682179092556040519116151581527f710bbf0bcdcb35985b999576c56823590f7fa7a1500e9115f5ee3d13492a54869060200160405180910390a1565b61066583838360405180602001604052806000815250610f84565b6000610bb560095490565b8210610c185760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161052f565b60098281548110610c3957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600360205260408120546001600160a01b0316806104225760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161052f565b60006001600160a01b038216610d2d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161052f565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610d735760405162461bcd60e51b815260040161052f90614c5f565b610d7d60006117c0565b565b60606002805461043790614eb7565b6000546001600160a01b03163314610db85760405162461bcd60e51b815260040161052f90614c5f565b604080516060810182526001600160a01b0385811682526020808301868152938301859052600c805460018101825560009190915283517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c7600390920291820180546001600160a01b031916919094161783559351805193949293610e64937fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c801929190910190613c3b565b5060408201518051610e80916002840191602090910190613c3b565b5050507fa487ac50b89d7339cd0aba92368f9b7effa0a6a05d52dc2a1bb5c3e0b3cb260882604051610eb29190614bfa565b60405180910390a1505050565b6001600160a01b038216331415610f185760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161052f565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f8e338361151e565b610faa5760405162461bcd60e51b815260040161052f90614c94565b610fb684848484611810565b50505050565b6000818152600360205260409020546060906001600160a01b031661100f5760405162461bcd60e51b81526020600482015260096024820152681b9bdd08195e1a5cdd60ba1b604482015260640161052f565b600061101a83610c4b565b6000848152600e602052604081205491925061105a8261ffff7f000000000000000000000000000000000000000000000000000000000000000016611843565b9050600061108c837f000000000000000000000000000000000000000000000000000000000000000061ffff16611881565b905060006110be847f000000000000000000000000000000000000000000000000000000000000000061ffff166118b3565b905060006110cb85611b93565b905060006110e3876110dc88611db2565b86866129ec565b905060006110f78383878960ff1688612e5f565b90506000611192735610296d8bf05b992aadad6676a98db77363ca17637a796c1d86868b6040518463ffffffff1660e01b815260040161113993929190614ce5565b60006040518083038186803b15801561115157600080fd5b505af4158015611165573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261118d9190810190614095565b613151565b90506112066111a08c6132c5565b6040516020016111b09190614966565b6040516020818303038152906040526111c88d6132c5565b846111dd6001600160a01b038e1660146133df565b856040516020016111f29594939291906147e6565b604051602081830303815290604052613151565b60405160200161121691906149c8565b6040516020818303038152906040529950505050505050505050919050565b6000546001600160a01b0316331461125f5760405162461bcd60e51b815260040161052f90614c5f565b6001600160a01b0381166112c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161052f565b6112cd816117c0565b50565b6000546001600160a01b031633146112fa5760405162461bcd60e51b815260040161052f90614c5f565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a082319060240160206040518083038186803b15801561134357600080fd5b505afa158015611357573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137b9190614117565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b1580156113c157600080fd5b505af11580156113d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f99190614041565b5050565b6000546001600160a01b031633146114275760405162461bcd60e51b815260040161052f90614c5f565b610d7d600c6000613cbf565b60006001600160e01b031982166380ac58cd60e01b148061146457506001600160e01b03198216635b5e139f60e01b145b8061042257506301ffc9a760e01b6001600160e01b0319831614610422565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114b882610c4b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006114fd8284614ded565b9392505050565b6113f982826040518060200160405280600081525061357a565b6000818152600360205260408120546001600160a01b03166115975760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161052f565b60006115a283610c4b565b9050806001600160a01b0316846001600160a01b031614806115dd5750836001600160a01b03166115d2846104ba565b6001600160a01b0316145b8061160d57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661162882610c4b565b6001600160a01b0316146116905760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161052f565b6001600160a01b0382166116f25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161052f565b6116fd8383836135ad565b611708600082611483565b6001600160a01b0383166000908152600460205260408120805460019290611731908490614e5d565b90915550506001600160a01b038216600090815260046020526040812080546001929061175f908490614ded565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61181b848484611615565b61182784848484613665565b610fb65760405162461bcd60e51b815260040161052f90614c0d565b60008060088460141a61ffff16901b8460131a17905061ffff8116831061186b57600061160d565b611876600382614f0d565b61160d906001614e05565b60008060088460121a61ffff16901b8460111a17905061ffff811683106118a957600061160d565b5060019392505050565b6040805161028081018252600d61024082018181526c4d69636861656c616e67656c6f60981b61026084015282528251808401845260098082526822bab937b832969c9960b91b60208381019190915280850192909252845180860186526007808252664c65616e64726f60c81b82850152858701919091528551808701875260068082526514d513d3915160d21b8286015260608781019290925287518089018952600a80825269444f532e436173696e6f60b01b8288015260808901919091528851808a018a52600580825264212920b4a760d91b8289015260a08a01919091528951808b018b52918252692227a9972bb0b635b2b960b11b8288015260c08901919091528851808a018a52908152644e6174617360d81b8187015260e0880152875180890189528481526839313120566972757360b81b818701526101008801528751808901895260048152634861726560e01b81870152610120880152875180890189529586526c59616e6b656520446f6f646c6560981b86860152610140870195909552865180880188528281526627b732a430b63360c91b81860152610160870152865180880188528281526626b5a9afbb34b960c91b81860152610180870152865180880188528381526811da1bdcdd10985b1b60ba1b818601526101a08701528651808801885294855265456c7669726160d01b858501526101c08601949094528551808701875291825268416d62756c656e636560b81b828401526101e085019190915284518086018652818152664974686171756160c81b8184015261020085015284518086019095528452664361736361646560c81b90840152610220820192909252600060088560101a61ffff16901b85600f1a17905061ffff81168410611b565760405180602001604052806000815250611b8a565b81611b66601261ffff8416614f2e565b60128110611b8457634e487b7160e01b600052603260045260246000fd5b60200201515b95945050505050565b6040805160a08082018352600080835260208084018290528385018290526060840182905260808401829052845192830190945284901a60f81b6001600160f81b03191660ff60f01b600186901a60f01b161760ff60e81b600286901a60e81b161781529091810160108460051a60f81b6001600160f81b031916901c60088560041a60f81b6001600160f81b031916901c8560031a60f81b6001600160f81b031916176001600160f01b031916176001600160e81b0319168152602001601084600860208110611c7457634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b031916901c60088560071a60f81b6001600160f81b031916901c8560061a60f81b6001600160f81b031916176001600160f01b031916176001600160e81b0319168152602001601084600b60208110611ce857634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b031916901c600885600a1a60f81b6001600160f81b031916901c8560091a60f81b6001600160f81b031916176001600160f01b031916176001600160e81b0319168152602001601084600e60208110611d5c57634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b031916901c600885600d1a60f81b6001600160f81b031916901c85600c1a60f81b6001600160f81b031916176001600160f01b031916176001600160e81b0319168152509050919050565b611dba613ce0565b60006040518061088001604052806040518060400160405280600f81526020016e576f72645065726665637420352e3160881b81525081526020016040518060400160405280600e81526020016d4c6f7475732031323320332e312b60901b8152508152602001604051806040016040528060138152602001724e6f72746f6e20436d6d6e6472205b43524b5d60681b81525081526020016040518060400160405280601081526020016f516d6f64656d20342e352028444f532960801b815250815260200160405180604001604052806011815260200170233932b2a830b9b1b0b61023a799993b1960791b81525081526020016040518060400160405280600d81526020016c15da5b1918d85d08109094c80d609a1b81525081526020016040518060400160405280600e81526020016d41436944447261772076302e303560901b8152508152602001604051806040016040528060098152602001686d6f7573652e636f6d60b81b81525081526020016040518060400160405280600f81526020016e2124a7a92caa242ca6a4a1a0aa27a960891b8152508152602001604051806040016040528060088152602001670cce0d88151954d560c21b81525081526020016040518060400160405280600c81526020016b474f52494c4c41532e42415360a01b8152508152602001604051806040016040528060088152602001672bb7b93229ba30b960c11b81525081526020016040518060400160405280600b81526020016a160b551c99594811dbdb1960aa1b81525081526020016040518060400160405280600c81526020016b50726f436f6d6d20506c757360a01b8152508152602001604051806040016040528060078152602001666442617365203360c81b815250815260200160405180604001604052806009815260200168706b7a69702e65786560b81b81525081526020016040518060400160405280600481526020016351454d4d60e01b81525081526020016040518060400160405280600681526020016544617a7a6c6560d01b81525081526020016040518060400160405280600c81526020016b139bdc9d1bdb8811da1bdcdd60a21b8152508152602001604051806040016040528060068152602001655a6d6f64656d60d01b8152508152602001604051806040016040528060088152602001674963654d6f64656d60c01b81525081526020016040518060400160405280600381526020016220a92560e91b8152508152602001604051806040016040528060088152602001674c61704c696e6b3360c01b81525081526020016040518060400160405280600881526020016713995bd4185a5b9d60c21b81525081526020016040518060400160405280600d81526020016c717569636b6d656e752049494960981b81525081526020016040518060400160405280600b81526020016a26a996a227a9901b17191960a91b81525081526020016040518060400160405280600f81526020016e34a6a82aa629a2902a2930a1a5b2a960891b81525081526020016040518060400160405280600e81526020016d21b7b6b6b0b73232b91025a2a2a760911b8152508152602001604051806040016040528060078152602001664757426173696360c81b81525081526020016040518060400160405280600381526020016220a62360e91b81525081526020016040518060400160405280600381526020016216969560ea1b8152508152602001604051806040016040528060078152602001664e65744861636b60c81b81525081526020016040518060400160405280600c81526020016b496e6971756974792042425360a01b815250815260200160405180604001604052806004815260200163131bd49160e21b81525081526020016040518060400160405280600e81526020016d426f726c616e6420547572626f4360901b81525081526020016040518060400160405280601081526020016f4e6f72746f6e205574696c697469657360801b815250815260200160405180604001604052806006815260200165466f7850726f60d01b81525081526020016040518060400160405280600e81526020016d5072696e742053686f702050726f60901b81525081526020016040518060400160405280600b81526020016a5175617474726f2050726f60a81b81525081526020016040518060400160405280600c81526020016b52656e65676164652042425360a01b8152508152602001604051806040016040528060088152602001675370696e7269746560c01b81525081526020016040518060400160405280600881526020016715195b1959d85c9960c21b81525081526020016040518060400160405280600f81526020016e2a3ab931379020b9b9b2b6b13632b960891b815250815260200160405180604001604052806005815260200164585472656560d81b81525081526020016040518060400160405280600c81526020016b47414c4143547e312e45584560a01b81525081526020016040518060400160405280600e81526020016d25b4b73393b99028bab2b9ba101960911b81525081526020016040518060400160405280600f81526020016e0a6c6dee4e8c6d0cac8408ac2e4e8d608b1b8152508152602001604051806040016040528060088152602001674c656d6d696e677360c01b8152508152602001604051806040016040528060048152602001635a4f524b60e01b81525081526020016040518060400160405280601081526020016f43616c69666f726e69612047616d657360801b8152508152602001604051806040016040528060058152602001642432bc32b760d91b815250815260200160405180604001604052806011815260200170149a5cd9481bd9881d1a1948151c9a5859607a1b81525081526020016040518060400160405280601081526020016f5072696e6365206f662050657273696160801b81525081526020016040518060400160405280600781526020016653696d4369747960c81b81525081526020016040518060400160405280600b81526020016a14dc1858d948145d595cdd60aa1b81525081526020016040518060400160405280600e81526020016d313630b1b59031b0bab6323937b760911b815250815260200160405180604001604052806007815260200166353ab6b836b0b760c91b81525081526020016040518060400160405280600c81526020016b626174746c6520636865737360a01b8152508152602001604051806040016040528060088152602001671dd85c98dc98599d60c21b815250815260200160405180604001604052806008815260200167756c74696d61203560c01b8152508152602001604051806040016040528060078152602001666e65746861636b60c81b81525081526020016040518060400160405280600981526020016873796e64696361746560b81b815250815260200160405180604001604052806011815260200170616c6f6e6520696e20746865206461726b60781b81525081526020016040518060400160405280601781526020017f736563726574206f66206d6f6e6b65792069736c616e640000000000000000008152508152602001604051806040016040528060128152602001713c16bbb4b733903a34b2903334b3ba3432b960711b81525081526020016040518060400160405280600a8152602001691cdd1c9bdb99da1bdb1960b21b81525081526020016040518060400160405280600381526020016231b4bb60e91b815250815260200160405180604001604052806008815260200167105c9ad85b9bda5960c21b815250815250905061289f613ce0565b60006128b06002601587901a614f42565b6128bb906001614e05565b60ff16905060005b818110156129e25760006044876128db846016614ded565b602081106128f957634e487b7160e01b600052603260045260246000fd5b6129059291901a614f2e565b90506000612914600b83614f42565b61291f906001614e05565b9050604051806060016040528087846044811061294c57634e487b7160e01b600052603260045260246000fd5b602002015181526020018260ff168152602001828a86601761296e9190614ded565b6020811061298c57634e487b7160e01b600052603260045260246000fd5b6129989291901a614f42565b6129a3906001614e05565b60ff1690528584600281106129c857634e487b7160e01b600052603260045260246000fd5b6020020152508190506129da81614ef2565b9150506128c3565b5090949350505050565b6129f4613d29565b6000806129ff613d29565b60005b6002811015612b7d57612a16846017614e3e565b612a21906020614ded565b92506000888260028110612a4557634e487b7160e01b600052603260045260246000fd5b602002015151511115612b6b578151612a5d846132c5565b898360028110612a7d57634e487b7160e01b600052603260045260246000fd5b602002015151612ab48b8560028110612aa657634e487b7160e01b600052603260045260246000fd5b6020020151604001516132c5565b612ae58c8660028110612ad757634e487b7160e01b600052603260045260246000fd5b6020020151602001516132c5565b604051602001612af99594939291906143b7565b60408051601f198184030181529190528252878160028110612b2b57634e487b7160e01b600052603260045260246000fd5b602002015160000151826020015182600a8110612b5857634e487b7160e01b600052603260045260246000fd5b602002015283612b6781614ef2565b9450505b80612b7581614ef2565b915050612a02565b508515612bd957612b8f836017614e3e565b612b9a906020614ded565b8151909250612ba8836132c5565b604051602001612bb99291906145a8565b60408051601f19818403018152919052815282612bd581614ef2565b9350505b60005b600c54811015612e25576000600c8281548110612c0957634e487b7160e01b600052603260045260246000fd5b60009182526020909120600390910201546040516370a0823160e01b81526001600160a01b038c81166004830152909116906370a082319060240160206040518083038186803b158015612c5c57600080fd5b505afa158015612c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c949190614117565b90508015612e12576007851015612e1257612cb0856017614e3e565b612cbb906020614ded565b8351909450612cc9856132c5565b600c8481548110612cea57634e487b7160e01b600052603260045260246000fd5b9060005260206000209060030201600201604051602001612d0d93929190614491565b60408051601f198184030181529190528352600c805483908110612d4157634e487b7160e01b600052603260045260246000fd5b90600052602060002090600302016002018054612d5d90614eb7565b80601f0160208091040260200160405190810160405280929190818152602001828054612d8990614eb7565b8015612dd65780601f10612dab57610100808354040283529160200191612dd6565b820191906000526020600020905b815481529060010190602001808311612db957829003601f168201915b5050505050836040015183600a8110612dff57634e487b7160e01b600052603260045260246000fd5b602002015284612e0e81614ef2565b9550505b5080612e1d81614ef2565b915050612bdc565b50845115612e54578051604051612e4191908790602001614627565b60408051601f1981840301815291905281525b979650505050505050565b60606000612e7a87600001516001600160e81b03191661376f565b612e9188602001516001600160e81b03191661376f565b604051602001612ea2929190614a3d565b604051602081830303815290604052905060005b600a811015612f79576000876020015182600a8110612ee557634e487b7160e01b600052603260045260246000fd5b6020020151511115612f675781612efb826132c5565b604051602001612f0b9190614afa565b604051602081830303815290604052886020015183600a8110612f3e57634e487b7160e01b600052603260045260246000fd5b6020020151604051602001612f55939291906141bc565b60405160208183030381529060405291505b80612f7181614ef2565b915050612eb6565b5060005b600a811015613040576000876040015182600a8110612fac57634e487b7160e01b600052603260045260246000fd5b602002015151111561302e5781612fc2826132c5565b604051602001612fd29190614a0d565b604051602081830303815290604052886040015183600a811061300557634e487b7160e01b600052603260045260246000fd5b602002015160405160200161301c939291906141bc565b60405160208183030381529060405291505b8061303881614ef2565b915050612f7d565b50841561306a57806040516020016130589190614353565b60405160208183030381529060405290505b82511561309657808360405160200161308492919061424f565b60405160208183030381529060405290505b831561314757606084600114156130cb575060408051808201909152600781526643726f7373657360c81b6020820152613121565b84600214156130f657506040805180820190915260058152644f6d62726560d81b6020820152613121565b84600314156131215750604080518082019091526009815268141bdb1ad848111bdd60ba1b60208201525b81816040516020016131349291906142cf565b6040516020818303038152906040529150505b9695505050505050565b606081516000141561317157505060408051602081019091526000815290565b6000604051806060016040528060408152602001614fe060409139905060006003845160026131a09190614ded565b6131aa9190614e2a565b6131b5906004614e3e565b905060006131c4826020614ded565b67ffffffffffffffff8111156131ea57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613214576020820181803683370190505b509050818152600183018586518101602084015b81831015613280576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825350600101613228565b60038951066001811461329a57600281146132ab576132b7565b613d3d60f01b6001198301526132b7565b603d60f81b6000198301525b509398975050505050505050565b6060816132e95750506040805180820190915260018152600360fc1b602082015290565b8160005b811561331357806132fd81614ef2565b915061330c9050600a83614e2a565b91506132ed565b60008167ffffffffffffffff81111561333c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613366576020820181803683370190505b5090505b841561160d5761337b600183614e5d565b9150613388600a86614f2e565b613393906030614ded565b60f81b8183815181106133b657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506133d8600a86614e2a565b945061336a565b606060006133ee836002614e3e565b6133f9906002614ded565b67ffffffffffffffff81111561341f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613449576020820181803683370190505b509050600360fc1b8160008151811061347257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106134af57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060006134d3846002614e3e565b6134de906001614ded565b90505b6001811115613572576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061352057634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061354457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9361356b81614ea0565b90506134e1565b509392505050565b6135848383613933565b6135916000848484613665565b6106655760405162461bcd60e51b815260040161052f90614c0d565b6001600160a01b0383166136085761360381600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b61362b565b816001600160a01b0316836001600160a01b03161461362b5761362b8382613a81565b6001600160a01b0382166136425761066581613b1e565b826001600160a01b0316826001600160a01b031614610665576106658282613bf7565b60006001600160a01b0384163b1561376757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906136a9903390899088908890600401614b2c565b602060405180830381600087803b1580156136c357600080fd5b505af19250505080156136f3575060408051601f3d908101601f191682019092526136f091810190614079565b60015b61374d573d808015613721576040519150601f19603f3d011682016040523d82523d6000602084013e613726565b606091505b5080516137455760405162461bcd60e51b815260040161052f90614c0d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061160d565b50600161160d565b6040805160068082528183019092526060916000919060208201818036833701905050905060005b600381101561390a576f181899199a1a9b1b9c1cb0b131b232b360811b8482600381106137d457634e487b7160e01b600052603260045260246000fd5b1a600f16601081106137f657634e487b7160e01b600052603260045260246000fd5b1a60f81b82613806836002614e3e565b613811906001614ded565b8151811061382f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506f181899199a1a9b1b9c1cb0b131b232b360811b600485836003811061387c57634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b031916901c60f81c600f1660ff16601081106138b357634e487b7160e01b600052603260045260246000fd5b1a60f81b826138c3836002614e3e565b815181106138e157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053508061390281614ef2565b915050613797565b508060405160200161391c919061499f565b604051602081830303815290604052915050919050565b6001600160a01b0382166139895760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161052f565b6000818152600360205260409020546001600160a01b0316156139ee5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161052f565b6139fa600083836135ad565b6001600160a01b0382166000908152600460205260408120805460019290613a23908490614ded565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001613a8e84610cc2565b613a989190614e5d565b600083815260086020526040902054909150808214613aeb576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090613b3090600190614e5d565b6000838152600a602052604081205460098054939450909284908110613b6657634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060098381548110613b9557634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480613bdb57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613c0283610cc2565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b828054613c4790614eb7565b90600052602060002090601f016020900481019282613c695760008555613caf565b82601f10613c8257805160ff1916838001178555613caf565b82800160010185558215613caf579182015b82811115613caf578251825591602001919060010190613c94565b50613cbb929150613d55565b5090565b50805460008255600302906000526020600020908101906112cd9190613d6a565b60405180604001604052806002905b613d1360405180606001604052806060815260200160008152602001600081525090565b815260200190600190039081613cef5790505090565b604051806060016040528060608152602001613d43613da6565b8152602001613d50613da6565b905290565b5b80821115613cbb5760008155600101613d56565b80821115613cbb5780546001600160a01b03191681556000613d8f6001830182613dce565b613d9d600283016000613dce565b50600301613d6a565b604051806101400160405280600a905b6060815260200190600190039081613db65790505090565b508054613dda90614eb7565b6000825580601f10613dea575050565b601f0160209004906000526020600020908101906112cd9190613d55565b6000613e1b613e1684614dc5565b614d94565b9050828152838383011115613e2f57600080fd5b828260208301376000602084830101529392505050565b600082601f830112613e56578081fd5b6114fd83833560208501613e08565b600060208284031215613e76578081fd5b81356114fd81614fa6565b60008060408385031215613e93578081fd5b8235613e9e81614fa6565b91506020830135613eae81614fa6565b809150509250929050565b600080600060608486031215613ecd578081fd5b8335613ed881614fa6565b92506020840135613ee881614fa6565b929592945050506040919091013590565b60008060008060808587031215613f0e578081fd5b8435613f1981614fa6565b93506020850135613f2981614fa6565b925060408501359150606085013567ffffffffffffffff811115613f4b578182fd5b8501601f81018713613f5b578182fd5b613f6a87823560208401613e08565b91505092959194509250565b60008060408385031215613f88578182fd5b8235613f9381614fa6565b91506020830135613eae81614fbb565b600080600060608486031215613fb7578283fd5b8335613fc281614fa6565b9250602084013567ffffffffffffffff80821115613fde578384fd5b613fea87838801613e46565b93506040860135915080821115613fff578283fd5b5061400c86828701613e46565b9150509250925092565b60008060408385031215614028578182fd5b823561403381614fa6565b946020939093013593505050565b600060208284031215614052578081fd5b81516114fd81614fbb565b60006020828403121561406e578081fd5b81356114fd81614fc9565b60006020828403121561408a578081fd5b81516114fd81614fc9565b6000602082840312156140a6578081fd5b815167ffffffffffffffff8111156140bc578182fd5b8201601f810184136140cc578182fd5b80516140da613e1682614dc5565b8181528560208385010111156140ee578384fd5b611b8a826020830160208601614e74565b600060208284031215614110578081fd5b5035919050565b600060208284031215614128578081fd5b5051919050565b600082610140810183835b600a811015614169578383038752614153838351614174565b602097880197909350919091019060010161413a565b509095945050505050565b6000815180845261418c816020860160208601614e74565b601f01601f19169290920160200192915050565b600081516141b2818560208601614e74565b9290920192915050565b600084516141ce818460208901614e74565b600b60fa1b9083019081526f3d913a3930b4ba2fba3cb832911d101160811b60018201528451614205816011840160208901614e74565b6c111610113b30b63ab2911d101160991b60119290910191820152835161423381601e840160208801614e74565b61227d60f01b601e929091019182015260200195945050505050565b60008351614261818460208801614e74565b600b60fa1b9083019081527f7b2274726169745f74797065223a2022486173205669727573222c202276616c6001820152653ab2911d101160d11b602182015283516142b4816027840160208801614e74565b61227d60f01b60279290910191820152602901949350505050565b600083516142e1818460208801614e74565b600b60fa1b9083019081527f7b2274726169745f74797065223a20225761636b79205061747465726e222c20600182015269113b30b63ab2911d101160b11b6021820152835161433881602b840160208801614e74565b61227d60f01b602b9290910191820152602d01949350505050565b60008251614365818460208701614e74565b600b60fa1b9201918252507f7b2274726169745f74797065223a2022496e736563757265204469736b222c2060018201526f2276616c7565223a202274727565227d60801b6021820152603101919050565b600086516143c9818460208b01614e74565b793c7465787420636c6173733d27742720783d2734392720793d2760301b908301908152865161440081601a840160208b01614e74565b630139f15160e51b601a9290910191820152855161442581601e840160208a01614e74565b650103234b9b5960d51b601e9290910191820152845161444c816024840160208901614e74565b602f60f81b60249290910191820152835161446e816025840160208801614e74565b661e17ba32bc3a1f60c91b60259290910191820152602c01979650505050505050565b6000845160206144a48285838a01614e74565b793c7465787420636c6173733d27742720783d2734392720793d2760301b91840191825285516144da81601a8501848a01614e74565b630139f15160e51b601a93909101928301528454601e908490600181811c908083168061450857607f831692505b86831081141561452657634e487b7160e01b89526022600452602489fd5b80801561453a576001811461454f5761457f565b60ff198516898801528389018701955061457f565b60008c8152602090208a5b858110156145755781548b82018a015290840190890161455a565b505086848a010195505b505050505061459b81661e17ba32bc3a1f60c91b815260070190565b9998505050505050505050565b600083516145ba818460208801614e74565b793c7465787420636c6173733d27742720783d2734392720793d2760301b90830190815283516145f181601a840160208801614e74565b7f273e2a206d6e656d6f6e69632e7478743c2f746578743e000000000000000000601a9290910191820152603101949350505050565b60008351614639818460208801614e74565b7f3c7465787420783d273131302720793d2731303027207374796c653d2766696c9083019081527f6c3a20726762283235352c203130302c20313030293b20666f6e742d66616d6960208201527f6c793a20736173657269663b20666f6e742d73697a653a20323870783b20776860408201527f6974652d73706163653a207072653b20666f6e742d7374796c653a206974616c60608201527f69633b20666f6e742d7765696768743a20626f6c643b27207374726f6b652d7760808201527f696474683d273127207374726f6b653d2723306230303030393927207465787460a08201527f2d616e63686f723d276d6964646c652720646f6d696e616e742d626173656c6960c08201527f6e653d2763656e7472616c27207472616e73666f726d3d27726f74617465282d60e08201527f323520313030203029273e3c747370616e3e496e66656374656420776974683c6101008201527f2f747370616e3e3c747370616e20783d273130302720793d27313330273e0000610120820152611b8a6147c961013e8301866141a0565b7010909e17ba39b830b71f1e17ba32bc3a1f60791b815260110190565b683d913730b6b2911d1160b91b8152855160009061480b816009850160208b01614e74565b71111610113232b9b1b934b83a34b7b7111d1160711b6009918401918201527f5468697320466c6f707079204973205261646963616c21000000000000000000601b8201527f222c202265787465726e616c5f75726c223a2268747470733a2f2f666c6f7070603282015274792e67616c61637469632e696f2f3f746f6b656e3d60581b605282015286516148a7816067840160208b01614e74565b71222c202261747472696275746573223a205b60701b6067929091019182015285516148da816079840160208a01614e74565b61459b61495861495261492961491061490a6079878901016b2e96101137bbb732b9111d1160a11b8152600c0190565b8b6141a0565b6c1116101134b6b0b3b2911d101160991b8152600d0190565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c0000000000008152601a0190565b876141a0565b61227d60f01b815260020190565b7047616c616374696320466c6f707079202360781b815260008251614992816011850160208701614e74565b9190910160110192915050565b602360f81b8152600082516149bb816001850160208701614e74565b9190910160010192915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251614a0081601d850160208701614e74565b91909101601d0192915050565b67436f6f6c46696c6560c01b815260008251614a30816008850160208701614e74565b9190910160080192915050565b7f7b2274726169745f74797065223a20224469736b20436f6c6f72222c20227661815266363ab2911d101160c91b602082015260008351614a85816027850160208801614e74565b62089f4b60ea1b6027918401918201527f7b2274726169745f74797065223a20224c6162656c20436f6c6f72222c202276602a8201526730b63ab2911d101160c11b604a8201528351614adf816052840160208801614e74565b61227d60f01b60529290910191820152605401949350505050565b69426f72696e6746696c6560b01b815260008251614b1f81600a850160208701614e74565b91909101600a0192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061314790830184614174565b60006020808301818452808551808352604092508286019150828160051b870101848801865b83811015614bec57888303603f19018552815180516001600160a01b0316845287810151606089860181905290614bbe82870182614174565b91505087820151915084810388860152614bd88183614174565b968901969450505090860190600101614b85565b509098975050505050505050565b6020815260006114fd6020830184614174565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600062ffffff60e81b8086511683528060208701511660208401528060408701511660408401528060608701511660608401528060808701511660808401525060e060a08301528351606060e0840152614d43610140840182614174565b9050602085015160df198085840301610100860152614d62838361412f565b925060408701519150808584030161012086015250614d81828261412f565b9250505061160d60c083018460ff169052565b604051601f8201601f1916810167ffffffffffffffff81118282101715614dbd57614dbd614f90565b604052919050565b600067ffffffffffffffff821115614ddf57614ddf614f90565b50601f01601f191660200190565b60008219821115614e0057614e00614f64565b500190565b600060ff821660ff84168060ff03821115614e2257614e22614f64565b019392505050565b600082614e3957614e39614f7a565b500490565b6000816000190483118215151615614e5857614e58614f64565b500290565b600082821015614e6f57614e6f614f64565b500390565b60005b83811015614e8f578181015183820152602001614e77565b83811115610fb65750506000910152565b600081614eaf57614eaf614f64565b506000190190565b600181811c90821680614ecb57607f821691505b60208210811415614eec57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415614f0657614f06614f64565b5060010190565b600061ffff80841680614f2257614f22614f7a565b92169190910692915050565b600082614f3d57614f3d614f7a565b500690565b600060ff831680614f5557614f55614f7a565b8060ff84160691505092915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146112cd57600080fd5b80151581146112cd57600080fd5b6001600160e01b0319811681146112cd57600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220f228470a4feb2c6e688b465923fa512551f307ebc7378701da581c7d14f0622964736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000005a0000000000000000000000000000000000000000000000000000000000000d6d8000000000000000000000000000000000000000000000000000000000000ffdc000000000000000000000000000000000000000000000000000000000000ea60000000000000000000000000000000000000000000000000000000000000001247616c6163746963466c6f7070794469736b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006464c4f5050590000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80636352211e116100f9578063b438e12e11610097578063e985e9c511610071578063e985e9c514610393578063f2fde38b146103cf578063f4f3b200146103e2578063f679076d146103f557600080fd5b8063b438e12e14610346578063b88d4fde1461036d578063c87b56dd1461038057600080fd5b80638da5cb5b116100d35780638da5cb5b1461030757806395d89b41146103185780639c3e808314610320578063a22cb4651461033357600080fd5b80636352211e146102d957806370a08231146102ec578063715018a6146102ff57600080fd5b806318160ddd1161016657806333b0b8fb1161014057806333b0b8fb1461029657806334918dfd146102ab57806342842e0e146102b35780634f6ccce7146102c657600080fd5b806318160ddd1461026857806323b872dd146102705780632f745c591461028357600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc146101eb578063095ea7b3146102165780630aaef2851461022b5780631249c58b14610260575b600080fd5b6101c16101bc36600461405d565b6103fd565b60405190151581526020015b60405180910390f35b6101de610428565b6040516101cd9190614bfa565b6101fe6101f93660046140ff565b6104ba565b6040516001600160a01b0390911681526020016101cd565b610229610224366004614016565b610554565b005b6102527f000000000000000000000000000000000000000000000000000000000000000581565b6040519081526020016101cd565b61022961066a565b600954610252565b61022961027e366004613eb9565b61088d565b610252610291366004614016565b6108be565b61029e610954565b6040516101cd9190614b5f565b610229610b18565b6102296102c1366004613eb9565b610b8f565b6102526102d43660046140ff565b610baa565b6101fe6102e73660046140ff565b610c4b565b6102526102fa366004613e65565b610cc2565b610229610d49565b6000546001600160a01b03166101fe565b6101de610d7f565b61022961032e366004613fa3565b610d8e565b610229610341366004613f76565b610ebf565b6102527f00000000000000000000000000000000000000000000000000000000000005a081565b61022961037b366004613ef9565b610f84565b6101de61038e3660046140ff565b610fbc565b6101c16103a1366004613e81565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102296103dd366004613e65565b611235565b6102296103f0366004613e65565b6112d0565b6102296113fd565b60006001600160e01b0319821663780e9d6360e01b1480610422575061042282611433565b92915050565b60606001805461043790614eb7565b80601f016020809104026020016040519081016040528092919081815260200182805461046390614eb7565b80156104b05780601f10610485576101008083540402835291602001916104b0565b820191906000526020600020905b81548152906001019060200180831161049357829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166105385760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061055f82610c4b565b9050806001600160a01b0316836001600160a01b031614156105cd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161052f565b336001600160a01b03821614806105e957506105e981336103a1565b61065b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161052f565b6106658383611483565b505050565b6000610675600b5490565b905060006106848260016114f1565b9050600061069133610cc2565b905060006106a08260016114f1565b600d5490915060ff166106eb5760405162461bcd60e51b815260206004820152601360248201527253616c65206d7573742062652061637469766560681b604482015260640161052f565b7f00000000000000000000000000000000000000000000000000000000000005a08311156107545760405162461bcd60e51b815260206004820152601660248201527557652072616e206f7574206f6620666c6f707069657360501b604482015260640161052f565b7f00000000000000000000000000000000000000000000000000000000000000058111156107c45760405162461bcd60e51b815260206004820152601960248201527f4d617820666c6f707079206469736b73206f627461696e656400000000000000604482015260640161052f565b6107ce3385611504565b6107dc600b80546001019055565b424485336040805160208101959095528401929092526060808401919091526bffffffffffffffffffffffff1991811b8216608084015230901b16609482015260a80160408051808303601f1901815291815281516020928301206000878152600e909352912055336001600160a01b03167f60411d7660eb1ef01cc94571639dd047c44a61dd07106bff7dbd27d1f52d8f0b8560405161087f91815260200190565b60405180910390a250505050565b610897338261151e565b6108b35760405162461bcd60e51b815260040161052f90614c94565b610665838383611615565b60006108c983610cc2565b821061092b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161052f565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546060906001600160a01b031633146109815760405162461bcd60e51b815260040161052f90614c5f565b600c805480602002602001604051908101604052809291908181526020016000905b82821015610b0f57600084815260209081902060408051606081019091526003850290910180546001600160a01b0316825260018101805492939192918401916109ec90614eb7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1890614eb7565b8015610a655780601f10610a3a57610100808354040283529160200191610a65565b820191906000526020600020905b815481529060010190602001808311610a4857829003601f168201915b50505050508152602001600282018054610a7e90614eb7565b80601f0160208091040260200160405190810160405280929190818152602001828054610aaa90614eb7565b8015610af75780601f10610acc57610100808354040283529160200191610af7565b820191906000526020600020905b815481529060010190602001808311610ada57829003601f168201915b505050505081525050815260200190600101906109a3565b50505050905090565b6000546001600160a01b03163314610b425760405162461bcd60e51b815260040161052f90614c5f565b600d805460ff8082161560ff1990921682179092556040519116151581527f710bbf0bcdcb35985b999576c56823590f7fa7a1500e9115f5ee3d13492a54869060200160405180910390a1565b61066583838360405180602001604052806000815250610f84565b6000610bb560095490565b8210610c185760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161052f565b60098281548110610c3957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600360205260408120546001600160a01b0316806104225760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161052f565b60006001600160a01b038216610d2d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161052f565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610d735760405162461bcd60e51b815260040161052f90614c5f565b610d7d60006117c0565b565b60606002805461043790614eb7565b6000546001600160a01b03163314610db85760405162461bcd60e51b815260040161052f90614c5f565b604080516060810182526001600160a01b0385811682526020808301868152938301859052600c805460018101825560009190915283517fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c7600390920291820180546001600160a01b031916919094161783559351805193949293610e64937fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c801929190910190613c3b565b5060408201518051610e80916002840191602090910190613c3b565b5050507fa487ac50b89d7339cd0aba92368f9b7effa0a6a05d52dc2a1bb5c3e0b3cb260882604051610eb29190614bfa565b60405180910390a1505050565b6001600160a01b038216331415610f185760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161052f565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f8e338361151e565b610faa5760405162461bcd60e51b815260040161052f90614c94565b610fb684848484611810565b50505050565b6000818152600360205260409020546060906001600160a01b031661100f5760405162461bcd60e51b81526020600482015260096024820152681b9bdd08195e1a5cdd60ba1b604482015260640161052f565b600061101a83610c4b565b6000848152600e602052604081205491925061105a8261ffff7f000000000000000000000000000000000000000000000000000000000000d6d816611843565b9050600061108c837f000000000000000000000000000000000000000000000000000000000000ffdc61ffff16611881565b905060006110be847f000000000000000000000000000000000000000000000000000000000000ea6061ffff166118b3565b905060006110cb85611b93565b905060006110e3876110dc88611db2565b86866129ec565b905060006110f78383878960ff1688612e5f565b90506000611192735610296d8bf05b992aadad6676a98db77363ca17637a796c1d86868b6040518463ffffffff1660e01b815260040161113993929190614ce5565b60006040518083038186803b15801561115157600080fd5b505af4158015611165573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261118d9190810190614095565b613151565b90506112066111a08c6132c5565b6040516020016111b09190614966565b6040516020818303038152906040526111c88d6132c5565b846111dd6001600160a01b038e1660146133df565b856040516020016111f29594939291906147e6565b604051602081830303815290604052613151565b60405160200161121691906149c8565b6040516020818303038152906040529950505050505050505050919050565b6000546001600160a01b0316331461125f5760405162461bcd60e51b815260040161052f90614c5f565b6001600160a01b0381166112c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161052f565b6112cd816117c0565b50565b6000546001600160a01b031633146112fa5760405162461bcd60e51b815260040161052f90614c5f565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a082319060240160206040518083038186803b15801561134357600080fd5b505afa158015611357573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137b9190614117565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b1580156113c157600080fd5b505af11580156113d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f99190614041565b5050565b6000546001600160a01b031633146114275760405162461bcd60e51b815260040161052f90614c5f565b610d7d600c6000613cbf565b60006001600160e01b031982166380ac58cd60e01b148061146457506001600160e01b03198216635b5e139f60e01b145b8061042257506301ffc9a760e01b6001600160e01b0319831614610422565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114b882610c4b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006114fd8284614ded565b9392505050565b6113f982826040518060200160405280600081525061357a565b6000818152600360205260408120546001600160a01b03166115975760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161052f565b60006115a283610c4b565b9050806001600160a01b0316846001600160a01b031614806115dd5750836001600160a01b03166115d2846104ba565b6001600160a01b0316145b8061160d57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661162882610c4b565b6001600160a01b0316146116905760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161052f565b6001600160a01b0382166116f25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161052f565b6116fd8383836135ad565b611708600082611483565b6001600160a01b0383166000908152600460205260408120805460019290611731908490614e5d565b90915550506001600160a01b038216600090815260046020526040812080546001929061175f908490614ded565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61181b848484611615565b61182784848484613665565b610fb65760405162461bcd60e51b815260040161052f90614c0d565b60008060088460141a61ffff16901b8460131a17905061ffff8116831061186b57600061160d565b611876600382614f0d565b61160d906001614e05565b60008060088460121a61ffff16901b8460111a17905061ffff811683106118a957600061160d565b5060019392505050565b6040805161028081018252600d61024082018181526c4d69636861656c616e67656c6f60981b61026084015282528251808401845260098082526822bab937b832969c9960b91b60208381019190915280850192909252845180860186526007808252664c65616e64726f60c81b82850152858701919091528551808701875260068082526514d513d3915160d21b8286015260608781019290925287518089018952600a80825269444f532e436173696e6f60b01b8288015260808901919091528851808a018a52600580825264212920b4a760d91b8289015260a08a01919091528951808b018b52918252692227a9972bb0b635b2b960b11b8288015260c08901919091528851808a018a52908152644e6174617360d81b8187015260e0880152875180890189528481526839313120566972757360b81b818701526101008801528751808901895260048152634861726560e01b81870152610120880152875180890189529586526c59616e6b656520446f6f646c6560981b86860152610140870195909552865180880188528281526627b732a430b63360c91b81860152610160870152865180880188528281526626b5a9afbb34b960c91b81860152610180870152865180880188528381526811da1bdcdd10985b1b60ba1b818601526101a08701528651808801885294855265456c7669726160d01b858501526101c08601949094528551808701875291825268416d62756c656e636560b81b828401526101e085019190915284518086018652818152664974686171756160c81b8184015261020085015284518086019095528452664361736361646560c81b90840152610220820192909252600060088560101a61ffff16901b85600f1a17905061ffff81168410611b565760405180602001604052806000815250611b8a565b81611b66601261ffff8416614f2e565b60128110611b8457634e487b7160e01b600052603260045260246000fd5b60200201515b95945050505050565b6040805160a08082018352600080835260208084018290528385018290526060840182905260808401829052845192830190945284901a60f81b6001600160f81b03191660ff60f01b600186901a60f01b161760ff60e81b600286901a60e81b161781529091810160108460051a60f81b6001600160f81b031916901c60088560041a60f81b6001600160f81b031916901c8560031a60f81b6001600160f81b031916176001600160f01b031916176001600160e81b0319168152602001601084600860208110611c7457634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b031916901c60088560071a60f81b6001600160f81b031916901c8560061a60f81b6001600160f81b031916176001600160f01b031916176001600160e81b0319168152602001601084600b60208110611ce857634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b031916901c600885600a1a60f81b6001600160f81b031916901c8560091a60f81b6001600160f81b031916176001600160f01b031916176001600160e81b0319168152602001601084600e60208110611d5c57634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b031916901c600885600d1a60f81b6001600160f81b031916901c85600c1a60f81b6001600160f81b031916176001600160f01b031916176001600160e81b0319168152509050919050565b611dba613ce0565b60006040518061088001604052806040518060400160405280600f81526020016e576f72645065726665637420352e3160881b81525081526020016040518060400160405280600e81526020016d4c6f7475732031323320332e312b60901b8152508152602001604051806040016040528060138152602001724e6f72746f6e20436d6d6e6472205b43524b5d60681b81525081526020016040518060400160405280601081526020016f516d6f64656d20342e352028444f532960801b815250815260200160405180604001604052806011815260200170233932b2a830b9b1b0b61023a799993b1960791b81525081526020016040518060400160405280600d81526020016c15da5b1918d85d08109094c80d609a1b81525081526020016040518060400160405280600e81526020016d41436944447261772076302e303560901b8152508152602001604051806040016040528060098152602001686d6f7573652e636f6d60b81b81525081526020016040518060400160405280600f81526020016e2124a7a92caa242ca6a4a1a0aa27a960891b8152508152602001604051806040016040528060088152602001670cce0d88151954d560c21b81525081526020016040518060400160405280600c81526020016b474f52494c4c41532e42415360a01b8152508152602001604051806040016040528060088152602001672bb7b93229ba30b960c11b81525081526020016040518060400160405280600b81526020016a160b551c99594811dbdb1960aa1b81525081526020016040518060400160405280600c81526020016b50726f436f6d6d20506c757360a01b8152508152602001604051806040016040528060078152602001666442617365203360c81b815250815260200160405180604001604052806009815260200168706b7a69702e65786560b81b81525081526020016040518060400160405280600481526020016351454d4d60e01b81525081526020016040518060400160405280600681526020016544617a7a6c6560d01b81525081526020016040518060400160405280600c81526020016b139bdc9d1bdb8811da1bdcdd60a21b8152508152602001604051806040016040528060068152602001655a6d6f64656d60d01b8152508152602001604051806040016040528060088152602001674963654d6f64656d60c01b81525081526020016040518060400160405280600381526020016220a92560e91b8152508152602001604051806040016040528060088152602001674c61704c696e6b3360c01b81525081526020016040518060400160405280600881526020016713995bd4185a5b9d60c21b81525081526020016040518060400160405280600d81526020016c717569636b6d656e752049494960981b81525081526020016040518060400160405280600b81526020016a26a996a227a9901b17191960a91b81525081526020016040518060400160405280600f81526020016e34a6a82aa629a2902a2930a1a5b2a960891b81525081526020016040518060400160405280600e81526020016d21b7b6b6b0b73232b91025a2a2a760911b8152508152602001604051806040016040528060078152602001664757426173696360c81b81525081526020016040518060400160405280600381526020016220a62360e91b81525081526020016040518060400160405280600381526020016216969560ea1b8152508152602001604051806040016040528060078152602001664e65744861636b60c81b81525081526020016040518060400160405280600c81526020016b496e6971756974792042425360a01b815250815260200160405180604001604052806004815260200163131bd49160e21b81525081526020016040518060400160405280600e81526020016d426f726c616e6420547572626f4360901b81525081526020016040518060400160405280601081526020016f4e6f72746f6e205574696c697469657360801b815250815260200160405180604001604052806006815260200165466f7850726f60d01b81525081526020016040518060400160405280600e81526020016d5072696e742053686f702050726f60901b81525081526020016040518060400160405280600b81526020016a5175617474726f2050726f60a81b81525081526020016040518060400160405280600c81526020016b52656e65676164652042425360a01b8152508152602001604051806040016040528060088152602001675370696e7269746560c01b81525081526020016040518060400160405280600881526020016715195b1959d85c9960c21b81525081526020016040518060400160405280600f81526020016e2a3ab931379020b9b9b2b6b13632b960891b815250815260200160405180604001604052806005815260200164585472656560d81b81525081526020016040518060400160405280600c81526020016b47414c4143547e312e45584560a01b81525081526020016040518060400160405280600e81526020016d25b4b73393b99028bab2b9ba101960911b81525081526020016040518060400160405280600f81526020016e0a6c6dee4e8c6d0cac8408ac2e4e8d608b1b8152508152602001604051806040016040528060088152602001674c656d6d696e677360c01b8152508152602001604051806040016040528060048152602001635a4f524b60e01b81525081526020016040518060400160405280601081526020016f43616c69666f726e69612047616d657360801b8152508152602001604051806040016040528060058152602001642432bc32b760d91b815250815260200160405180604001604052806011815260200170149a5cd9481bd9881d1a1948151c9a5859607a1b81525081526020016040518060400160405280601081526020016f5072696e6365206f662050657273696160801b81525081526020016040518060400160405280600781526020016653696d4369747960c81b81525081526020016040518060400160405280600b81526020016a14dc1858d948145d595cdd60aa1b81525081526020016040518060400160405280600e81526020016d313630b1b59031b0bab6323937b760911b815250815260200160405180604001604052806007815260200166353ab6b836b0b760c91b81525081526020016040518060400160405280600c81526020016b626174746c6520636865737360a01b8152508152602001604051806040016040528060088152602001671dd85c98dc98599d60c21b815250815260200160405180604001604052806008815260200167756c74696d61203560c01b8152508152602001604051806040016040528060078152602001666e65746861636b60c81b81525081526020016040518060400160405280600981526020016873796e64696361746560b81b815250815260200160405180604001604052806011815260200170616c6f6e6520696e20746865206461726b60781b81525081526020016040518060400160405280601781526020017f736563726574206f66206d6f6e6b65792069736c616e640000000000000000008152508152602001604051806040016040528060128152602001713c16bbb4b733903a34b2903334b3ba3432b960711b81525081526020016040518060400160405280600a8152602001691cdd1c9bdb99da1bdb1960b21b81525081526020016040518060400160405280600381526020016231b4bb60e91b815250815260200160405180604001604052806008815260200167105c9ad85b9bda5960c21b815250815250905061289f613ce0565b60006128b06002601587901a614f42565b6128bb906001614e05565b60ff16905060005b818110156129e25760006044876128db846016614ded565b602081106128f957634e487b7160e01b600052603260045260246000fd5b6129059291901a614f2e565b90506000612914600b83614f42565b61291f906001614e05565b9050604051806060016040528087846044811061294c57634e487b7160e01b600052603260045260246000fd5b602002015181526020018260ff168152602001828a86601761296e9190614ded565b6020811061298c57634e487b7160e01b600052603260045260246000fd5b6129989291901a614f42565b6129a3906001614e05565b60ff1690528584600281106129c857634e487b7160e01b600052603260045260246000fd5b6020020152508190506129da81614ef2565b9150506128c3565b5090949350505050565b6129f4613d29565b6000806129ff613d29565b60005b6002811015612b7d57612a16846017614e3e565b612a21906020614ded565b92506000888260028110612a4557634e487b7160e01b600052603260045260246000fd5b602002015151511115612b6b578151612a5d846132c5565b898360028110612a7d57634e487b7160e01b600052603260045260246000fd5b602002015151612ab48b8560028110612aa657634e487b7160e01b600052603260045260246000fd5b6020020151604001516132c5565b612ae58c8660028110612ad757634e487b7160e01b600052603260045260246000fd5b6020020151602001516132c5565b604051602001612af99594939291906143b7565b60408051601f198184030181529190528252878160028110612b2b57634e487b7160e01b600052603260045260246000fd5b602002015160000151826020015182600a8110612b5857634e487b7160e01b600052603260045260246000fd5b602002015283612b6781614ef2565b9450505b80612b7581614ef2565b915050612a02565b508515612bd957612b8f836017614e3e565b612b9a906020614ded565b8151909250612ba8836132c5565b604051602001612bb99291906145a8565b60408051601f19818403018152919052815282612bd581614ef2565b9350505b60005b600c54811015612e25576000600c8281548110612c0957634e487b7160e01b600052603260045260246000fd5b60009182526020909120600390910201546040516370a0823160e01b81526001600160a01b038c81166004830152909116906370a082319060240160206040518083038186803b158015612c5c57600080fd5b505afa158015612c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c949190614117565b90508015612e12576007851015612e1257612cb0856017614e3e565b612cbb906020614ded565b8351909450612cc9856132c5565b600c8481548110612cea57634e487b7160e01b600052603260045260246000fd5b9060005260206000209060030201600201604051602001612d0d93929190614491565b60408051601f198184030181529190528352600c805483908110612d4157634e487b7160e01b600052603260045260246000fd5b90600052602060002090600302016002018054612d5d90614eb7565b80601f0160208091040260200160405190810160405280929190818152602001828054612d8990614eb7565b8015612dd65780601f10612dab57610100808354040283529160200191612dd6565b820191906000526020600020905b815481529060010190602001808311612db957829003601f168201915b5050505050836040015183600a8110612dff57634e487b7160e01b600052603260045260246000fd5b602002015284612e0e81614ef2565b9550505b5080612e1d81614ef2565b915050612bdc565b50845115612e54578051604051612e4191908790602001614627565b60408051601f1981840301815291905281525b979650505050505050565b60606000612e7a87600001516001600160e81b03191661376f565b612e9188602001516001600160e81b03191661376f565b604051602001612ea2929190614a3d565b604051602081830303815290604052905060005b600a811015612f79576000876020015182600a8110612ee557634e487b7160e01b600052603260045260246000fd5b6020020151511115612f675781612efb826132c5565b604051602001612f0b9190614afa565b604051602081830303815290604052886020015183600a8110612f3e57634e487b7160e01b600052603260045260246000fd5b6020020151604051602001612f55939291906141bc565b60405160208183030381529060405291505b80612f7181614ef2565b915050612eb6565b5060005b600a811015613040576000876040015182600a8110612fac57634e487b7160e01b600052603260045260246000fd5b602002015151111561302e5781612fc2826132c5565b604051602001612fd29190614a0d565b604051602081830303815290604052886040015183600a811061300557634e487b7160e01b600052603260045260246000fd5b602002015160405160200161301c939291906141bc565b60405160208183030381529060405291505b8061303881614ef2565b915050612f7d565b50841561306a57806040516020016130589190614353565b60405160208183030381529060405290505b82511561309657808360405160200161308492919061424f565b60405160208183030381529060405290505b831561314757606084600114156130cb575060408051808201909152600781526643726f7373657360c81b6020820152613121565b84600214156130f657506040805180820190915260058152644f6d62726560d81b6020820152613121565b84600314156131215750604080518082019091526009815268141bdb1ad848111bdd60ba1b60208201525b81816040516020016131349291906142cf565b6040516020818303038152906040529150505b9695505050505050565b606081516000141561317157505060408051602081019091526000815290565b6000604051806060016040528060408152602001614fe060409139905060006003845160026131a09190614ded565b6131aa9190614e2a565b6131b5906004614e3e565b905060006131c4826020614ded565b67ffffffffffffffff8111156131ea57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613214576020820181803683370190505b509050818152600183018586518101602084015b81831015613280576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825350600101613228565b60038951066001811461329a57600281146132ab576132b7565b613d3d60f01b6001198301526132b7565b603d60f81b6000198301525b509398975050505050505050565b6060816132e95750506040805180820190915260018152600360fc1b602082015290565b8160005b811561331357806132fd81614ef2565b915061330c9050600a83614e2a565b91506132ed565b60008167ffffffffffffffff81111561333c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613366576020820181803683370190505b5090505b841561160d5761337b600183614e5d565b9150613388600a86614f2e565b613393906030614ded565b60f81b8183815181106133b657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506133d8600a86614e2a565b945061336a565b606060006133ee836002614e3e565b6133f9906002614ded565b67ffffffffffffffff81111561341f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613449576020820181803683370190505b509050600360fc1b8160008151811061347257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106134af57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060006134d3846002614e3e565b6134de906001614ded565b90505b6001811115613572576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061352057634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061354457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9361356b81614ea0565b90506134e1565b509392505050565b6135848383613933565b6135916000848484613665565b6106655760405162461bcd60e51b815260040161052f90614c0d565b6001600160a01b0383166136085761360381600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b61362b565b816001600160a01b0316836001600160a01b03161461362b5761362b8382613a81565b6001600160a01b0382166136425761066581613b1e565b826001600160a01b0316826001600160a01b031614610665576106658282613bf7565b60006001600160a01b0384163b1561376757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906136a9903390899088908890600401614b2c565b602060405180830381600087803b1580156136c357600080fd5b505af19250505080156136f3575060408051601f3d908101601f191682019092526136f091810190614079565b60015b61374d573d808015613721576040519150601f19603f3d011682016040523d82523d6000602084013e613726565b606091505b5080516137455760405162461bcd60e51b815260040161052f90614c0d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061160d565b50600161160d565b6040805160068082528183019092526060916000919060208201818036833701905050905060005b600381101561390a576f181899199a1a9b1b9c1cb0b131b232b360811b8482600381106137d457634e487b7160e01b600052603260045260246000fd5b1a600f16601081106137f657634e487b7160e01b600052603260045260246000fd5b1a60f81b82613806836002614e3e565b613811906001614ded565b8151811061382f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506f181899199a1a9b1b9c1cb0b131b232b360811b600485836003811061387c57634e487b7160e01b600052603260045260246000fd5b1a60f81b6001600160f81b031916901c60f81c600f1660ff16601081106138b357634e487b7160e01b600052603260045260246000fd5b1a60f81b826138c3836002614e3e565b815181106138e157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053508061390281614ef2565b915050613797565b508060405160200161391c919061499f565b604051602081830303815290604052915050919050565b6001600160a01b0382166139895760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161052f565b6000818152600360205260409020546001600160a01b0316156139ee5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161052f565b6139fa600083836135ad565b6001600160a01b0382166000908152600460205260408120805460019290613a23908490614ded565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001613a8e84610cc2565b613a989190614e5d565b600083815260086020526040902054909150808214613aeb576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090613b3090600190614e5d565b6000838152600a602052604081205460098054939450909284908110613b6657634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060098381548110613b9557634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480613bdb57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613c0283610cc2565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b828054613c4790614eb7565b90600052602060002090601f016020900481019282613c695760008555613caf565b82601f10613c8257805160ff1916838001178555613caf565b82800160010185558215613caf579182015b82811115613caf578251825591602001919060010190613c94565b50613cbb929150613d55565b5090565b50805460008255600302906000526020600020908101906112cd9190613d6a565b60405180604001604052806002905b613d1360405180606001604052806060815260200160008152602001600081525090565b815260200190600190039081613cef5790505090565b604051806060016040528060608152602001613d43613da6565b8152602001613d50613da6565b905290565b5b80821115613cbb5760008155600101613d56565b80821115613cbb5780546001600160a01b03191681556000613d8f6001830182613dce565b613d9d600283016000613dce565b50600301613d6a565b604051806101400160405280600a905b6060815260200190600190039081613db65790505090565b508054613dda90614eb7565b6000825580601f10613dea575050565b601f0160209004906000526020600020908101906112cd9190613d55565b6000613e1b613e1684614dc5565b614d94565b9050828152838383011115613e2f57600080fd5b828260208301376000602084830101529392505050565b600082601f830112613e56578081fd5b6114fd83833560208501613e08565b600060208284031215613e76578081fd5b81356114fd81614fa6565b60008060408385031215613e93578081fd5b8235613e9e81614fa6565b91506020830135613eae81614fa6565b809150509250929050565b600080600060608486031215613ecd578081fd5b8335613ed881614fa6565b92506020840135613ee881614fa6565b929592945050506040919091013590565b60008060008060808587031215613f0e578081fd5b8435613f1981614fa6565b93506020850135613f2981614fa6565b925060408501359150606085013567ffffffffffffffff811115613f4b578182fd5b8501601f81018713613f5b578182fd5b613f6a87823560208401613e08565b91505092959194509250565b60008060408385031215613f88578182fd5b8235613f9381614fa6565b91506020830135613eae81614fbb565b600080600060608486031215613fb7578283fd5b8335613fc281614fa6565b9250602084013567ffffffffffffffff80821115613fde578384fd5b613fea87838801613e46565b93506040860135915080821115613fff578283fd5b5061400c86828701613e46565b9150509250925092565b60008060408385031215614028578182fd5b823561403381614fa6565b946020939093013593505050565b600060208284031215614052578081fd5b81516114fd81614fbb565b60006020828403121561406e578081fd5b81356114fd81614fc9565b60006020828403121561408a578081fd5b81516114fd81614fc9565b6000602082840312156140a6578081fd5b815167ffffffffffffffff8111156140bc578182fd5b8201601f810184136140cc578182fd5b80516140da613e1682614dc5565b8181528560208385010111156140ee578384fd5b611b8a826020830160208601614e74565b600060208284031215614110578081fd5b5035919050565b600060208284031215614128578081fd5b5051919050565b600082610140810183835b600a811015614169578383038752614153838351614174565b602097880197909350919091019060010161413a565b509095945050505050565b6000815180845261418c816020860160208601614e74565b601f01601f19169290920160200192915050565b600081516141b2818560208601614e74565b9290920192915050565b600084516141ce818460208901614e74565b600b60fa1b9083019081526f3d913a3930b4ba2fba3cb832911d101160811b60018201528451614205816011840160208901614e74565b6c111610113b30b63ab2911d101160991b60119290910191820152835161423381601e840160208801614e74565b61227d60f01b601e929091019182015260200195945050505050565b60008351614261818460208801614e74565b600b60fa1b9083019081527f7b2274726169745f74797065223a2022486173205669727573222c202276616c6001820152653ab2911d101160d11b602182015283516142b4816027840160208801614e74565b61227d60f01b60279290910191820152602901949350505050565b600083516142e1818460208801614e74565b600b60fa1b9083019081527f7b2274726169745f74797065223a20225761636b79205061747465726e222c20600182015269113b30b63ab2911d101160b11b6021820152835161433881602b840160208801614e74565b61227d60f01b602b9290910191820152602d01949350505050565b60008251614365818460208701614e74565b600b60fa1b9201918252507f7b2274726169745f74797065223a2022496e736563757265204469736b222c2060018201526f2276616c7565223a202274727565227d60801b6021820152603101919050565b600086516143c9818460208b01614e74565b793c7465787420636c6173733d27742720783d2734392720793d2760301b908301908152865161440081601a840160208b01614e74565b630139f15160e51b601a9290910191820152855161442581601e840160208a01614e74565b650103234b9b5960d51b601e9290910191820152845161444c816024840160208901614e74565b602f60f81b60249290910191820152835161446e816025840160208801614e74565b661e17ba32bc3a1f60c91b60259290910191820152602c01979650505050505050565b6000845160206144a48285838a01614e74565b793c7465787420636c6173733d27742720783d2734392720793d2760301b91840191825285516144da81601a8501848a01614e74565b630139f15160e51b601a93909101928301528454601e908490600181811c908083168061450857607f831692505b86831081141561452657634e487b7160e01b89526022600452602489fd5b80801561453a576001811461454f5761457f565b60ff198516898801528389018701955061457f565b60008c8152602090208a5b858110156145755781548b82018a015290840190890161455a565b505086848a010195505b505050505061459b81661e17ba32bc3a1f60c91b815260070190565b9998505050505050505050565b600083516145ba818460208801614e74565b793c7465787420636c6173733d27742720783d2734392720793d2760301b90830190815283516145f181601a840160208801614e74565b7f273e2a206d6e656d6f6e69632e7478743c2f746578743e000000000000000000601a9290910191820152603101949350505050565b60008351614639818460208801614e74565b7f3c7465787420783d273131302720793d2731303027207374796c653d2766696c9083019081527f6c3a20726762283235352c203130302c20313030293b20666f6e742d66616d6960208201527f6c793a20736173657269663b20666f6e742d73697a653a20323870783b20776860408201527f6974652d73706163653a207072653b20666f6e742d7374796c653a206974616c60608201527f69633b20666f6e742d7765696768743a20626f6c643b27207374726f6b652d7760808201527f696474683d273127207374726f6b653d2723306230303030393927207465787460a08201527f2d616e63686f723d276d6964646c652720646f6d696e616e742d626173656c6960c08201527f6e653d2763656e7472616c27207472616e73666f726d3d27726f74617465282d60e08201527f323520313030203029273e3c747370616e3e496e66656374656420776974683c6101008201527f2f747370616e3e3c747370616e20783d273130302720793d27313330273e0000610120820152611b8a6147c961013e8301866141a0565b7010909e17ba39b830b71f1e17ba32bc3a1f60791b815260110190565b683d913730b6b2911d1160b91b8152855160009061480b816009850160208b01614e74565b71111610113232b9b1b934b83a34b7b7111d1160711b6009918401918201527f5468697320466c6f707079204973205261646963616c21000000000000000000601b8201527f222c202265787465726e616c5f75726c223a2268747470733a2f2f666c6f7070603282015274792e67616c61637469632e696f2f3f746f6b656e3d60581b605282015286516148a7816067840160208b01614e74565b71222c202261747472696275746573223a205b60701b6067929091019182015285516148da816079840160208a01614e74565b61459b61495861495261492961491061490a6079878901016b2e96101137bbb732b9111d1160a11b8152600c0190565b8b6141a0565b6c1116101134b6b0b3b2911d101160991b8152600d0190565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c0000000000008152601a0190565b876141a0565b61227d60f01b815260020190565b7047616c616374696320466c6f707079202360781b815260008251614992816011850160208701614e74565b9190910160110192915050565b602360f81b8152600082516149bb816001850160208701614e74565b9190910160010192915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251614a0081601d850160208701614e74565b91909101601d0192915050565b67436f6f6c46696c6560c01b815260008251614a30816008850160208701614e74565b9190910160080192915050565b7f7b2274726169745f74797065223a20224469736b20436f6c6f72222c20227661815266363ab2911d101160c91b602082015260008351614a85816027850160208801614e74565b62089f4b60ea1b6027918401918201527f7b2274726169745f74797065223a20224c6162656c20436f6c6f72222c202276602a8201526730b63ab2911d101160c11b604a8201528351614adf816052840160208801614e74565b61227d60f01b60529290910191820152605401949350505050565b69426f72696e6746696c6560b01b815260008251614b1f81600a850160208701614e74565b91909101600a0192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061314790830184614174565b60006020808301818452808551808352604092508286019150828160051b870101848801865b83811015614bec57888303603f19018552815180516001600160a01b0316845287810151606089860181905290614bbe82870182614174565b91505087820151915084810388860152614bd88183614174565b968901969450505090860190600101614b85565b509098975050505050505050565b6020815260006114fd6020830184614174565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600062ffffff60e81b8086511683528060208701511660208401528060408701511660408401528060608701511660608401528060808701511660808401525060e060a08301528351606060e0840152614d43610140840182614174565b9050602085015160df198085840301610100860152614d62838361412f565b925060408701519150808584030161012086015250614d81828261412f565b9250505061160d60c083018460ff169052565b604051601f8201601f1916810167ffffffffffffffff81118282101715614dbd57614dbd614f90565b604052919050565b600067ffffffffffffffff821115614ddf57614ddf614f90565b50601f01601f191660200190565b60008219821115614e0057614e00614f64565b500190565b600060ff821660ff84168060ff03821115614e2257614e22614f64565b019392505050565b600082614e3957614e39614f7a565b500490565b6000816000190483118215151615614e5857614e58614f64565b500290565b600082821015614e6f57614e6f614f64565b500390565b60005b83811015614e8f578181015183820152602001614e77565b83811115610fb65750506000910152565b600081614eaf57614eaf614f64565b506000190190565b600181811c90821680614ecb57607f821691505b60208210811415614eec57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415614f0657614f06614f64565b5060010190565b600061ffff80841680614f2257614f22614f7a565b92169190910692915050565b600082614f3d57614f3d614f7a565b500690565b600060ff831680614f5557614f55614f7a565b8060ff84160691505092915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146112cd57600080fd5b80151581146112cd57600080fd5b6001600160e01b0319811681146112cd57600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220f228470a4feb2c6e688b465923fa512551f307ebc7378701da581c7d14f0622964736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000005a0000000000000000000000000000000000000000000000000000000000000d6d8000000000000000000000000000000000000000000000000000000000000ffdc000000000000000000000000000000000000000000000000000000000000ea60000000000000000000000000000000000000000000000000000000000000001247616c6163746963466c6f7070794469736b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006464c4f5050590000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _NFT_NAME (string): GalacticFloppyDisk
Arg [1] : _NFT_SYMBOL (string): FLOPPY
Arg [2] : _MAX_PER_ADDRESS (uint256): 5
Arg [3] : _AVAILABLE_SUPPLY (uint256): 1440
Arg [4] : _WACKY_THRESHHOLD (uint16): 55000
Arg [5] : _INSECURE_THRESHHOLD (uint16): 65500
Arg [6] : _INFECTED_THRESHHOLD (uint16): 60000

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 00000000000000000000000000000000000000000000000000000000000005a0
Arg [4] : 000000000000000000000000000000000000000000000000000000000000d6d8
Arg [5] : 000000000000000000000000000000000000000000000000000000000000ffdc
Arg [6] : 000000000000000000000000000000000000000000000000000000000000ea60
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [8] : 47616c6163746963466c6f7070794469736b0000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [10] : 464c4f5050590000000000000000000000000000000000000000000000000000


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.