ETH Price: $2,909.13 (-8.16%)
Gas: 9 Gwei

Token

SANJAY ROBOTS (SJR)
 

Overview

Max Total Supply

1,457 SJR

Holders

442

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
kennyj.eth
Balance
1 SJR
0x86894b45fa5543eed3c57b031cac574698f358dc
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

SANJAY ROBOTS is a generative 10k collection consisting of 8 distinct Robot body types and over 500+ individual traits minted from a verified ERC-721 Ethereum Smart Contract. --- A follow-up to the original, OpenSea Verified, [SANJAY Collection](https://opensea.io/collection...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SanjayRobots

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : SanjayRobots.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import "@openzeppelin/[email protected]/token/ERC721/ERC721.sol";
import "@openzeppelin/[email protected]/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/[email protected]/access/Ownable.sol";
import "@openzeppelin/[email protected]/utils/Counters.sol";
import "@openzeppelin/[email protected]/security/ReentrancyGuard.sol";

contract SanjayRobots is ERC721, ERC721Enumerable, ReentrancyGuard, Ownable {
    
    uint constant public tokenPrice = 0.069 ether;
    uint constant public whitelistPrice = 0.03 ether;
    uint constant public maxRobotsPerPurchase = 8;
    mapping (address => uint256) public whitelist;
    mapping (address => uint256) public cooldown;
    string private tokenBaseURI = "https://sanjayrobots.s3.amazonaws.com/metadata"; // this should host the masked metadata/images
    uint256 saleStart = 1632510000; // Fri Sep 24 2021 19:00:00 GMT+0000
    uint256 maximumRobotID = 10000;
    bool private paused = false;
    
    uint256 public seed = 0;
    
    using Counters for Counters.Counter;

    Counters.Counter private whitelistCounter;
    Counters.Counter private teamCounter;
    Counters.Counter private publicCounter;

    constructor() ERC721("SANJAY ROBOTS", "SJR") {
        whitelist[0x1D7B087234D89510bE132F8835C04d696Be4F43a] = 1;
        whitelist[0xBcE3BD3b206946AbBe094903Ae2B4244B52fb4e9] = 1;
        whitelist[0x8830779e6e3618D8f2bd5f15C15aC8A255cB98a6] = 1;
        whitelist[0xe59f57c91bB2684796167eCa78dC6AeeEFa49cD8] = 1;
        whitelist[0xD387A6E4e84a6C86bd90C158C6028A58CC8Ac459] = 1;
        whitelist[0xeF1E28064D31AaFF4DaFB34cfBCc7CbeE3397294] = 1;
        whitelist[0x4884EB76842F734e0DE54D79ad45266072Eb68E2] = 1;
        whitelist[0x6d26E9c2f9DE0dCdeAdDAeBEc25FD1338678AcE0] = 1;
        whitelist[0x197D9f1370f2f7441a17cb035f33A6C19866D67E] = 1;
        whitelist[0xcfc65EBDCD6b90b9036913971f963e8D9d83f37b] = 1;
        whitelist[0x09343DF739FcbcAF4ffd9776b56d2C673370162D] = 1;
        whitelist[0x73626e046fad657ba6c0a8830032f845549f040D] = 1;
        whitelist[0xC362923B7662218A972f84acEa000EdE3AF1aAde] = 1;
        whitelist[0x089aD55045fe72f1f77eAAC7e166de9e277600A5] = 1;
        whitelist[0x8F4839df0D4EAbAE1246cd036030140E5b0673c2] = 1;
        whitelist[0xD1F93089d9004004F8E30c54de5a584902962CE8] = 1;
        whitelist[0x339858A776bb65f4f4F12D5aB8aA40EB3447cB2e] = 1;
        whitelist[0x23E192E74FD531399458602605D3E2029C3BFB4f] = 1;
        whitelist[0x812B4e6E9F2899c4805Ac1a1ECD8f72E2E96bAAB] = 1;
        whitelist[0x671149e0af44fBCaEC953717554203630cB8e515] = 1;
        whitelist[0x3ec73fC792Ca878F17d48E8e16A822284AAb2F41] = 1;
        whitelist[0x7401572D8B4E07F89579D804e267ac000C8C67cC] = 1;
        whitelist[0xd13b083E3Aa86dD18083C9F00fA2e14a4c83a5c0] = 1;
        whitelist[0x65b23bb3BEAeCE1FE892D0Dba2E8593ba3377BFc] = 1;
        whitelist[0xbd16b6cf36301Bb279798aA39Bd0E19C5faa7BB6] = 1;
        whitelist[0xf59A0B7e736335241e5362133557309A9ab8986c] = 1;
        whitelist[0x33745a155A045d5E6B118EA93c80ab6295927Ea3] = 1;
        whitelist[0x14509Bb104Ee513817657A63e87528208f85A4Ce] = 1;
        whitelist[0xD6e28F71f349eDa12f6c56136eA2776626D5295d] = 1;
        whitelist[0xbF59E40112157017B69bE5734F8c702dCbd73336] = 1;
        whitelist[0x2C6A2bd4212CD6de651AA968f2296cb771bE7a55] = 1;
        whitelist[0x92c4786d828A4C42e0C0E6e7eF06b52f2E2cC38a] = 1;
        whitelist[0x31E04750dd87396eCf4AE8F976CBe4cc69224Eda] = 1;
        whitelist[0x4897D38b0974051D8Fa34364E37a5993f4A966a5] = 1;
        whitelist[0xE876B710b38C2E34513C5d2c40027b1Cda967578] = 1;
        whitelist[0xcc72F778Eedd8e337E6Cb58Ca9Ec8BA2912E71Dc] = 1;
        whitelist[0x5A4cB41663951004f44038AFC205a59D26192fA8] = 1;
        whitelist[0x77d6FeBbbC694fD12cd66a80938879De6797c314] = 1;
        whitelist[0x4AAA6AD4FFD5423868E34Bc993f3190068139149] = 1;
        whitelist[0xd75d912F74395cb89c5493D9ba5DEd5bD7919Cca] = 1;
        whitelist[0x68D537cb95aa9Aa8470b2c40ec6f827a4F547940] = 1;
        whitelist[0x036eFf96a00B461bf86CDFB6cF1FbEe08e9e3be6] = 1;
        whitelist[0x9BD91abdf39A167712B9F6c24d1c9805d5FB9242] = 1;
        whitelist[0xA56c04347AbeE42F663EFF9bC2d0147b97C8F782] = 1;
        whitelist[0x5A82411e1771Fa9e7d73BC64F39Bcdb28B321f6A] = 1;
        whitelist[0x42353a7Fc70Eab5C0017733813805313B7b10b8B] = 1;
        whitelist[0xD751Ff5Fb8D0cd79653c2d7d97d7F9b3E7e52978] = 1;
        whitelist[0x5668FabD29c89bd16DC78e150eB8A3AE32155DC3] = 1;
        whitelist[0x8e65890d4129EEF69e44087AeBDB69ddF38D1FBe] = 1;
        whitelist[0xeDA089739e7110819e680896a1edF752f2532fB0] = 1;
        whitelist[0x733f9d10432D8dbd6e339d7257ca113217218C5a] = 1;
        whitelist[0x72E5d8D85Db805C275561D9FCE16C11002c676FE] = 1;
        whitelist[0x81B6fdBa13085A4FBF15a0880931a384810FA8E0] = 1;
        whitelist[0x02C2e025b219976C85B70A2E0Cf110c97930E8C9] = 1;
        whitelist[0x7362c41F92Aa7dF9E6F963925DFf0f1417e80B94] = 1;
        whitelist[0x5BA8C82F74C61Ec40c3C80B12800c2ed3773A33B] = 1;
        whitelist[0xb5C3b594B26736123B9EE9E7D11832c3AC23cBf3] = 1;
        whitelist[0xC9F01986d767550708095E25fDaCF5f3AFD85121] = 1;
        whitelist[0x43b6708BDBDB34854874aA8e5900Ea3AA7BE16CF] = 1;
        whitelist[0x027041f1F636416709A551fDAcab232f38C120A5] = 1;
        whitelist[0x6Edb53EdfD126227A02903deb0F049032cfDdAA3] = 1;
        whitelist[0x4B1048A15C77A74402FdfFC1ec95E6211e3d6011] = 1;
        whitelist[0xcA5630a71f1610CdD8dFf76A19eE01A974aFd132] = 1;
        whitelist[0x0C66CA6aeD218806DF07FFF9d126D0485F94CB5f] = 1;
        whitelist[0x6f9cFAccA63145c906fAE462433Aa1d1F147eec9] = 1;
        whitelist[0xD7905bf00457D0AdB34b593205E08b60E72f0d39] = 1;
        whitelist[0xeB85C590E635aFD16d38fD8dd3B5C04D65df89fD] = 1;
        whitelist[0xD3D395877D7F5015cF98ba9A8645F13170863041] = 1;
        whitelist[0xc540557cC97aeCdC1aaB97D666Dc1AE5A9e426FB] = 1;
        whitelist[0x1047Bac3ce83f43142C39b2C33F7c7f062EB028d] = 1;
        whitelist[0x633f7F847090Ff1561FACd839194A47773df2446] = 1;
        whitelist[0xdc8D255E709EdF2ed2622B2691E8ED9a71abB59E] = 1;
        whitelist[0x9AbD6Ba67133c43827695D1Bf321666F1b1007cB] = 1;
        whitelist[0x16DC448E3a12B8fCA534D3fD39c340B6D1aDA5DF] = 1;
        whitelist[0x545a2eD169EaC188638763539D30951488a9c8F7] = 1;
        whitelist[0xAb05Fe7F1DeE4CDB5640d79fe847EF80204451f1] = 1;
        whitelist[0xA1f86b20c960154569Db4c52d8323477168A1E2e] = 1;
        whitelist[0x3b682c360204B4Bf6874C12cA44BF734f59CA9bd] = 1;
        whitelist[0xD00e3091708D80968aC45Bf0e3269ae37F69191D] = 1;
        whitelist[0xB2861cD1eCBc01b4Cf239491F8b951CA652B53C0] = 1;
        whitelist[0x4c292Eb48586482E566Ba2597808c47801E38A41] = 1;
        whitelist[0x6D04a93D4ac0610e65e4432DE9c0E4E85cC6d15b] = 1;
        whitelist[0x24192c81D1a8bC30e037E67EAaDDB59D199713a4] = 1;
        whitelist[0x086731aBE47E9145671deDFdE38e8dD2430d945E] = 1;
        whitelist[0x212EF51aa05A87488398326a386c4203B2eAF81F] = 1;
        whitelist[0x5Fea9DAcdE1fb43E87b8a9259Aebc937D995F51b] = 1;
        whitelist[0x68f95890aA877dd361c336E84A53E249C5Bc9D9a] = 1;
        whitelist[0xFE9c9591D0f1Ea7464bA503bEd40E06f5B62D1A1] = 1;
        whitelist[0x10992b1FF613308C9ce08A69c8716B0Ca75De081] = 1;
        whitelist[0xdC8bBaCAc5142A91637c4ebbDF33946bFB48BC50] = 1;
        whitelist[0x69C38C760634C23F3a3D9bE441ecCbD2e50e5F73] = 1;
        whitelist[0x5944DE446D171Ca13318cEdAaE115A056A3f398F] = 1;
        whitelist[0xd0370f7fe1239914Da55b5A3a7198Ec6B70fE2aE] = 1;
        whitelist[0xC3000C282D05d70a00f25D2c859C01E9728ff185] = 1;
        whitelist[0x91623b85675608dEcE212EE1E650cCbc9332F93a] = 1;
        whitelist[0x1fD4D93a7a5fF29Aa366C6d4EFAaaFf3b09a195B] = 1;
        whitelist[0xe0057A40A3F1F9F2A8618baa9bDCAf85979E6527] = 1;
        whitelist[0x606C3Af5cc0bF4afc6AFD1010E8Fb424593Eb9fB] = 1;
        whitelist[0x1E31c5C71e00C933cD83f944e85DE97564D0ffc7] = 1;
        whitelist[0x85d365405dFCfEeCDBD88A7c63476Ff976943C89] = 1;
        whitelist[0x765E406Eb1Bb0909F4Eae2fe5B52c21C9E61b498] = 1;
        whitelist[0x8f662d520eae1BeDC8d0303650956228F4748CFa] = 1;
        whitelist[0x7e00f4110Fb7D02A91632895FB93cd09af3209c6] = 1;
        whitelist[0xa9F71b18e97A88350037DF0A25A5de76c03101Ca] = 1;
        whitelist[0x08aA28b1c297E2A33d5A630B3a09be6440ff4823] = 1;
        whitelist[0x6dB5896bB044Ad064E70452f673910853727A4B2] = 1;
        whitelist[0xd630e991e407229174AA4F0E057800d80d4B80EC] = 1;
        whitelist[0xbCb5DC467D09d518a0EBa0bd968A3ecfB37768C8] = 1;
        whitelist[0x29cad6f1B5126D446e25c5406A2e8c1dee456D27] = 1;
        whitelist[0x178CbbF92637183Fb8Da503DD541813E4609294f] = 1;
        whitelist[0x447742Db52CBD9587118776B62DC3704E90a9834] = 1;
        whitelist[0xFC5B6E1E4E9b916BB8F8Ec1eE106e290A2Bcc5f1] = 1;
        whitelist[0x5E0c9043942734F432de41fAe563b9691bFCcb40] = 1;
        whitelist[0x7ca83Da48606CBFBbf12AF0294dFB7433C0393Ea] = 1;
        whitelist[0x264BF51639f5753F05D65e4637Ad22078F1652ca] = 1;
        whitelist[0x15DfF416ED3529436c7dfDb14Ae3Ee7dfD5d79A4] = 1;
        whitelist[0xaF4420a171b6aAe1c199fcAF2B561943927B30CA] = 1;
        whitelist[0x1F8eD3a89038a68F0DFB7196C6d32E493F2921Ac] = 1;
        whitelist[0x2947025a00F8CfA01a5Fb824bd1E98e129F178Cb] = 1;
        whitelist[0x023Cd4062b82Db1EEcC91Fe077Ec944d4b89384a] = 1;
        whitelist[0xCac8F01E56B49f1D44cc9a2BaDfE381D425606Ed] = 1;
        whitelist[0xC2BC30b75ACf15B2dE5D988e38c606b6208e63c4] = 1;
        whitelist[0xDC0B3127A71367227311f02Fe4Dda2A6cCDbAe78] = 1;
        whitelist[0x63330b3092a2fA6F328cB9776aFDd75D75ce406F] = 1;
        whitelist[0xbF1dAc60194bC2f3A83314Bc18DE1060a860D0da] = 1;
        whitelist[0xce1599327C6cB91C98f876CCc4666869E4862357] = 1;
        whitelist[0x9B11FfE23B74891BDc691C2d8b24068E32209320] = 1;
        whitelist[0x031Dc24943A42E1205417D1130B616ACcF667Bae] = 1;
        whitelist[0x3d8a657b63F85028dC02faDe8A9373Cf6AD73455] = 1;
        whitelist[0x1c0a70f3359FaA0476Fb33b8B2a808D10a559a44] = 1;
        whitelist[0xfe7d20712D3EcEB6884cee123d9dE9914a4AFf6a] = 1;
        whitelist[0xB22Ce37B9dF86FF4fEC4EA02EfB954FF24ACf179] = 1;
        whitelist[0xA85FDD41964F025e5309b44Ae04C55fE0C979f08] = 1;
        whitelist[0xa86B1ab5bc759FB0B7fc8611e1705688b747f487] = 1;
        whitelist[0xbbDb3AccFe65Fdd507354F37dd841d01576cFFAc] = 1;
        whitelist[0xD88d4F99ADC42A57e5949c94fDd984f43811f344] = 1;
        whitelist[0x125442956d5e34ee274253A0F32354b945aCf656] = 1;
        whitelist[0x155ddeB229939088809FeB653f37221Ea62BD9F3] = 1;
        whitelist[0x29533A8768100a03619c9E6a4697eD33ECd896F5] = 1;
        whitelist[0xfCFDA495A95FAb12957eEF60Cea88d33612520a1] = 1;
        whitelist[0x09B0B849C8c01781A3ff2C5a7DC045De7A136b5A] = 1;
        whitelist[0xb767855ada3f3268AFf07dE5840188120bA60Cd4] = 1;
        whitelist[0xD54f0ebdB4c5b668423130A0c487aF5393fe8eD4] = 1;
        whitelist[0xA41DCEe235F7F8Ab2C7d8a3e36fdC63704c142ae] = 1;
        whitelist[0x20C3EDc13C70310B97f60419DBC68BD58219B59F] = 1;
        whitelist[0xC27f2F8Adf67f8bce6b3a1dB5192fF3Ac845cAc0] = 1;
        whitelist[0xCa5A3c8DD61B02049B522C354871aF7311F67664] = 1;
        whitelist[0x9B275B982973754E1f46324D3d4c58E93805DB1F] = 1;
        whitelist[0xa49dcfD59f39DfadA7EB11f60f173187B5401a06] = 1;
        whitelist[0x0677D963f8950D456b375333C8832877De8c23d3] = 1;
        whitelist[0x60401db7a4FA99CB03879Cb201D4b2bBf64D6885] = 1;
        whitelist[0x05CcF21A74324542F5c68bC8F216E173382C0254] = 1;
        whitelist[0x4c88c30CDF53929Aee3fFce4e8f1cA2D113Fa596] = 1;
        whitelist[0x07173BB420de135AA05ff97e4750D1456865FFD0] = 1;
        whitelist[0x8aF9cCfD1B203186AE754b4FcB0c237F534Aa9e5] = 1;
        whitelist[0xf59e9B46B1474bcbeAD53789455daCB70B49A6cD] = 1;
        whitelist[0x0B012BbeaB64B0D52580879a85717B3fFcEC6C42] = 1;
        whitelist[0x64E7ea3c9612d9aBa9F6E1Ae63Aa27678dfFe6C9] = 1;
        whitelist[0x46Cb71838b2873E674cAC36daAe435125E18088B] = 1;
        whitelist[0x2EFfD878BD5869206d91588AF4DE68C112f4312E] = 1;
        whitelist[0x1e1c35f021f355A7D2e41a869e97e0321048Fe24] = 1;
        whitelist[0x1e1c35f021f355A7D2e41a869e97e0321048Fe24] = 1;
        whitelist[0x3D3316DFFd53ac2724fb05a066E23E5e56AbbF45] = 1;
        whitelist[0x3b7393118f0d8f99f269854CF441A5ebCb0Af246] = 1;
        whitelist[0xF187af150C87aB964709428F673E6C2A055Ce226] = 1;
        whitelist[0x729330EF0fE13e294e268a030F934819e95520dc] = 2;
        whitelist[0xEeeA2221483075a941E1502FAa818E7Ec76d63ae] = 2;
        whitelist[0x29305910D110E24776053BA1376fb85A2Ae2Bf05] = 2;
        whitelist[0xA60d3C68cE85B74c67C48216e760C1e03AC93030] = 2;
        whitelist[0x96236aDB640eC620A85898378375cEDf03ca21ff] = 2;
        whitelist[0x03F63b96240C4a0a3E197329787adf0Fa42806Df] = 2;
        whitelist[0x90149FaA3482D0E3A191Ad7AB51Ea473B20771ae] = 2;
        whitelist[0x9D41a0f6c47e5E7e9D322187986D4558FF3c78cB] = 2;
        whitelist[0x311E16701D3536e103Aa5b6872B3e0B05d79dE42] = 2;
        whitelist[0x74C5eC520a2dB65B28053D351F1258b94b15Ca0f] = 2;
        whitelist[0xe7dAe42Dee2BB6C1ef3c65e68d3E605faBcA875d] = 2;
        whitelist[0x7203046ECE340B997119D4A74524D4180A9a4C2C] = 2;
        whitelist[0x63cE10e873f0d5529C38e86ccb57d52117eD8A84] = 2;
        whitelist[0xF0812A075d631C8AC57274Eb2E9C9876f5d0c731] = 2;
        whitelist[0xee5280e9eb7B9d33cA03332Db7382b24F4A2D009] = 2;
        whitelist[0xCE266203cc90f26B346a9f359fEA7Ced2f4E62dD] = 2;
        whitelist[0x93624D811e9b1F5809f6b5a829E160188193CA0B] = 2;
        whitelist[0x0E7F1155cfd8cC186EC599964c7894442Afbf9b9] = 2;
        whitelist[0x87816ddFD2f9865CA3025E46022e17F4EBd2E0B1] = 2;
        whitelist[0x6e1741220945335479Ec361806753dFC83f51B27] = 2;
        whitelist[0x815c04e80E122De55D2B537DA90d8811577e3979] = 2;
        whitelist[0x518354c86A487041237084a1293Ca48D2d581Cd4] = 2;
        whitelist[0xe5Be9b04600BCE54302ff35989c30b0FAD2960f7] = 2;
        whitelist[0xbf1B8f400062C1F240b578BcBCec40a1AeE20C8c] = 2;
        whitelist[0x3458fd8F327f270B32092Cd406Ed8ba97405d9F5] = 2;
        whitelist[0x78aD7E703CA1bCD20ee47Fb64Ad5634720B51069] = 2;
        whitelist[0xF16323dB45ffDA53ADC9EEB30632009041069699] = 2;
        whitelist[0xa3918B53E51fbf173AeBB609eA2aD7C783D93CD4] = 2;
        whitelist[0x79cF2507732dF36C6514dcdC1cfB20ae83cF5B5D] = 2;
        whitelist[0x98f205e5e89b5A4fbe1a68Ee315A6c6089c93AFe] = 2;
        whitelist[0xe0f4232caEd7eC605CAD6092Bf1C495e95E1B079] = 2;
        whitelist[0xFA0611eFe7A1f4Ce14983AeA59EDCcECa73E2e7a] = 2;
        whitelist[0xB3ab08E50adaF5d17B4ED045E660a5094a83bc01] = 2;
        whitelist[0x7e0c90B243a2b091e96C14142dB287382dEaf2Eb] = 2;
        whitelist[0xCBb3ea95c95fe8962465040ED8595aB16E7EDF10] = 2;
        whitelist[0xcCB7B4a28D89CDaA8E25B8601abb379a4FC466c2] = 2;
        whitelist[0xa3299CCa7Dc226f978a96Dbb724a72ea1E6d7Cc8] = 2;
        whitelist[0xbe017be2D41f3965Aab034d71316F7662F50E9fB] = 2;
        whitelist[0x964fd5383DFdbFbd54224dE9F773E5aC7bDb0086] = 2;
        whitelist[0x9C996076A85B46061D9a70ff81F013853A86b619] = 2;
        whitelist[0x0A34299a0AA18dfdD4eeC5d20BDCE5B2a44f40dd] = 2;
        whitelist[0x34b2DBf0979B063f75DCC100D53607a72C595c00] = 2;
        whitelist[0xca4C7708DC417293a97Aa4f80E1a3e7084660EcE] = 2;
        whitelist[0x291E84FcC2aC41B07dadF80722130d524e25443E] = 2;
        whitelist[0x9CD1910b3aa2D2a42d861F772D6821d4378e513e] = 2;
        whitelist[0xDa4DFEFE25cf0123bBcB871573b83856A6977243] = 2;
        whitelist[0x3862903859eA9b1cE6804823bD9ca7a249afEBb3] = 3;
        whitelist[0x48c06dFB7a2245c288494f08FCC5b1D5A0312c62] = 3;
        whitelist[0x58E3C0d1678855d2C10bF82Be3D705ce3553601a] = 3;
        whitelist[0xA078EFb1e49bd30Fc720fB8f6aadc2228B15A53d] = 3;
        whitelist[0x5758a11032560d5A0dEF867c966E0D58766b410E] = 3;
        whitelist[0x3546BD99767246C358ff1497f1580C8365b25AC8] = 3;
        whitelist[0xab4787b17BfB2004C4B074Ea64871dfA238bd50c] = 3;
        whitelist[0xCcd342C5a02805ee661318BE1f2D062A68dc68A1] = 3;
        whitelist[0x58ce1E07f8F05BE96a5cc85fE3a82EA698A14a02] = 3;
        whitelist[0x97cDD6B65cC7ed9Ce076312284FF1be5ae1E09A5] = 3;
        whitelist[0x8043fA7F192dDAD1101757A9d155B4D7bE2dE159] = 3;
        whitelist[0x98e8a88dC25eFC7897acb329548380b9dA4C2270] = 3;
        whitelist[0xA47dA12d2db569fa1Dbb9B32970087dCE5Ae4ab3] = 3;
        whitelist[0xeD79D3FBd1E05Cc5eDc76C8eAeC89851882e5a35] = 3;
        whitelist[0x8BE73D367c6FE787c0484259057eA9d3E3AE66C9] = 3;
        whitelist[0x5f312DF04b19979EF4Bd5876737cfa481A928C0D] = 4;
        whitelist[0x8736eDFf3e5E722F4D2E77ed5376d34a867dF88C] = 4;
        whitelist[0xBD275ED21e220cC35fAF087385E09Db6AC11d242] = 4;
        whitelist[0x4E20746Dd3c16Aa3df9154Af4869d6B34234e65E] = 4;
        whitelist[0xE044BE24efA511730d9F70766d56D0FB1CE7b966] = 4;
        whitelist[0xdC190d7cEA8e8bf0b381617062200C10CFFF0A91] = 4;
        whitelist[0x6372D911ad7329509d683828be1BF5d4eb45bb42] = 4;
        whitelist[0x10c0be5F67833E7D98Bf438FC165d2D97E93f45C] = 4;
        whitelist[0x71E70A39fC2600b952036c99D858C7030cFf384C] = 4;
        whitelist[0x8EBE8Ec97e1D3098511754b9BCA45973B90436f4] = 4;
        whitelist[0x0c2887a18900480F1eC69E4E464684AF6918D4c1] = 5;
        whitelist[0x42d0E922d4EA648e2D9d41101e27c2585e6bb308] = 5;
        whitelist[0x5Ec0D096f8ef2Ac2dBd3536e3dFE2db1361BA6a7] = 5;
        whitelist[0x591F8a2deCC1c86cce0c7Bea22Fa921c2c72fb95] = 5;
        whitelist[0xB7A31346433430D92846f0181C55Fc506B9b22d8] = 5;
        whitelist[0x5eA12341d073Ec5a1226b85f0478413A19081535] = 5;
        whitelist[0x9078a0ce313C6EcF06825E50115bb5354723f2C1] = 5;
        whitelist[0x6fbD7D180EBeE8dc0df0cFa83E3Ab13023e22672] = 5;
        whitelist[0x28395765Cf8A8750E5a51A8A2a4907e6D35D8b3D] = 5;
        whitelist[0x750Ba3BEF0e83C9b0f5063234B8b231033Ffb5BE] = 5;
        whitelist[0x072DF329e2B6853D47964527c442668483F5c648] = 5;
        whitelist[0x330da697403eb8Bf2d59331f86F83cc513b79Bf9] = 5;
        whitelist[0xD83C7bcED50Ba86f1C1FBf29aBba278E3659F72A] = 6;
        whitelist[0x2687B8f2762D557fBC8CFBb5a73aeE71fDd5C604] = 6;
        whitelist[0x10b0615E2Dc77d51f0762C62b57Bd925d3353D12] = 6;
        whitelist[0x6A8a5C4a843f1dD1f3A769C75C7112bE2A568B79] = 6;
        whitelist[0x0Fb16Df1471A5D931F73D98DA8bDD4583a12443B] = 6;
        whitelist[0xCa65De0434Fb8987F702F6aAb690De1D229090dC] = 6;
        whitelist[0xE52EdACB729342786F650e466B98c0f81248E1f9] = 6;
        whitelist[0x64eB6a5a1e4B00Fc7640194D43e89F9D92345C40] = 6;
        whitelist[0x431573685058e5d480fE383Dc1Fd3b644913c239] = 6;
        whitelist[0x80d4495DD9C0C8fa110f5173aE352A7a56801961] = 7;
        whitelist[0x16792c97D007Ff25cdF5613EB7DB26DC5Ef54ba5] = 7;
        whitelist[0x551B807e76F4Bd7BE9B288e43e64F038D1d6D3b3] = 7;
        whitelist[0xdE09A8E048aA3f4C9399702032934Aeb26b77011] = 7;
        whitelist[0xb45158Adf2cdC4e67dd29672684E1053d90F0B78] = 7;
        whitelist[0x1541bdAE61582662C85833Bb0DfFc368316F6126] = 7;
        whitelist[0xe8A7A64554A0fC0d1352Fc7C3e17b656CAA84391] = 8;
        whitelist[0x6ef986B39fB4a18D01aF52aB826eA21E720a1e33] = 8;
        whitelist[0xA31a661FA0247e04499291C98c57ca23dC2d26DB] = 9;
        whitelist[0xa4Fd5F2d9A416AC45EfFd3B953ADad5dE9BDfc90] = 9;
        whitelist[0x40dF5eE2722B43628E7e4f4B59909627f0C018F8] = 9;
        whitelist[0xb104371D5a2680fB0d47eA9A3aA2348392454186] = 10;
        whitelist[0xE962B69739f70cE8Bf52d3ba28ec856BBfe37C44] = 10;
        whitelist[0x3EC52292aEF4039bCBf00cC10D0DCC4c05676141] = 11;
        whitelist[0xe001891949372e1AA33C50c7EA19568bE32ecDE7] = 10;
        whitelist[0xe60Ac1c5B48b3cc3225CaC1E55bA28AA47c9FcCc] = 11;
        whitelist[0x8ff9b14D82B7A4eFe95f248C6d8D7C8D6c447640] = 11;
        whitelist[0xD8DFb78a2d2fF891ae61A4cA1Ce80DD745b3A19c] = 11;
        whitelist[0x8ff9b14D82B7A4eFe95f248C6d8D7C8D6c447640] = 13;
        whitelist[0xD8DFb78a2d2fF891ae61A4cA1Ce80DD745b3A19c] = 13;
        whitelist[0x7da9F0170834dD08804b0240978915d569b7Eb21] = 14;
        whitelist[0xd7Fc4Ab828AFc1bb4b217f337f1777Ca856Efd12] = 14;
        whitelist[0x56879cc88fa3895C082C22035dB1386DcAc53bba] = 15;
        whitelist[0x368667e88e69849A8E4aD2DBbC71E7A0A8381f31] = 16;
        whitelist[0x7a277Cf6E2F3704425195caAe4148848c29Ff815] = 17;
        whitelist[0xB69e9610747520016BDE2a89E3407C5992759748] = 18;
        whitelist[0x73Ac93A7950AF4e92bE6Ed06F1c9F0fC8D166838] = 19;
        whitelist[0x73dEAEB8aA241b6fcdB992060Ae43193CcCBf638] = 19;
        whitelist[0xb6e5C9faD3bCA83c80cA3325F7B01dd5ecae9629] = 17;
        whitelist[0x98d6fe1c3dd4eD84fc1912ad5af1b75a253Ca502] = 24;
        whitelist[0xAB8114546C818A6841Df82347B2f752aD03F6f9C] = 26;
        whitelist[0x620051B8553a724b742ae6ae9cC3585d29F49848] = 33;
        whitelist[0x9C45759c699624DA8cE41Ab2B5fc2ae6B51C786e] = 50;
        whitelist[0x5Bad69D9F8b0600B3acBcC9C604d9879b9073ef7] = 89;
}
    function saleIsActive() public view returns (bool) {
        return((saleStart<=block.timestamp) && (!paused));
    }
    
    function assembleAsAPreviousOwner(uint256 robotAmount) public payable nonReentrant {
        require(saleIsActive(), "sale is not active");
        require(robotAmount <= 20, "cannot buy more than 20 robots per transaction");
        require(robotAmount >= 1, "cannot buy 0 robots");
        require(msg.value == (robotAmount*whitelistPrice), "you need to match the exact price for the amount of robots you try to buy");
        require(whitelist[msg.sender]>=robotAmount, "You cannot buy this many robots. Are you whitelisted? Try buying less robots");
        require((whitelistCounter.current()+robotAmount) <= 1000, "not enough robots left");
        
        for (uint8 i = 0; i < robotAmount; i++) {
            _mint(msg.sender, (whitelistCounter.current()+1));
            whitelistCounter.increment();
        }
        whitelist[msg.sender] -= robotAmount;
    }
    
    function adminMintWhitelisted(uint256 robotAmount, address to) public onlyOwner {
        require(robotAmount>0, "you cannot mint 0 robots");
        require((whitelistCounter.current()+robotAmount) <= 1000, "minting exeeds robot #1000");
        
        for (uint256 i = 0; i < robotAmount; i++) {
            _mint(to, (whitelistCounter.current()+1));
            whitelistCounter.increment();
        }
    }
    
    function adminMintTeam(uint256 robotAmount, address to) public onlyOwner {
        require(robotAmount>0, "you cannot mint 0 robots");
        require((teamCounter.current()+1000+robotAmount) <= 1200, "minting exeeds robot #1200");
        
        for (uint256 i = 0; i < robotAmount; i++) {
            _mint(to, (teamCounter.current()+1001));
            teamCounter.increment();
        }
    }

    function assemble(uint256 robotAmount) public payable nonReentrant {
        require(saleIsActive(), "sale is not active");
        require(robotAmount <= maxRobotsPerPurchase, "cannot buy more than maxRobotsPerPurchase");
        require(robotAmount >= 1, "cannot buy 0 robots");
        require(msg.value == (robotAmount*tokenPrice), "you need to match the exact price for the amount of robots you try to buy");
        require((publicCounter.current()+1200+robotAmount) <= maximumRobotID, "not enough robots left");
        
        if (block.timestamp < (saleStart+(24 hours))) {
            require(cooldown[msg.sender] < block.timestamp, "cooldown: try on the next block");
        }
        
        for (uint256 i = 0; i < robotAmount; i++) {
            _safeMint(msg.sender, publicCounter.current()+1201);
            publicCounter.increment();
        }
        
        cooldown[msg.sender] = block.number;
    }
    
    function withdraw() public onlyOwner {
        (bool success, ) = msg.sender.call{ value: address(this).balance }("");
        require(success, "Transfer failed.");
    }
    
    function revealTokens(string calldata newURI, uint256 newSeed) public onlyOwner {
        require(seed == 0, "robots already revealed");
        require(newSeed != 0, "seed of 0 is not a valid seed");
        tokenBaseURI = newURI;
        seed = newSeed;
    }
    
    function setWhitelistAmount(address previousOwner, uint256 amount) public onlyOwner {
        whitelist[previousOwner] = amount;
    }
    
    function togglePaused() public onlyOwner {
        paused = !paused;
    }
    
    function features(uint256 robotId) view public returns (bytes32) {
        require(seed != 0, "featured are not revealed yet");
        return(keccak256(abi.encodePacked(seed, robotId)));
    }

    function _baseURI() internal view override returns (string memory) {
        return tokenBaseURI;
    }
    
    fallback () external payable {
        require(false, "you need to call the assemble function if you want to buy a robot");
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

File 2 of 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 3 of 15 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 4 of 15 : Ownable.sol
// 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.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 15 : ERC721Enumerable.sol
// 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;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 6 of 15 : ERC721.sol
// 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;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 7 of 15 : IERC721Enumerable.sol
// 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.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 8 of 15 : ERC165.sol
// 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;
    }
}

File 9 of 15 : Strings.sol
// 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;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 10 of 15 : Context.sol
// 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;
    }
}

File 11 of 15 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 12 of 15 : IERC721Metadata.sol
// 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);
}

File 13 of 15 : IERC721Receiver.sol
// 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);
}

File 14 of 15 : IERC721.sol
// 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);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 15 of 15 : IERC165.sol
// 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);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"uint256","name":"robotAmount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"adminMintTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"robotAmount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"adminMintWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"robotAmount","type":"uint256"}],"name":"assemble","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"robotAmount","type":"uint256"}],"name":"assembleAsAPreviousOwner","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"cooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"robotId","type":"uint256"}],"name":"features","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxRobotsPerPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"string","name":"newURI","type":"string"},{"internalType":"uint256","name":"newSeed","type":"uint256"}],"name":"revealTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"seed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"previousOwner","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setWhitelistAmount","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":[],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","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":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052602e608081815290620054fe60a03980516200002991600e91602090910190620029c6565b5063614e2030600f556127106010556011805460ff1916905560006012553480156200005457600080fd5b50604080518082018252600d81526c53414e4a415920524f424f545360981b60208083019182528351808501909452600384526229a52960e91b908401528151919291620000a591600091620029c6565b508051620000bb906001906020840190620029c6565b50506001600a5550620000ce3362002974565b600c60205260017f2d0ebdc4e23a5a86cecc07e70d53c9f9732b213adeb99f462e45a1e84faff4d38190557f364a7dbcfcc40e636925215d1675a9659004900fd07db2bdf2ef5d9abd4e92298190557f8d15bd8bdf5e4beb1abdf26d62ed0d2afaaa66185e6791f959c2af160a479bf48190557ff9768a6e6fbcb23573c9a08b30d8d9f80bbd8100d85b2f0e7c6eb5828daa353a8190557f766bb692d63743cb5b31e0c95e612b6acae3ebf408e745f2a431f4c1f32a62958190557f0a0e66becb80f56423faea92bdeb4336730ccfb263bf96be844ba901a69387b28190557f3fca15d0a7024dfdaa83dfe18e8bb79e099e5157d15b12d8bc37d7396af062ef8190557f1b255209675803cb5cc82ce93cdd63f36ba2de315ce3ec853ad837a7c3bc6b648190557f1809cd7a034f093c6cc5a903da68b2c743d1c32454c3cb83f47d76e776fcb4468190557f37c1167a3434454985225d6be5c5a57b53a99aba8fe4800b9f4f2834472126288190557fc634d0eb94f95c0752a9f9b23c77d1bb501e81166f5f02c4dc770d7654f073888190557f0c13b4089e416049cd4065e6ddfd8adda0b1e9e908cf170748a9c0ebe97463fd8190557f508d28e2def250988249919ccfe35283877a6f2c8338a9a1b327d94d45e726238190557f4d9e256459d67d23e6add102b383f9a328c09503df965f811a7cea3feaf07ce28190557ff1a39d9694c4f61cf60c7dc1fcc43e2a08b44be858d7eef03569eec129fdbb5e8190557f99a44dc8fade4a8499c6c41787fedda2785cc376b1c144c89e3fcb72456afcf08190557f583f9f6c7b1a1ddd91ea345cafaeae10acf739612ac8b227b0f46592d2cc81f78190557ff715969227c90a38c1179681b884a28e121cbf294d66540f7d36b7d40518b7648190557f4f320d69441c2df75d5d1f7e0b9d09b95c1b705c02bc179949bcddffa4a9b0158190557fdf21293ec2202cadd64b5bb3370b071db361414f7fb05717d82ec7f0325e6d188190557f222cd55375bed7ff5713ad1b604ddad2e752d39f334f340bf842abb36402347d8190557f9ecceaf5cea8df3076470295be49e63d417d3e77df2f6eeacc258624e660fed78190557f4497d7109b8d30ab03251efc18eac919eab11e4f5adc4c2527286f1cf20324c68190557fbf1816b4488b62bd35ee9f723e2d4fe31e397b199ad39b8292ef92517c8e20b08190557f8d9d2186bc186fc0b8912e283c395cf4bfacc0d942036a36456340bdc579ecb18190557f4e3a98798ab6840028ff0f1248d0e034bd52993d56b10dddae67e3ebb72e58d08190557fb588195de9f5b5df2dc105fbcf87d408c7e67990d9d1f99c8a6a100c03ce993a8190557ffeea2c66666edd1efe3cc16c4342c345b3cc0825a43e342660654e870424fc3f8190557fb95e9ef61eb6dc843a2189ffcc312465b060b5f3dd2cd48b98792b4868fcb84a8190557f7913e59e5da9a8a571ec165ebe71d6680d12a123f99c869816c82b6348dc67ab8190557fc42ae8baf8a5b98cdf2c57f4646162232d160d675135467ed020dc5d4baf9d758190557f83cccd5b128f831d91a2b54058e185b7d156563e90b8afb74acd85895d8513778190557fc5086a25bd02364d23d91ca1901883794c9872ee38b8e8d755347f32830a96ac8190557f157bf17a95561f7c8c40ec369dc17555c51ef7cc477c32eab589cdbacd1e11068190557fef073daca6b77ab9618dbb4a35de5b09e80e5d3ce47beb8feba78ff2505f9bb68190557f77e6f9f02d52801e4356f485e4e780c5aa8a6d98b4807a50ec0276a36ff51e328190557f695991b994160facced8057ebf19c73feafef1c34b61decf44b9054c456a4dd98190557f4a833793a51ef3bddbdeebf87fe5de17d962d35f71f1da5b512b4731e29c954a8190557f5a3db8cd99ae15483238ed1301fbd21d5e40b6b000012ee685cc4d56e6bd49798190557fe077feede2d894387b84324d879b1729b8e59f3aed6730acac610bab35a4ed4d8190557f0c62db70a80f42161adfa8b39afa8ec6934424c5744ff2592926c73975448d668190557f7d05732d6ff9aea32dbaf478b88f9a91cb2c8c3a63cd221234fa486770f14ccb8190557f4c64697a0a7f067c7924d8ade30857dafbe62e4bcb0c29990481aae4e68b3d498190557f256cd2b902c386bfe360deab3132e11cd2f20d889da8bcd8a6a6d2c06c1195848190557f763ee4438fa4a93f10881864d51f84aaac3b646a5ef2e9cc882c06875db893738190557f36d74b7b9b7c95db4b1f3c517f7379c91cb2b06a707d694ec0ab28ed0f2f8c178190557f8220c0a85adb39800b4234702c0584eaacfce4a081cad9e8900c87283f366eb78190557f721fa33105bd7428d33c0c4e71eefc21975bc95e201f9e3661da4a0e6b059b088190557fb04af4cd15cf23c59804203fc6f84e467b42784cebcb03962120a9f95e3df0bb8190557f8939aacf6de907e31a3ccc547eda55c506eab26f3e1e252c8bf4bd0e368855288190557fe9184d7176fb6f1c434a7286ac42e8270ff7ab20ff7b365e2f29eb9fa9f8ced18190557fd2b321497683f713c016e53bb9de5215f7518d8a61f3d14949a8596e01d28b478190557fb36fa0a0f8307510021a99499706e383db796daa8ec7013e6554796a217b8ee18190557fa7a58941f216467d8064e90d0460622a2e278b67955c7822fff78eb4d49a9ecb8190557fedc1e7a64c78f04c945e519ece1b896ee592ad475ce8a3af81e9efdb6ea367ce8190557fe852f93a28f0abcfe3d1617c02a9f0717b3f6d5175c1db92c99028098aebf8298190557fc316653e2d06408f339a60e4cbf53bb2d3f7823c23d58f2f79eaaf9cedbcbd938190557f0d46ec8dfc8f67f29c817610dc535ac5f01bd1d1256f39491a886cc21eda76728190557fc517c883811c411bc1ff3e2057554b363dd4f47007788f12f348a87d82a98e2c8190557fe5e92d128b2fca1f62c1f107f4a410ebcb108b1d56b22a0a91f09cd3cc11ecf98190557fd3ffe8db61c99ccba8b24d8611cd8a662bf7541742bce03829eef3e9d13625e88190557fa7b5faa3b1d514c2b06faecd7e6253698d9924b8eb235b90486eed2a79867bf08190557f9269a5ed812121558496e270accd0e6da2d34382bc8f2cfdf74a47381125bf7b8190557f6607dbed772408cbddfaebef3c5444eac276623354f474d77baa356b6630a1528190557f3d4f34e37831f48d8bf4b3b405da5dda81283757a6b02b19addb6a4679e02cb38190557fa2549921a389e0b33d696b35f9ba95fc1664859bb37589122b0e61f5a960c8a38190557fe5450aaed44380fe513ee6ee88d208b2bbc57ee55c62e34db14ed357b79b77a48190557f3a5358dafce468a6932b940ce9abc6317a0704f5aac54d0e0e61a499230907068190557fc11be46b4c15753ef96709b7920ba7f4523d21be376c7129c756b9d141b5312d8190557f6e7fdc05314c33accf71a94967f149a636e04bf2b7d7148550a0fe9fd79778cb8190557f9ffa8d40a7e6ce0f9f4b78a5a729a0c66867e687de61eaf064f0f871cdaa0c078190557fdfde31e95c8c833094f18d1e7322a22338e2444071e997838e5d6e5209630f8d8190557f31ff5e56625ddfa15977cdee9cfac4d5867c1a6e1d1a2ce3686a2c8332cf0e018190557fc76c7f370d1e16f9f37f6e44f366eaee0aac87ded520210bf2553c9da193a9ed8190557f29be442b2e5fcc5247b1e00def88fe33e0913cbbb924119eb1a98c77277d58328190557fb221286aab427ccca3518049dda303d5f6310935abe5c4cb54a76d1d8606762b8190557fd26c843869ac96f5bb8facf1fa0173e692858c636c14abf5f1e855e1f33987218190557f90767160df251d1cb3273e089ac14318864c6b80a70aec2f8531d3e9dd9820b08190557f3500e95f8b99ae5f98507bd0e2de952c070f3e210d5c8447ca528bcd58c40ea58190557f1ed5c45537248d2b982c79e1a2688f1beef89544e3007592385ddb64db8f1ea98190557f7a2fd187b16b4d3b913ca474f7ff321434a8edc0aefea456e375b85bbcc2417f8190557f2151e245b80fa0e96c4d2acf3970e2a1ea7e8f8b7d02dfdfa727cb8c8e6e1b888190557fac5807402a1ead9ea8a4e46ec12ef6b90c0f03c54d8f8a430c5d900cd684a7d98190557fef7ed574f9444978613671a3daa6f1c68fd188d199b56c675503c98fbde8c4de8190557fbe8ff8741e794621c71cb217a494a721a7d82a7b4818afd5c074e52b3e0741318190557f1646979dc1056f7685704f15a598a5dde213721b5cb8a6c1545cc87fa429b0128190557f4a3a39756b018a6d19675d1860c4d1c29a09734b499af399ec6e2e36b82c78c28190557fb113b33463334b49d7454b2888f7ece81db7ba3c07acf5fcc4b1ee761c2f96d08190557f411d126572f3b3d8ee479b41c4d0cccf4590179251df789157ea9ddf67e65b7e8190557fabdc5bd2f98c1268d2beac2e62fcab631007e246f73e5cc68b96f35a7e1abbf18190557fcfde4441849d681289cb04a2a8d4fd8ed4cbb2173c02466053a25e5262b4c7158190557fc7130e29d02bbed349dd33303870628da67c03ac4d488021bbf8d77c97dd95b68190557f7c801338f5228e2322bb115e71306207b4f5f99b971e7cd4770ce84a9710d9ae8190557f8c4ac764323152a46d0cdedf2c2007f731aeaf7eb915e8337270ff4fb1e672968190557fe39e5371c6934788a6c42c16a8ac9f3e59c9ecfc66f437d52c1dd5c7ad0d54d28190557fdbfe2abe4b92cec88cf4301a0cbe534f0d88c8dc7670acd28d6a1687690b0f7d8190557f91d1a5f590e420a202d83d91852db5121ea993841a19baf7570ff25faaa1e6c58190557ff638899a9a993a0cb6359e3ea54deb1e94b56742576793c0dd1e9983dc8e34fe8190557f84eda7fceac12021f6f55ff3e5f6e03264829ae04105e0b0489a71b6908cdea48190557f65d0463ddf331488b24562ea72b563a1b2cc6898ce2f65e0f07bcf3d52fbb4f78190557f7d4f260d3a468ba547b50de9477ea509729144389f072aa2a145294b82134dc08190557f45c48e2e1888355eb4819b5adc3f2d6f76cff8dce80e2095784bab7cd39b54e88190557fcbd83fc29efd22fc9e885bc035e5c6f4c982d846d9cc22b879e2bb06357dd18e8190557f8bcf192d8043f2e6b08bc15099faa5e63dd8c33e3817517dcabcb01c0fc5e2168190557f28d1e3997afa11ce9b1f6cf7e668b546b5549e6fb58664a1c73c6c9b2d7827258190557f3848e6e9e93e2c399ca00626f8d1abfee9e94d3e06d2a66640ecf82d917fa7b38190557f0690ccaa8a53389348907049bf7d8c338907ebd5095218f9abf84f0e035c54c68190557fec95af4e001f017f74a8a1c959a291a29f9404220d7091a8ddf7fb60abd677cf8190557fb716de9281a4617d6763213f9be2b6e13321a0dac1196afe4c59bc5b8d5d89788190557fff7d2ecb644daeae9e29891198d89ea61bc9946f2e49268631643b46a81140f78190557fdc827a9d57fd7b919fdba6a5db6cc113fa25bc2bbbeca66343eddd3e539a88b48190557f099d75fd8d074b09ce402664ae9e6fffb10164e491d1ecc089676bd86ff31b168190557f65d1df4be6ee1894c3694bbe6480d8a39c16994b4b0fb115b92f85bbf359f3aa8190557f40baa1690d363706804501b029f514f5f53eac0f7ed556389a2bf671ffeaebb78190557f75895b1cc25dfddeaf38fbff52c2305bd1b9782268ba647417cc3e3a7b6fc4808190557fea977d1df12d7ef0a5480ff7df5c71a59a67212f7c79b63364057e205a2ac5d88190557fd7e47e349a294da333b7f20ba3a436441514e8ccd1d6b52ee6fdec053f1578668190557f40e36c0926e1d174f2891d1768afcf575d3bf0da3366884470e25163aaa302cd8190557f3f6f6067a181350f25774c86e372cb0325758d35f320226252da621330fcacb38190557f516111a3a8e75719d682430f222174cafe3f06602d6adc181edaee510eb0e0f78190557f23de2132ac4fdb160683cd35a8dcdbff12aa9708c43934dfec057074d4ebec998190557f4dd2366a8c6c3c92108ea827536ff8edf8cec51412fb18fe8122dea84d5cfe7e8190557f348a3ac9a1052af4b8b619a45925085efdb134c144255e0080b453ff44bbf67d8190557f2ea8168ef0b7a1bf4783d8922cf59d1d051dfd85d11b2b3eda340f6289bdf2dd8190557f1e3b07daef41edc384eea52660316b56fe8ab68a0affe6e4ae58c4b53a2879de8190557f97cee379da6ef44f62878a9aadac01e072dd60380a36c7407beeb75b61377f2c8190557ff0d1137af42d98044221aeeb9ea0b41e7b2bd80ac88a1412e50dd9fd1c9a94fe8190557f8564795afc653af81ad458ae50c697d62865387c1d5b8c4918d263029b25b1408190557f65e337e991acd549f884a208d0566b14a4d1b88eb6ae1aaff8fd61f9596a0bf18190557f8d7c266b9f2bb31d3a1c36f0e07f3876eaa0c2be933b8ea75fc0e4e992f627b78190557f1db6d1adb6af9037844ed4353ab8504b364f1a43c02fe57e80a781b04d3222058190557f0349d541fee392545a97fa2b5e0917620ba04d0eba46f3096783cb163eba24c88190557faf22aa3a51723a0d357b74a483542b57173915261e1c13d40667886d6f4134678190557f1d636a4b82a448fe141238b4de347cf68c9d34fce495546301f044bd6bb8b1768190557fe6d33411cb2f9181407708c8cf5bb4e48f70ce4963f852aaa5f659118ea45c528190557fa7a435f70d6a1b5f6b8dafe82360f1ea444d4219199c5a700adbf0940d9d9a768190557f0df8d5a8a4f4f0690bde86c69d8f70e57aedabfe069e0e69c15682fafc2e9c998190557f7b3eb9c2a3c21b1be94be72537b84dc631cab5ffae381b27ad58568da6967b728190557f91f3d31bab15faa83c9dd9f6c0f0d86d370758124a8f99777d0c62bf17c200d18190557fc6a01c619189683d0b9942a9a9d57bbae2d88f3f84132a753b4edb0e7006bf618190557fd4ddc6c270fb10b0794b31a5b2b51e4203b8e160bceb0a21a67fdc16df38fdc18190557ff25078f0bd067b699e6c6a5a9bac4e7dc79f9fde32b71eadfee409d492cee02b8190557f4d3adca0576a903049d82a6abb42ff4be17293db768084b99adb7c17f4e54ac58190557f38ac6c0c457c52f93581a461cdc72ce9b1802905f9c483bd504ca5f5ba51cd398190557f5d2504fa406621e71d56a689725efa8368852c4a07afcd8f47548d35d8d7045e8190557f77f5601c0387a836611bc68d367aa4bf1ac6aefc2451da1b940784d32ceda9dc8190557fd16dcd9dd8763658ab056e53831191ad3c28a9adbc70e6bf962413285fbf06d48190557fbd1c0cdafe9cfd13eee68a46285b5ac011b98120067e8772868e3ce96712b91d8190557f46c4c820d52f8fa529f585c19d0b65078775ed76f77bfa5772fb01d3b7654f0e8190557f437522eec813c018fe65faddb62c2c6f49735f3702930d2e75fe9e59758a915b8190557f71957afc7cbe93ac707359942d7da7df7fe0d9aef830b712f6877b5a8e481be68190557f1fd08084121a278d8483d2362d497221c7b0c87ed9a61552414210a94faf9fb18190557f31713c5caabb8d919d91b7a7b29bb08f0bd85d4060d7ee5e29300df18844b96e8190557f73f638370f3479c716726358dbc1fb5008916ccb049654ebba1e732273b6418a8190557f6b97ae2b1729c3946f6858a52dfbfc1b5e00c9e104abfe5930d31d4b9f62a6a28190557f669aba736cd2cf108ddc7ffcd48f8d4e9096cae1314626df5be77fd6f11297aa8190557f274df29c89d9c2ee25b27d938f74863dde291741c4b98a0b6c0812bb1e3f8af08190557f88a17c84d60f2de2d9f36e60577562e2965f1fae46338c0fb133df414fc998048190557fec28502296abdf60df2797c6a4701617541baea2a86dfe3c8a80106dbd50607f8190557fae2fc6c9a9565f6da0e9db2c33da95c86f0d061ab6f63d781771384e3d2209458190557f4681faa65a5dc212713061bb27a533e37e3eee943b58a108fa6f325d9f27b8d28190557f4003e2aa1bfcc988fd8c0e64465f3c8a8b89c81b4802ef69dedf6645a10685918190557f71623121b79cfd835f661a75552633bb1358ce7fc35ef68c9dee1dc2867def348190557ff6aa11da157c8dcc3ad2f02cffbf0270f7e212d6c30407ee845bf63ea6b2259f5560027f953edf66ac3b31f42bb03f9cae0b7a102120bb6e2e4632f0f3b45fdad0ec6d9b8190557f53aadcc9e7084d7552a3e08c3ee4ca03ac1d8cfe3572185d8880edf0c0c52bc88190557f3711a42b2911dd61a1b7cdeb47626673486c8446b471dcdd8a46f4189c788e0e8190557fcbdbb7d3c73b5e14d15b2b01497aa8529fdf16e869afabaffd31c2f28f0e3b498190557f59ea8fcb401706bfdcce6793539033d3fb432b5f4db1b624b282adc50d57781c8190557f0550dc8be7cb1ad4e2b26c533bfdb2d7ace02541231b5afde0f4c1efc9bb9e758190557f787a16386aab2278b52ee6236d74b5e4c89585e8566001e69afd86d05f8f32098190557f415211b2b9ae9a337fca88a4f2263f7bc9f6bd05d9fe04d1f6e17d9b9d271d7b8190557fcc551a502e09c523e97c4954d0e57420acc33e1dff5b63c36d1f166c258d27db8190557fe2c679dd49804c4c267828a0cc99781212d3c4b4ef1e1f75cf0dfd354e7029f88190557f6a245c8fd9a33b23a52b4986271121412d8103cb4e2a55ea6c908ae11960ad6e8190557f501e6e6b1785a98180a1833fcd3a9ad097a0fe8086b0cf26ded201e6033bea238190557f41e78a84f20e471957ca6d7aadf7d7304d4688ba7a133aca954a3183fdc1319f8190557fe25103c33a873bd26a2f3baef2ab26793b43acab87769580e0dce2da0220a1758190557f1a3cfb6ea6fd2a21986f95223c63c2ce1ed242c57740bda7d73b5ddd37958e128190557ffcb8a2b2b7c095908f1e560014066037ee7c01cb93ee84d74d4b7116d5d6f55a8190557fb72df68679f8bc4bad7a75ff84580e34b226d620b8efc0c1958add6f7ce52adf8190557f1c4fffaea527bb3ce6ac332af75ad69bc4d8579ded2d78c103915472406732ae8190557fc3173f95d20f7facec80c06a25d158168c6b6bf742e990de4993e60602a299a78190557f4b82f6b379259a9b04af56e117888cfdcf15506100c9cd774ab27a0c28e49cd68190557fbd0c64082dc3fb5fd1d7cb7a8fdd7cef4b589022bdabc55894431de217b02b4d8190557f97560f9afa15f7695ed498d89b8b9c0a5ad94bc29a0bbb11a5fc18bbff37fbc48190557fdaa3a0ecec4ac71ff8b53945bed7d701eb311db172cc41b469a2f28b78b916df8190557fbe1ca9097a66fb77d1fc77fb8613db2127406d908d65e99f8a08152e914826c58190557f5030b9ae634cff6397da372205bae27121ed3ac14ae536c8d893f8a9e63ae0c38190557f0891f0f9d981fe35abe3a325dff05089a42e9d89a426efc1d69630b1ecacb1338190557f3130f87bafecadcaa589c89d150b9422126214d3008e2054dc64e82cc6efebb98190557f41ffc5acc511092e1ba30d66a3ec00052692421a3ffe69cc82011d2706328d608190557f04996ad11c07ca57401cfe2677519e427f34c1e7033aef763f2f6ec8985f81ce8190557feb94ede00a640f462b23e096fdf22d962e92dbef6e2b3f845e079630445c63da8190557fdefbca85c8824a9ff471d60de7d904147cd4829487324917ec8da794af5cc6438190557ffc5232f9050d9c9e5aa1602f8a8df8bcb5a9097004f3d83ad03545e7456b39b28190557f68d0d79a04e5c0049ef65f95684b1e0144b05b2a4c9244504736b03ed628761b8190557f0a8ad3b46e9a3e36770f2a3a8139168c407355eae1808efa7e745a1ee1bc31088190557fbfb750b6a6c844b7ef2b3e10f8a70758a4fa3b9f2866980691fbb9136d437ca28190557f63ad3159ae8174a0e7fe9ae99680abeecb0be972ce8a9795b56616be361683cc8190557f3ea126f2b7b5653cde50f82e565f001656192f6a8642ba66110be0e3d1758d398190557fdfaa299bf7179271fd89b9ccb758c8d5e5dbc53c492f352df3fca819fcca5fd58190557f689437999f4d6b3acc6f40fb8d6eb2d3fa7490d89cff9355532a298aabdc111d8190557fadd9e0049ca6ab009a0fb82f74373153ab10054d4ad375a8c20a6df779c2537a8190557f4bf108b03324263721292700fb8e977d86d085dd562677b6a198a8239498dd838190557f7b2b1a6d3bbc94467777cb5133201dc0ac06509c8adf2a10c1c9faf014e43e0a8190557f560882966ce1e9721b45c5349893136436d1d56c7f8af0efde3771f51611b87e8190557f7d80bd45cc2a6e6c3956ae5fa9c0c35bd69a76f3b2e4748ce2c2f6d3a197e75a8190557fe946ea1a88b90620a97b094efe2a13dfd358d1bf12e1d15d27b32ae155cb3a1c8190557feb6947077d88f35f3b4e29623785b4ab8376b2c73fc8dc7511ea0c4c779bef3d5560037f1f6fb3df846b286937c4a3e83d2a34c9cae13ca853f71c735c790c0773620f568190557f684b588b659d70f61d82f043dc52ef71372cc23306b7efcf432c7ff1147beaa38190557fbec31758925321b68388d74f46103bde83c250e658c61d9b07ab6bfc250b47208190557f2a7694e3e1242631070a59c7bd52dd8acbc869bf48bb123b64d0ff360343b1178190557f72481b66f26421d92be6fd895f3cfea9f16bab8ed0ca504e8039f364c980361c8190557f8c6e8a2229a707ea37595b5f89aa2271cd3b43e190d341ffc19407484a4f08958190557fefbc75b78f7fb585ce81404d2eed806cf2c7d35e37ad4deffba1e025e4c571348190557f4654f9d68e21934caf387f1b04a608c7b054729457bd19970eabaf516fff156b8190557f1c4b186688557d9c9f91d5f0f1b80b42a24891da160c06648ffdd5449afc33658190557ffdb8b393e9eb2c17d21e7ea0cd7287806c3454698dd2a6f179d700adfb83ef9f8190557fd53b34bf8c18266c1ade5aa05ec8a7d509f64848037b45faf342035519266cc68190557f2c7172f7c1616c8ef536d322b5d24ba6cc40fb4dea44f71c3c57deddf0be2b5c8190557f86cf6bda2ffbbf9560d974c19c319aea2e2635d71bd651e6f3a45d10f9223f668190557f526f92644a36855a9c1a60d4df352aebaaa78c440034b070598143c2f8131b058190557fc69d2303684c039cf3fedc522449f8953ecd66dde7eff46c510fe371941a2a515560047fd11a012112b3ab34837892f66d3765ad6cffa130a09b75e9fd69d16997cd99288190557f3a4fe2f847c70667eae8cddbd0d69538b12d3b4e75f924674b44f88cbdab48f88190557fffd61d1ccc417d598b99dd27f7d29d16833d3546b02aad12b781c219a482e47a8190557f9e82d9952d17f9f03089bb505f0d0a6ca19711a08eb08ed01153847ed4c827d28190557f17745227923c0385b8c654ae5e1ea044747b06ee601923cd6ee14797cf05c5a18190557f246336400a4f339d3af7dfa580c529264472c64d60fce07fea541eb83c22037a8190557f483f0820a32da78488e9d047647a893d54543bef0ae6d8c34e7c1f96ebc591948190557f7507ff1d5657235dda8a4105b35a950dd1b6985752cb16675d041fcca389db798190557f6250d576836931dc50be81b7a3aafcce94753ba7bd0c3b1699066f111d83b38c8190557fdecb567536e61df645421171076fe742f2e5d84ffc592833dcc2237fe3ec05e15560057f2295a67e7ce79ef0ea44da78e538506ba8f462e502ff4ded095353c2543a9e3e8190557f59af95013fd40c97b7be0ba74af7b357638808072e0013599451c833ae03a3078190557f0581e88704e155e08e14c5e80af1eb07ffcce5598d5a8635033cc9702892502b8190557f30cb9577c38bb44d14aecb654ba33168d3a6ef7bf80bd4761121cdcf325d21aa8190557f8b00ad8484621004e8a7cb2bc4af514773cc4ef5915dfc6f80147d95aa2a63a88190557fa292992791a85c555155c77686dc1d1540cef3dcb5584ad6c20bd332e87091368190557f4f3b138935b1ad5d4c06e959bc1734f1a6219b4d0f041eb53fd352e6ff95ff248190557fb34328c6b4eac4227c4cd32bf64f634ed146648228ce89625b8914a8e5ec5fb98190557f86e4ed326cca0c0c56083c1c7e4c97dd0d682766a9fbdf733a8ea7e3e06ace688190557f87ab15d01f723bcb9d7ea7230530ecf1689b10f6dc5b1d0bb2cb47c3246daa378190557f20f8949037687e70cc6e4cd0d9da9ec6f67de46938895a17cb061a0679170dfb8190557f9427f94b449b99cb18ba99871c811b9c372eeea94cd909da73ad3948bc8a67525560067fd21a03026a810ab36f77b4b92672e94ee632e1bfa5f3aeeeda3f95bc35bfe4c68190557f6aaa3cea35fc61a2b3707c03d46e87bbbff25d4c1b80098d6f6b9302a3717ac18190557f60ebb7a1f6ebae49b2ce4d6dbda2889a651098b9cb28edc99654304db7fdb98f8190557ff8d2b0c22bb8298b20781f0ff000bdafdf0921840e8e448c3b1ec9dd40be728f8190557fb561ce1ff4c2da1ac99bc2605486543839f29e42f71f34b9fca4b0517a9527498190557f85fb11d504cff31bf5b3aeea706b2885517dd35d3143bd4a847e81f045ec52268190557f329696dd15a77adc9b434466329bddfb7daedca661512dcee14810febd77fe638190557ff1499ebf70d2f71396a9e63ed270ac032db268e0dcd1b7b953ba206d034ffdf08190557f1c7de3e63d8d8f4f3f510348782073858799344d1b33eeec1191090ec11fb86e5560077f3ecc4c63f3d6997ac95157107c8168d1822f90201784c3eb03ff25e608c566858190557fd729f117eced27f093aac23c33d54d3585743a24ea55b18a5b5070e203383b908190557f15bd55aa34a8d61e6e781a0f51db218062c0902861f6eee45fb72fb8b81006338190557f285de6cf15cf2de165b81dad9037f046b28ae8fc4127383c6fdf3244882a79db8190557f5ab873ecbe36bd8e615026cf2c7a174ee63b44434b9c813b8cdd011597835c8d8190557f14e27264f1f7619a1804e502f5a27e4ba147ac8f871ad1451d755abd3da5ee655560087f6f5cbce7efcfa3e5dd742aeaa6eae5e78d286a9da6906463310e684a4eaf1f3b8190557ffed20c26c44b55f5c321c14e23c7b6bfd5ec2c28527b25c527eb873e2d2648645560097f398ceffaaa34ae1b557cfccabfc3b5ce45e2fcae5ca579ae92fe049a455be3918190557ff2d638e2618fb0f8cd4c6bbe8940a64fbc16305f693dcc0206ae6f8cf8ce03cf8190557f7336c0d8f5282762f20b39e4399d1b2d68a34a0d3acb3578976fdcef8c4c1dd655600a7f34e3b7749b4cd2e34a5bcc2ebf057e633d531b2c6610c79c29d7fa32884102428190557f945a595a826887012cfe062522df9a5c5d8ac3dda8c8c46b4ebc07c94d11ed92819055600b7ff6c4f3b0dd30396ce63e5d101d8269bb9bf437481e8f9351424f87d9c50653eb8190557f02a3ae6a93fd654b4acce87520c7221bb1c0b261566c798ac566ab1faf9bad74919091557f1371d82e46ef665e5ad8313714c0cf1d3576f1986b347dc15c0ba5b20203754b55600d7f520185e02a162a8bf7d8895b2b34fd0b8dd6945fbdce203a65ed42cb392ce1548190557f6c25382e1153190fb9c3d3ea33725cfdf452dc7d020a4f6b3e7521b68a91d6ba55600e7f45bf3f67eaae14ed3336689fa98f5575feebc7458544c3ec3c3b13b51cba17768190557f8c66bb4019acf43ac3b208c84e3b4acfc3399e73209df1385b0b095a720ecb3b55600f7ff15eddcdee9ba6f096b9e189533480a9890edc253a7e09f49a04e7d24d871c2c5560107f50b63dd37e2a7b39feefd701d3ab8b22816be929517dd3786f3b870bd93f381a5560117fdb3e6640b5b4dfb80959a48c90a0a85a62e209274b40a8b731d3134a9c106b2a81905560127f95baa24d0a2dd45830f1fa57a9a0252e55086faf54957d2921834c822023b3be5560137fa1ea3a4832601e0c8e02adcdbb9ebb8caeee5d84b086965b5c1a5078b48027498190557f0652b348981cdee25f608656ce3f98f28aeb0a98808ce7962e0f0ba1c3e97969557f833cbe4aad9eab2b0d66be8846d4f1f62f4f8f0f761ba49f5f2a7a9cd57b691c5560187f782d62692297817d2d0f9661d06d18b05f1faf191bedc6a9b255fbd6e12b350355601a7fef2e475a53d85210f3283aac9b2c10a6edc7ab2609b255d5b5268aba449408d95560217f99f7dca95fcb6457d11f9a24095a84e87469f01df5e43e4e89b6edfef81fde995560327ff6068cb83da61949dbcf1249176f4683b681f54e2b672ead37b5d66b252807e855735bad69d9f8b0600b3acbcc9c604d9879b9073ef760005260597fcde6f3754f141ca4ed8dd7055f4c71ee646d8a7f65ed786752255d8cb96591865562002aa9565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620029d49062002a6c565b90600052602060002090601f016020900481019282620029f8576000855562002a43565b82601f1062002a1357805160ff191683800117855562002a43565b8280016001018555821562002a43579182015b8281111562002a4357825182559160200191906001019062002a26565b5062002a5192915062002a55565b5090565b5b8082111562002a51576000815560010162002a56565b600181811c9082168062002a8157607f821691505b6020821081141562002aa357634e487b7160e01b600052602260045260246000fd5b50919050565b612a458062002ab96000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063b222e0c2116100a0578063e985e9c51161006f578063e985e9c514610634578063eb8d24441461067d578063eb95db5f14610692578063f2fde38b146106a7578063fc1a1c36146106c757610204565b8063b222e0c2146105b4578063b88d4fde146105e1578063c87b56dd14610601578063e6a6e7a21461062157610204565b80638ede6f9f116100e75780638ede6f9f1461051257806395d89b41146105325780639b19251a14610547578063a22cb46514610574578063a492ea891461059457610204565b8063715018a6146104ae5780637d94792a146104c35780637ff9b596146104d95780638da5cb5b146104f457610204565b806323b872dd1161019b57806342842e0e1161016a57806342842e0e1461040e5780634f6ccce71461042e5780636352211e1461044e5780636e392ed51461046e57806370a082311461048e57610204565b806323b872dd146103a45780632f745c59146103c457806336566f06146103e45780633ccfd60b146103f957610204565b8063095ea7b3116101d7578063095ea7b3146103255780630bf133011461034557806315b543f11461036557806318160ddd1461038557610204565b806301ffc9a714610283578063050097e9146102b857806306fdde03146102cb578063081812fc146102ed575b60405162461bcd60e51b815260206004820152604160248201527f796f75206e65656420746f2063616c6c2074686520617373656d626c6520667560448201527f6e6374696f6e20696620796f752077616e7420746f20627579206120726f626f6064820152601d60fa1b608482015260a4015b60405180910390fd5b005b34801561028f57600080fd5b506102a361029e366004612593565b6106e2565b60405190151581526020015b60405180910390f35b6102816102c6366004612645565b6106f3565b3480156102d757600080fd5b506102e06109e2565b6040516102af9190612719565b3480156102f957600080fd5b5061030d610308366004612645565b610a74565b6040516001600160a01b0390911681526020016102af565b34801561033157600080fd5b50610281610340366004612569565b610b09565b34801561035157600080fd5b5061028161036036600461265e565b610c1f565b34801561037157600080fd5b5061028161038036600461265e565b610d49565b34801561039157600080fd5b506008545b6040519081526020016102af565b3480156103b057600080fd5b506102816103bf366004612415565b610e5b565b3480156103d057600080fd5b506103966103df366004612569565b610e8c565b3480156103f057600080fd5b50610281610f22565b34801561040557600080fd5b50610281610f60565b34801561041a57600080fd5b50610281610429366004612415565b611018565b34801561043a57600080fd5b50610396610449366004612645565b611033565b34801561045a57600080fd5b5061030d610469366004612645565b6110c6565b34801561047a57600080fd5b506102816104893660046125cd565b61113d565b34801561049a57600080fd5b506103966104a93660046123c7565b611218565b3480156104ba57600080fd5b5061028161129f565b3480156104cf57600080fd5b5061039660125481565b3480156104e557600080fd5b5061039666f523226980800081565b34801561050057600080fd5b50600b546001600160a01b031661030d565b34801561051e57600080fd5b5061039661052d366004612645565b6112d5565b34801561053e57600080fd5b506102e061135e565b34801561055357600080fd5b506103966105623660046123c7565b600c6020526000908152604090205481565b34801561058057600080fd5b5061028161058f36600461252d565b61136d565b3480156105a057600080fd5b506102816105af366004612569565b611432565b3480156105c057600080fd5b506103966105cf3660046123c7565b600d6020526000908152604090205481565b3480156105ed57600080fd5b506102816105fc366004612451565b611478565b34801561060d57600080fd5b506102e061061c366004612645565b6114b0565b61028161062f366004612645565b61158b565b34801561064057600080fd5b506102a361064f3660046123e2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561068957600080fd5b506102a3611848565b34801561069e57600080fd5b50610396600881565b3480156106b357600080fd5b506102816106c23660046123c7565b611864565b3480156106d357600080fd5b50610396666a94d74f43000081565b60006106ed826118fc565b92915050565b6002600a5414156107465760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610278565b6002600a55610753611848565b6107945760405162461bcd60e51b815260206004820152601260248201527173616c65206973206e6f742061637469766560701b6044820152606401610278565b60148111156107fc5760405162461bcd60e51b815260206004820152602e60248201527f63616e6e6f7420627579206d6f7265207468616e20323020726f626f7473207060448201526d32b9103a3930b739b0b1ba34b7b760911b6064820152608401610278565b60018110156108435760405162461bcd60e51b815260206004820152601360248201527263616e6e6f7420627579203020726f626f747360681b6044820152606401610278565b610854666a94d74f4300008261289f565b34146108725760405162461bcd60e51b815260040161027890612804565b336000908152600c602052604090205481111561090c5760405162461bcd60e51b815260206004820152604c60248201527f596f752063616e6e6f74206275792074686973206d616e7920726f626f74732e60448201527f2041726520796f752077686974656c69737465643f2054727920627579696e6760648201526b206c65737320726f626f747360a01b608482015260a401610278565b6103e88161091960135490565b6109239190612873565b111561096a5760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081c9bd89bdd1cc81b19599d60521b6044820152606401610278565b60005b818160ff1610156109b5576109953361098560135490565b610990906001612873565b611921565b6109a3601380546001019055565b806109ad81612957565b91505061096d565b50336000908152600c6020526040812080548392906109d59084906128be565b90915550506001600a5550565b6060600080546109f190612901565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1d90612901565b8015610a6a5780601f10610a3f57610100808354040283529160200191610a6a565b820191906000526020600020905b815481529060010190602001808311610a4d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610aed5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610278565b506000908152600460205260409020546001600160a01b031690565b6000610b14826110c6565b9050806001600160a01b0316836001600160a01b03161415610b825760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610278565b336001600160a01b0382161480610b9e5750610b9e813361064f565b610c105760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610278565b610c1a8383611a6f565b505050565b600b546001600160a01b03163314610c495760405162461bcd60e51b81526004016102789061277e565b60008211610c945760405162461bcd60e51b8152602060048201526018602482015277796f752063616e6e6f74206d696e74203020726f626f747360401b6044820152606401610278565b6104b082610ca160145490565b610cad906103e8612873565b610cb79190612873565b1115610d055760405162461bcd60e51b815260206004820152601a60248201527f6d696e74696e672065786565647320726f626f742023313230300000000000006044820152606401610278565b60005b82811015610c1a57610d2982610d1d60145490565b610990906103e9612873565b610d37601480546001019055565b80610d418161293c565b915050610d08565b600b546001600160a01b03163314610d735760405162461bcd60e51b81526004016102789061277e565b60008211610dbe5760405162461bcd60e51b8152602060048201526018602482015277796f752063616e6e6f74206d696e74203020726f626f747360401b6044820152606401610278565b6103e882610dcb60135490565b610dd59190612873565b1115610e235760405162461bcd60e51b815260206004820152601a60248201527f6d696e74696e672065786565647320726f626f742023313030300000000000006044820152606401610278565b60005b82811015610c1a57610e3b8261098560135490565b610e49601380546001019055565b80610e538161293c565b915050610e26565b610e653382611add565b610e815760405162461bcd60e51b8152600401610278906127b3565b610c1a838383611bd4565b6000610e9783611218565b8210610ef95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610278565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03163314610f4c5760405162461bcd60e51b81526004016102789061277e565b6011805460ff19811660ff90911615179055565b600b546001600160a01b03163314610f8a5760405162461bcd60e51b81526004016102789061277e565b604051600090339047908381818185875af1925050503d8060008114610fcc576040519150601f19603f3d011682016040523d82523d6000602084013e610fd1565b606091505b50509050806110155760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610278565b50565b610c1a83838360405180602001604052806000815250611478565b600061103e60085490565b82106110a15760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610278565b600882815481106110b4576110b46129cd565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106ed5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610278565b600b546001600160a01b031633146111675760405162461bcd60e51b81526004016102789061277e565b601254156111b75760405162461bcd60e51b815260206004820152601760248201527f726f626f747320616c72656164792072657665616c65640000000000000000006044820152606401610278565b806112045760405162461bcd60e51b815260206004820152601d60248201527f73656564206f662030206973206e6f7420612076616c696420736565640000006044820152606401610278565b611210600e8484612312565b506012555050565b60006001600160a01b0382166112835760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610278565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146112c95760405162461bcd60e51b81526004016102789061277e565b6112d36000611d7f565b565b60006012546000141561132a5760405162461bcd60e51b815260206004820152601d60248201527f666561747572656420617265206e6f742072657665616c6564207965740000006044820152606401610278565b6012546040805160208101929092528101839052606001604051602081830303815290604052805190602001209050919050565b6060600180546109f190612901565b6001600160a01b0382163314156113c65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610278565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b546001600160a01b0316331461145c5760405162461bcd60e51b81526004016102789061277e565b6001600160a01b039091166000908152600c6020526040902055565b6114823383611add565b61149e5760405162461bcd60e51b8152600401610278906127b3565b6114aa84848484611dd1565b50505050565b6000818152600260205260409020546060906001600160a01b031661152f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610278565b6000611539611e04565b905060008151116115595760405180602001604052806000815250611584565b8061156384611e13565b6040516020016115749291906126ad565b6040516020818303038152906040525b9392505050565b6002600a5414156115de5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610278565b6002600a556115eb611848565b61162c5760405162461bcd60e51b815260206004820152601260248201527173616c65206973206e6f742061637469766560701b6044820152606401610278565b600881111561168f5760405162461bcd60e51b815260206004820152602960248201527f63616e6e6f7420627579206d6f7265207468616e206d6178526f626f7473506560448201526872507572636861736560b81b6064820152608401610278565b60018110156116d65760405162461bcd60e51b815260206004820152601360248201527263616e6e6f7420627579203020726f626f747360681b6044820152606401610278565b6116e766f52322698080008261289f565b34146117055760405162461bcd60e51b815260040161027890612804565b6010548161171260155490565b61171e906104b0612873565b6117289190612873565b111561176f5760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081c9bd89bdd1cc81b19599d60521b6044820152606401610278565b600f5461177f9062015180612873565b4210156117e457336000908152600d602052604090205442116117e45760405162461bcd60e51b815260206004820152601f60248201527f636f6f6c646f776e3a20747279206f6e20746865206e65787420626c6f636b006044820152606401610278565b60005b8181101561182d5761180d336117fc60155490565b611808906104b1612873565b611f11565b61181b601580546001019055565b806118258161293c565b9150506117e7565b5050336000908152600d602052604090204390556001600a55565b600042600f541115801561185f575060115460ff16155b905090565b600b546001600160a01b0316331461188e5760405162461bcd60e51b81526004016102789061277e565b6001600160a01b0381166118f35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610278565b61101581611d7f565b60006001600160e01b0319821663780e9d6360e01b14806106ed57506106ed82611f2f565b6001600160a01b0382166119775760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610278565b6000818152600260205260409020546001600160a01b0316156119dc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610278565b6119e860008383611f7f565b6001600160a01b0382166000908152600360205260408120805460019290611a11908490612873565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611aa4826110c6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610278565b6000611b61836110c6565b9050806001600160a01b0316846001600160a01b03161480611b9c5750836001600160a01b0316611b9184610a74565b6001600160a01b0316145b80611bcc57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611be7826110c6565b6001600160a01b031614611c4f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610278565b6001600160a01b038216611cb15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610278565b611cbc838383611f7f565b611cc7600082611a6f565b6001600160a01b0383166000908152600360205260408120805460019290611cf09084906128be565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d1e908490612873565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ddc848484611bd4565b611de884848484611f8a565b6114aa5760405162461bcd60e51b81526004016102789061272c565b6060600e80546109f190612901565b606081611e375750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e615780611e4b8161293c565b9150611e5a9050600a8361288b565b9150611e3b565b60008167ffffffffffffffff811115611e7c57611e7c6129e3565b6040519080825280601f01601f191660200182016040528015611ea6576020820181803683370190505b5090505b8415611bcc57611ebb6001836128be565b9150611ec8600a86612977565b611ed3906030612873565b60f81b818381518110611ee857611ee86129cd565b60200101906001600160f81b031916908160001a905350611f0a600a8661288b565b9450611eaa565b611f2b828260405180602001604052806000815250612097565b5050565b60006001600160e01b031982166380ac58cd60e01b1480611f6057506001600160e01b03198216635b5e139f60e01b145b806106ed57506301ffc9a760e01b6001600160e01b03198316146106ed565b610c1a8383836120ca565b60006001600160a01b0384163b1561208c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fce9033908990889088906004016126dc565b602060405180830381600087803b158015611fe857600080fd5b505af1925050508015612018575060408051601f3d908101601f19168201909252612015918101906125b0565b60015b612072573d808015612046576040519150601f19603f3d011682016040523d82523d6000602084013e61204b565b606091505b50805161206a5760405162461bcd60e51b81526004016102789061272c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bcc565b506001949350505050565b6120a18383611921565b6120ae6000848484611f8a565b610c1a5760405162461bcd60e51b81526004016102789061272c565b6001600160a01b0383166121255761212081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612148565b816001600160a01b0316836001600160a01b031614612148576121488382612182565b6001600160a01b03821661215f57610c1a8161221f565b826001600160a01b0316826001600160a01b031614610c1a57610c1a82826122ce565b6000600161218f84611218565b61219991906128be565b6000838152600760205260409020549091508082146121ec576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612231906001906128be565b60008381526009602052604081205460088054939450909284908110612259576122596129cd565b90600052602060002001549050806008838154811061227a5761227a6129cd565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122b2576122b26129b7565b6001900381819060005260206000200160009055905550505050565b60006122d983611218565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461231e90612901565b90600052602060002090601f0160209004810192826123405760008555612386565b82601f106123595782800160ff19823516178555612386565b82800160010185558215612386579182015b8281111561238657823582559160200191906001019061236b565b50612392929150612396565b5090565b5b808211156123925760008155600101612397565b80356001600160a01b03811681146123c257600080fd5b919050565b6000602082840312156123d957600080fd5b611584826123ab565b600080604083850312156123f557600080fd5b6123fe836123ab565b915061240c602084016123ab565b90509250929050565b60008060006060848603121561242a57600080fd5b612433846123ab565b9250612441602085016123ab565b9150604084013590509250925092565b6000806000806080858703121561246757600080fd5b612470856123ab565b935061247e602086016123ab565b925060408501359150606085013567ffffffffffffffff808211156124a257600080fd5b818701915087601f8301126124b657600080fd5b8135818111156124c8576124c86129e3565b604051601f8201601f19908116603f011681019083821181831017156124f0576124f06129e3565b816040528281528a602084870101111561250957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561254057600080fd5b612549836123ab565b91506020830135801515811461255e57600080fd5b809150509250929050565b6000806040838503121561257c57600080fd5b612585836123ab565b946020939093013593505050565b6000602082840312156125a557600080fd5b8135611584816129f9565b6000602082840312156125c257600080fd5b8151611584816129f9565b6000806000604084860312156125e257600080fd5b833567ffffffffffffffff808211156125fa57600080fd5b818601915086601f83011261260e57600080fd5b81358181111561261d57600080fd5b87602082850101111561262f57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561265757600080fd5b5035919050565b6000806040838503121561267157600080fd5b8235915061240c602084016123ab565b600081518084526126998160208601602086016128d5565b601f01601f19169290920160200192915050565b600083516126bf8184602088016128d5565b8351908301906126d38183602088016128d5565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061270f90830184612681565b9695505050505050565b6020815260006115846020830184612681565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526049908201527f796f75206e65656420746f206d6174636820746865206578616374207072696360408201527f6520666f722074686520616d6f756e74206f6620726f626f747320796f752074606082015268727920746f2062757960b81b608082015260a00190565b600082198211156128865761288661298b565b500190565b60008261289a5761289a6129a1565b500490565b60008160001904831182151516156128b9576128b961298b565b500290565b6000828210156128d0576128d061298b565b500390565b60005b838110156128f05781810151838201526020016128d8565b838111156114aa5750506000910152565b600181811c9082168061291557607f821691505b6020821081141561293657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129505761295061298b565b5060010190565b600060ff821660ff81141561296e5761296e61298b565b60010192915050565b600082612986576129866129a1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461101557600080fdfea2646970667358221220866eccd7bd79bd4fe3558d3d6fb5fa2c39d3571e91c80d9ceb91f94bb87a4da764736f6c6343000807003368747470733a2f2f73616e6a6179726f626f74732e73332e616d617a6f6e6177732e636f6d2f6d65746164617461

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063b222e0c2116100a0578063e985e9c51161006f578063e985e9c514610634578063eb8d24441461067d578063eb95db5f14610692578063f2fde38b146106a7578063fc1a1c36146106c757610204565b8063b222e0c2146105b4578063b88d4fde146105e1578063c87b56dd14610601578063e6a6e7a21461062157610204565b80638ede6f9f116100e75780638ede6f9f1461051257806395d89b41146105325780639b19251a14610547578063a22cb46514610574578063a492ea891461059457610204565b8063715018a6146104ae5780637d94792a146104c35780637ff9b596146104d95780638da5cb5b146104f457610204565b806323b872dd1161019b57806342842e0e1161016a57806342842e0e1461040e5780634f6ccce71461042e5780636352211e1461044e5780636e392ed51461046e57806370a082311461048e57610204565b806323b872dd146103a45780632f745c59146103c457806336566f06146103e45780633ccfd60b146103f957610204565b8063095ea7b3116101d7578063095ea7b3146103255780630bf133011461034557806315b543f11461036557806318160ddd1461038557610204565b806301ffc9a714610283578063050097e9146102b857806306fdde03146102cb578063081812fc146102ed575b60405162461bcd60e51b815260206004820152604160248201527f796f75206e65656420746f2063616c6c2074686520617373656d626c6520667560448201527f6e6374696f6e20696620796f752077616e7420746f20627579206120726f626f6064820152601d60fa1b608482015260a4015b60405180910390fd5b005b34801561028f57600080fd5b506102a361029e366004612593565b6106e2565b60405190151581526020015b60405180910390f35b6102816102c6366004612645565b6106f3565b3480156102d757600080fd5b506102e06109e2565b6040516102af9190612719565b3480156102f957600080fd5b5061030d610308366004612645565b610a74565b6040516001600160a01b0390911681526020016102af565b34801561033157600080fd5b50610281610340366004612569565b610b09565b34801561035157600080fd5b5061028161036036600461265e565b610c1f565b34801561037157600080fd5b5061028161038036600461265e565b610d49565b34801561039157600080fd5b506008545b6040519081526020016102af565b3480156103b057600080fd5b506102816103bf366004612415565b610e5b565b3480156103d057600080fd5b506103966103df366004612569565b610e8c565b3480156103f057600080fd5b50610281610f22565b34801561040557600080fd5b50610281610f60565b34801561041a57600080fd5b50610281610429366004612415565b611018565b34801561043a57600080fd5b50610396610449366004612645565b611033565b34801561045a57600080fd5b5061030d610469366004612645565b6110c6565b34801561047a57600080fd5b506102816104893660046125cd565b61113d565b34801561049a57600080fd5b506103966104a93660046123c7565b611218565b3480156104ba57600080fd5b5061028161129f565b3480156104cf57600080fd5b5061039660125481565b3480156104e557600080fd5b5061039666f523226980800081565b34801561050057600080fd5b50600b546001600160a01b031661030d565b34801561051e57600080fd5b5061039661052d366004612645565b6112d5565b34801561053e57600080fd5b506102e061135e565b34801561055357600080fd5b506103966105623660046123c7565b600c6020526000908152604090205481565b34801561058057600080fd5b5061028161058f36600461252d565b61136d565b3480156105a057600080fd5b506102816105af366004612569565b611432565b3480156105c057600080fd5b506103966105cf3660046123c7565b600d6020526000908152604090205481565b3480156105ed57600080fd5b506102816105fc366004612451565b611478565b34801561060d57600080fd5b506102e061061c366004612645565b6114b0565b61028161062f366004612645565b61158b565b34801561064057600080fd5b506102a361064f3660046123e2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561068957600080fd5b506102a3611848565b34801561069e57600080fd5b50610396600881565b3480156106b357600080fd5b506102816106c23660046123c7565b611864565b3480156106d357600080fd5b50610396666a94d74f43000081565b60006106ed826118fc565b92915050565b6002600a5414156107465760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610278565b6002600a55610753611848565b6107945760405162461bcd60e51b815260206004820152601260248201527173616c65206973206e6f742061637469766560701b6044820152606401610278565b60148111156107fc5760405162461bcd60e51b815260206004820152602e60248201527f63616e6e6f7420627579206d6f7265207468616e20323020726f626f7473207060448201526d32b9103a3930b739b0b1ba34b7b760911b6064820152608401610278565b60018110156108435760405162461bcd60e51b815260206004820152601360248201527263616e6e6f7420627579203020726f626f747360681b6044820152606401610278565b610854666a94d74f4300008261289f565b34146108725760405162461bcd60e51b815260040161027890612804565b336000908152600c602052604090205481111561090c5760405162461bcd60e51b815260206004820152604c60248201527f596f752063616e6e6f74206275792074686973206d616e7920726f626f74732e60448201527f2041726520796f752077686974656c69737465643f2054727920627579696e6760648201526b206c65737320726f626f747360a01b608482015260a401610278565b6103e88161091960135490565b6109239190612873565b111561096a5760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081c9bd89bdd1cc81b19599d60521b6044820152606401610278565b60005b818160ff1610156109b5576109953361098560135490565b610990906001612873565b611921565b6109a3601380546001019055565b806109ad81612957565b91505061096d565b50336000908152600c6020526040812080548392906109d59084906128be565b90915550506001600a5550565b6060600080546109f190612901565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1d90612901565b8015610a6a5780601f10610a3f57610100808354040283529160200191610a6a565b820191906000526020600020905b815481529060010190602001808311610a4d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610aed5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610278565b506000908152600460205260409020546001600160a01b031690565b6000610b14826110c6565b9050806001600160a01b0316836001600160a01b03161415610b825760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610278565b336001600160a01b0382161480610b9e5750610b9e813361064f565b610c105760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610278565b610c1a8383611a6f565b505050565b600b546001600160a01b03163314610c495760405162461bcd60e51b81526004016102789061277e565b60008211610c945760405162461bcd60e51b8152602060048201526018602482015277796f752063616e6e6f74206d696e74203020726f626f747360401b6044820152606401610278565b6104b082610ca160145490565b610cad906103e8612873565b610cb79190612873565b1115610d055760405162461bcd60e51b815260206004820152601a60248201527f6d696e74696e672065786565647320726f626f742023313230300000000000006044820152606401610278565b60005b82811015610c1a57610d2982610d1d60145490565b610990906103e9612873565b610d37601480546001019055565b80610d418161293c565b915050610d08565b600b546001600160a01b03163314610d735760405162461bcd60e51b81526004016102789061277e565b60008211610dbe5760405162461bcd60e51b8152602060048201526018602482015277796f752063616e6e6f74206d696e74203020726f626f747360401b6044820152606401610278565b6103e882610dcb60135490565b610dd59190612873565b1115610e235760405162461bcd60e51b815260206004820152601a60248201527f6d696e74696e672065786565647320726f626f742023313030300000000000006044820152606401610278565b60005b82811015610c1a57610e3b8261098560135490565b610e49601380546001019055565b80610e538161293c565b915050610e26565b610e653382611add565b610e815760405162461bcd60e51b8152600401610278906127b3565b610c1a838383611bd4565b6000610e9783611218565b8210610ef95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610278565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03163314610f4c5760405162461bcd60e51b81526004016102789061277e565b6011805460ff19811660ff90911615179055565b600b546001600160a01b03163314610f8a5760405162461bcd60e51b81526004016102789061277e565b604051600090339047908381818185875af1925050503d8060008114610fcc576040519150601f19603f3d011682016040523d82523d6000602084013e610fd1565b606091505b50509050806110155760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610278565b50565b610c1a83838360405180602001604052806000815250611478565b600061103e60085490565b82106110a15760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610278565b600882815481106110b4576110b46129cd565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106ed5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610278565b600b546001600160a01b031633146111675760405162461bcd60e51b81526004016102789061277e565b601254156111b75760405162461bcd60e51b815260206004820152601760248201527f726f626f747320616c72656164792072657665616c65640000000000000000006044820152606401610278565b806112045760405162461bcd60e51b815260206004820152601d60248201527f73656564206f662030206973206e6f7420612076616c696420736565640000006044820152606401610278565b611210600e8484612312565b506012555050565b60006001600160a01b0382166112835760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610278565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146112c95760405162461bcd60e51b81526004016102789061277e565b6112d36000611d7f565b565b60006012546000141561132a5760405162461bcd60e51b815260206004820152601d60248201527f666561747572656420617265206e6f742072657665616c6564207965740000006044820152606401610278565b6012546040805160208101929092528101839052606001604051602081830303815290604052805190602001209050919050565b6060600180546109f190612901565b6001600160a01b0382163314156113c65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610278565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b546001600160a01b0316331461145c5760405162461bcd60e51b81526004016102789061277e565b6001600160a01b039091166000908152600c6020526040902055565b6114823383611add565b61149e5760405162461bcd60e51b8152600401610278906127b3565b6114aa84848484611dd1565b50505050565b6000818152600260205260409020546060906001600160a01b031661152f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610278565b6000611539611e04565b905060008151116115595760405180602001604052806000815250611584565b8061156384611e13565b6040516020016115749291906126ad565b6040516020818303038152906040525b9392505050565b6002600a5414156115de5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610278565b6002600a556115eb611848565b61162c5760405162461bcd60e51b815260206004820152601260248201527173616c65206973206e6f742061637469766560701b6044820152606401610278565b600881111561168f5760405162461bcd60e51b815260206004820152602960248201527f63616e6e6f7420627579206d6f7265207468616e206d6178526f626f7473506560448201526872507572636861736560b81b6064820152608401610278565b60018110156116d65760405162461bcd60e51b815260206004820152601360248201527263616e6e6f7420627579203020726f626f747360681b6044820152606401610278565b6116e766f52322698080008261289f565b34146117055760405162461bcd60e51b815260040161027890612804565b6010548161171260155490565b61171e906104b0612873565b6117289190612873565b111561176f5760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081c9bd89bdd1cc81b19599d60521b6044820152606401610278565b600f5461177f9062015180612873565b4210156117e457336000908152600d602052604090205442116117e45760405162461bcd60e51b815260206004820152601f60248201527f636f6f6c646f776e3a20747279206f6e20746865206e65787420626c6f636b006044820152606401610278565b60005b8181101561182d5761180d336117fc60155490565b611808906104b1612873565b611f11565b61181b601580546001019055565b806118258161293c565b9150506117e7565b5050336000908152600d602052604090204390556001600a55565b600042600f541115801561185f575060115460ff16155b905090565b600b546001600160a01b0316331461188e5760405162461bcd60e51b81526004016102789061277e565b6001600160a01b0381166118f35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610278565b61101581611d7f565b60006001600160e01b0319821663780e9d6360e01b14806106ed57506106ed82611f2f565b6001600160a01b0382166119775760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610278565b6000818152600260205260409020546001600160a01b0316156119dc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610278565b6119e860008383611f7f565b6001600160a01b0382166000908152600360205260408120805460019290611a11908490612873565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611aa4826110c6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610278565b6000611b61836110c6565b9050806001600160a01b0316846001600160a01b03161480611b9c5750836001600160a01b0316611b9184610a74565b6001600160a01b0316145b80611bcc57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611be7826110c6565b6001600160a01b031614611c4f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610278565b6001600160a01b038216611cb15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610278565b611cbc838383611f7f565b611cc7600082611a6f565b6001600160a01b0383166000908152600360205260408120805460019290611cf09084906128be565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d1e908490612873565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ddc848484611bd4565b611de884848484611f8a565b6114aa5760405162461bcd60e51b81526004016102789061272c565b6060600e80546109f190612901565b606081611e375750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e615780611e4b8161293c565b9150611e5a9050600a8361288b565b9150611e3b565b60008167ffffffffffffffff811115611e7c57611e7c6129e3565b6040519080825280601f01601f191660200182016040528015611ea6576020820181803683370190505b5090505b8415611bcc57611ebb6001836128be565b9150611ec8600a86612977565b611ed3906030612873565b60f81b818381518110611ee857611ee86129cd565b60200101906001600160f81b031916908160001a905350611f0a600a8661288b565b9450611eaa565b611f2b828260405180602001604052806000815250612097565b5050565b60006001600160e01b031982166380ac58cd60e01b1480611f6057506001600160e01b03198216635b5e139f60e01b145b806106ed57506301ffc9a760e01b6001600160e01b03198316146106ed565b610c1a8383836120ca565b60006001600160a01b0384163b1561208c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fce9033908990889088906004016126dc565b602060405180830381600087803b158015611fe857600080fd5b505af1925050508015612018575060408051601f3d908101601f19168201909252612015918101906125b0565b60015b612072573d808015612046576040519150601f19603f3d011682016040523d82523d6000602084013e61204b565b606091505b50805161206a5760405162461bcd60e51b81526004016102789061272c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bcc565b506001949350505050565b6120a18383611921565b6120ae6000848484611f8a565b610c1a5760405162461bcd60e51b81526004016102789061272c565b6001600160a01b0383166121255761212081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612148565b816001600160a01b0316836001600160a01b031614612148576121488382612182565b6001600160a01b03821661215f57610c1a8161221f565b826001600160a01b0316826001600160a01b031614610c1a57610c1a82826122ce565b6000600161218f84611218565b61219991906128be565b6000838152600760205260409020549091508082146121ec576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612231906001906128be565b60008381526009602052604081205460088054939450909284908110612259576122596129cd565b90600052602060002001549050806008838154811061227a5761227a6129cd565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122b2576122b26129b7565b6001900381819060005260206000200160009055905550505050565b60006122d983611218565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461231e90612901565b90600052602060002090601f0160209004810192826123405760008555612386565b82601f106123595782800160ff19823516178555612386565b82800160010185558215612386579182015b8281111561238657823582559160200191906001019061236b565b50612392929150612396565b5090565b5b808211156123925760008155600101612397565b80356001600160a01b03811681146123c257600080fd5b919050565b6000602082840312156123d957600080fd5b611584826123ab565b600080604083850312156123f557600080fd5b6123fe836123ab565b915061240c602084016123ab565b90509250929050565b60008060006060848603121561242a57600080fd5b612433846123ab565b9250612441602085016123ab565b9150604084013590509250925092565b6000806000806080858703121561246757600080fd5b612470856123ab565b935061247e602086016123ab565b925060408501359150606085013567ffffffffffffffff808211156124a257600080fd5b818701915087601f8301126124b657600080fd5b8135818111156124c8576124c86129e3565b604051601f8201601f19908116603f011681019083821181831017156124f0576124f06129e3565b816040528281528a602084870101111561250957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561254057600080fd5b612549836123ab565b91506020830135801515811461255e57600080fd5b809150509250929050565b6000806040838503121561257c57600080fd5b612585836123ab565b946020939093013593505050565b6000602082840312156125a557600080fd5b8135611584816129f9565b6000602082840312156125c257600080fd5b8151611584816129f9565b6000806000604084860312156125e257600080fd5b833567ffffffffffffffff808211156125fa57600080fd5b818601915086601f83011261260e57600080fd5b81358181111561261d57600080fd5b87602082850101111561262f57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561265757600080fd5b5035919050565b6000806040838503121561267157600080fd5b8235915061240c602084016123ab565b600081518084526126998160208601602086016128d5565b601f01601f19169290920160200192915050565b600083516126bf8184602088016128d5565b8351908301906126d38183602088016128d5565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061270f90830184612681565b9695505050505050565b6020815260006115846020830184612681565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526049908201527f796f75206e65656420746f206d6174636820746865206578616374207072696360408201527f6520666f722074686520616d6f756e74206f6620726f626f747320796f752074606082015268727920746f2062757960b81b608082015260a00190565b600082198211156128865761288661298b565b500190565b60008261289a5761289a6129a1565b500490565b60008160001904831182151516156128b9576128b961298b565b500290565b6000828210156128d0576128d061298b565b500390565b60005b838110156128f05781810151838201526020016128d8565b838111156114aa5750506000910152565b600181811c9082168061291557607f821691505b6020821081141561293657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129505761295061298b565b5060010190565b600060ff821660ff81141561296e5761296e61298b565b60010192915050565b600082612986576129866129a1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461101557600080fdfea2646970667358221220866eccd7bd79bd4fe3558d3d6fb5fa2c39d3571e91c80d9ceb91f94bb87a4da764736f6c63430008070033

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.