Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0.0972001 ETH
Eth Value
$219.11 (@ $2,254.25/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 14 from a total of 14 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 15733109 | 1250 days ago | IN | 0 ETH | 0.00085028 | ||||
| Claim | 15732971 | 1250 days ago | IN | 0.0000001 ETH | 0.00330982 | ||||
| Claim | 15087908 | 1349 days ago | IN | 0.001 ETH | 0.00239162 | ||||
| Claim | 15087871 | 1349 days ago | IN | 0.001 ETH | 0.00246951 | ||||
| Claim | 14321422 | 1472 days ago | IN | 0.0001 ETH | 0.00558307 | ||||
| Claim | 14320894 | 1472 days ago | IN | 0.01 ETH | 0.00570047 | ||||
| Claim | 14320891 | 1472 days ago | IN | 0.01 ETH | 0.00460491 | ||||
| Claim | 14320872 | 1472 days ago | IN | 0.01 ETH | 0.00435504 | ||||
| Claim | 13853381 | 1545 days ago | IN | 0.025 ETH | 0.00898654 | ||||
| Claim | 13841684 | 1546 days ago | IN | 0.015 ETH | 0.00619053 | ||||
| Claim | 13840984 | 1547 days ago | IN | 0.0001 ETH | 0.00613424 | ||||
| Price Mod | 13840552 | 1547 days ago | IN | 0 ETH | 0.00131054 | ||||
| Claim | 13831317 | 1548 days ago | IN | 0.025 ETH | 0.00920617 | ||||
| Claim Own | 13828273 | 1549 days ago | IN | 0 ETH | 0.00671325 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
OnChainXmasTree
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
Yes with 200 runs
Other Settings:
constantinople EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "base64-sol/base64.sol";
import "./TreeGenerator.sol";
contract OnChainXmasTree is ERC721Enumerable, ReentrancyGuard, Ownable {
uint256 public maxSupply=4646;
uint256 public price=0.025 ether;
uint256 public tokenCounter=0;
bool public sale = true;
function tokenURI(uint256 tokenId) public view override returns (string memory) {
require(tokenId < tokenCounter);
TreeGenerator.xmasTree memory xt;
string memory svg;
(xt, svg) = TreeGenerator.getTreeForSeed(tokenId);
string[9] memory treeColAttr = ['Leafy Green','Snow White','Golden Sizzle','Alien Blue','Merry Red','Pink Berry','Icy Blue','Gorgeous Grey','Autumn Love'];
string[8] memory treeAttr = ['Zip Zap','Nacho','Flow-ey','Pixelated','Paper Cut','Pyramid','Thorn-y','Cone-y'];
string[5] memory giftAttr = ['No','1 Gift','2 Gifts','3 Gifts','4 Gifts'];
string[2] memory capAttr = ['No','Yes'];
string[8] memory colsAttr = ['Silver','Red','Orange','Green','Blue','Yellow','Purple','No'];
string[11] memory bgAttr = ['Sliver Clouds','Peachy Noon','Pink Dawn','Northern Lights','Morning Green','Lavender Dusk','Misty Blue','Stormy Grey','Arabian Night','Violet Night','Night Sky'];
string memory json = string(abi.encodePacked(
'{"name" : "OCXT#',Strings.toString(tokenId),'",',
'"description": "100% on-chain generative Christmas Trees for you to own or share and keep your traditions alive on the blockchain.",',
'"attributes":[',
'{"trait_type":"Background","value":"',bgAttr[xt.bgCol],'"},',
'{"trait_type":"Tree Type","value":"',treeAttr[xt.treeType],'"},'));
json = string(abi.encodePacked(json,
'{"trait_type":"Tree Color","value":"',treeColAttr[xt.treeCol],'"},',
'{"trait_type":"Snow Cap","value":"',capAttr[xt.snowCap],'"},'));
if (xt.star==0) {json = string(abi.encodePacked(json,'{"trait_type":"Star","value":"No"},','{"trait_type":"Santa Hat","value":"No"},'));}
if (xt.star==1) {json = string(abi.encodePacked(json,'{"trait_type":"Star","value":"',colsAttr[xt.starCol],'"},','{"trait_type":"Santa Hat","value":"No"},'));}
if (xt.star==2) {json = string(abi.encodePacked(json,'{"trait_type":"Star","value":"No"},','{"trait_type":"Santa Hat","value":"',colsAttr[xt.starCol],'"},'));}
string memory bulbAni = '';
if(xt.bulbAni) {bulbAni = ' Animated';}
json = string(abi.encodePacked(json,
'{"trait_type":"Clouds","value":"',capAttr[xt.cloud],'"},',
'{"trait_type":"Ribbon","value":"',colsAttr[xt.ribbonCol],'"},',
'{"trait_type":"Bulbs","value":"',colsAttr[xt.bulbCol],bulbAni,'"},',
'{"trait_type":"Gifts","value":"',giftAttr[xt.gifts],'"}',
'],'
'"image": "data:image/svg+xml;base64,',
Base64.encode(bytes(svg)),
'"}'
));
return string(abi.encodePacked("data:application/json;base64,", Base64.encode(bytes(json))));
}
function claim(address a, uint256 x) public payable nonReentrant {
require(tokenCounter < maxSupply, "All tokens minted");
require(sale, "Sales are paused");
require(x < 11, "Max Limit");
require(balanceOf(a)+x < 26, "Wallet limit reached");
require(price*x <= msg.value, "Incorrect ETH amount");
for(uint256 i=0; i<x; i++) {
_safeMint(a, tokenCounter);
tokenCounter++;
sanity();
}
}
function supply(uint256 a) public onlyOwner {
maxSupply = a;
}
function priceMod(uint256 a) public onlyOwner {
price = a;
}
function claimOwn(address a, uint256 b) public onlyOwner {
for(uint256 i=0; i<b; i++) {
_safeMint(a, tokenCounter);
tokenCounter++;
sanity();
}
}
function saleToggle() public onlyOwner {
sale = !sale;
}
function withdrawAll() public onlyOwner {
require(payable(_msgSender()).send(address(this).balance));
}
function sanity() internal {
uint16[27] memory id = [41,81,157,386,766,855,991,1071,1125,1134,1497,1678,1801,1973,1981,2072,2471,2510,2564,2922,2965,2996,3347,3437,3696,3960,4990];
for(uint16 i=0; i<id.length;i++) {
if(tokenCounter==id[i]) {
tokenCounter++;
}
}
}
constructor() ERC721('Christmas Trees by Traditions On Chain','OCXT') Ownable() {
}
}//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/utils/Strings.sol";
library TreeGenerator {
struct xmasTree {
uint256 bg;
uint256 bgCol;
uint256 cloud;
uint256 treeType;
uint256 treeCol;
uint256 snowCap;
uint256 star;
uint256 starCol;
uint256 ribbon;
uint256 ribbonCol;
uint256 bulb;
uint256 bulbCol;
uint256 gifts;
bool bulbAni;
}
function getTreeForSeed(uint256 tokenId) external pure returns (xmasTree memory, string memory) {
string[2] memory bg = ['<path d="M0 0 H500 V500 H0"/>','<filter x="0" y="0" width="100%" height="100%" id="a"><feTurbulence baseFrequency=".1 0.1" numOctaves="3"/><feColorMatrix values="0 0 0 9 -6 0 0 0 9 -6 0 0 0 9 -6 0 0 0 0 0.7"/></filter><path d="M0 0h500v500H0" fill="#BEE1E6"/><path d="M0 0h500v500H0" filter="url(#a)"/>'];
string[11] memory bgCols = ['#BFBFBF','#D4A783','#F1A6AB','#ADC8C0','#93C9D1', '#B5C9FF','#87B5DF','#939DB2','#0C8696','#ABA0C2',''];
string[2] memory cloud = ['','<g><animateTransform attributeName="transform" type="translate" from="-150 30" to="650 30" begin="0s" dur="20s" repeatCount="indefinite"/><path d="M112.34 41.05a13.7 13.7 0 0 0-16.3-16.95v-1.22a22.87 22.87 0 0 0-45.2-5A14.21 14.21 0 0 0 30.5 27a12.75 12.75 0 0 0-12.4-.75 12.84 12.84 0 0 0-7 14.35 7.72 7.72 0 0 0-3.62 5 7.6 7.6 0 1 0 5.78 12.75c2.94 3.05 9 5.15 16 5.15 4.67.13 9.3-.96 13.43-3.15a68.1 68.1 0 0 0 19.7 2.7c7 .1 14-.91 20.69-3a16.35 16.35 0 0 0 20.89-1.6 10.25 10.25 0 1 0 8.32-17.39h.06Z" fill="#fff"/></g><g><animateTransform attributeName="transform" type="translate" from="550 200" to="-150 200" begin="0s" dur="30s" repeatCount="indefinite"/><path d="M46.54 33.55s16.95 15 27.37.73c8.9-12.22-6.3-22-11.63-19.13 2.18-4.6-3.39-9.93-7.26-6.3C53.81.62 39.52-4.47 34.19 6.19 32.5.62 21.84-.6 21.84 8.37a4.44 4.44 0 0 0-6.3 5.57c-7.7-3.85-16.64 1-14.28 10.65 2.17 9 15.25 7.27 17.43 5.57-1 6.3 3.88 8.94 8.72 9.2a10.15 10.15 0 0 0 10.17-6.53c.97 6.05 7.51 4.84 8.96.72Z" fill="#fff"/></g>'];
string memory setup = '<path d="M0 320c232-54 193 127 500-6v186H0" fill="#fff"/><ellipse cx="255" cy="400" fill="#efefef" rx="96.5" ry="14.5"/><path d="m245 400 12-150 13 150" fill="#8b4513"/>'; //snow, shadow and bark
string[3] memory star = ['','<path d="m255 79-12 34 30-24h-36l30 24z"/>','<path d="m255 94-18 38H273L255 94z"/><path d="M273 126H236v6h37v-6z" fill="#fff"/><circle cx="255" cy="94" fill="#fff" r="6"/>'];
string[2] memory snowCap = ['','<path d="M220 160c40 40 45-10 70 0l-35-60" fill="#fff"/>'];
string[8] memory cols = ['#F3F3F3','#9B2424','#FF7A00','#427700','#1F95FC','#FFFF00','#792976','none'];
string[2] memory ribbon = ['','<path d="m336 318.5-4.5-10c-66.055 19.767-103.507 28.463-171 40L154 362c72.583-10.511 112.561-19.48 182-43.5ZM310.5 239l-5-10.5c-47.195 21.782-74.009 32.304-123 45.5l-7.5 16c53.873-12.08 83.544-23.227 135.5-51ZM288.5 174l-3-6.5c-35.166 16.398-51.197 22.513-74.5 29l-4.5 10.5c33.152-8.483 51.168-15.466 82-33Z"/>'];
xmasTree memory xt;
uint256 rand = random(string(abi.encodePacked('Background', tokenId)))%100;
if(rand < 90) {xt.bg = 0;} else {xt.bg = 1;}
xt.bgCol = getAttr(tokenId, 'Background Color', bgCols.length-1);
if(xt.bg == 1) {xt.bgCol=bgCols.length-1;}
rand = random(string(abi.encodePacked('Cloud', tokenId)))%100;
if(rand<10) {xt.cloud=1;} else {xt.cloud=0;}
xt.treeType = getAttr(tokenId, 'Tree', 8);
rand = random(string(abi.encodePacked('Tree Color', tokenId)))%100;
if(rand < 20) {xt.treeCol = 0;}
else if(rand < 30) {xt.treeCol = 1;}
else if(rand < 40) {xt.treeCol = 2;}
else if(rand < 50) {xt.treeCol = 3;}
else if(rand < 60) {xt.treeCol = 4;}
else if(rand < 70) {xt.treeCol = 5;}
else if(rand < 80) {xt.treeCol = 6;}
else if(rand < 90) {xt.treeCol = 7;}
else {xt.treeCol = 8;}
xt.snowCap = getAttr(tokenId, 'Snow Cap', snowCap.length);
xt.star = getAttr(tokenId, 'Star or Cap', star.length);
xt.starCol = getAttr(tokenId, 'Star or Cap Color', cols.length-1);
if(xt.star == 0) {xt.starCol=cols.length-1;}
xt.ribbon = getAttr(tokenId, 'Ribbon', ribbon.length);
xt.ribbonCol = getAttr(tokenId, 'Ribbon Color', cols.length-1);
if(xt.ribbon == 0) {xt.ribbonCol=cols.length-1;}
xt.bulb = getAttr(tokenId, 'Bulbs', 2);
xt.bulbCol = getAttr(tokenId, 'Bulbs Color', cols.length-1);
if(xt.bulbCol==xt.ribbonCol) {xt.bulbCol=0; if(xt.ribbonCol==0) {xt.ribbonCol=1;}}
if(xt.bulb == 0) {xt.bulbCol=cols.length-1;}
if((xt.bulbCol!=0)&&(xt.bulb!=0)) {
rand = random(string(abi.encodePacked('Bulb Animate', tokenId)))%100;
if(rand<20) {xt.bulbAni=true;}
}
rand = random(string(abi.encodePacked('Gifts', tokenId)))%100;
if(rand < 50) {xt.gifts = 0;}
else if(rand < 75) {xt.gifts = 1;}
else if(rand < 90) {xt.gifts = 2;}
else if(rand < 95) {xt.gifts = 3;}
else {xt.gifts = 4;}
string[8] memory parts;
parts[0] = string(abi.encodePacked('<g fill="',bgCols[xt.bgCol],'">',bg[xt.bg],'</g>')); // background
parts[1] = cloud[xt.cloud]; // cloud
parts[2] = pluckTree(xt.treeType, xt.treeCol); // tree leaves and branches stucture
parts[3] = snowCap[xt.snowCap]; //snow cap
parts[4] = string(abi.encodePacked('<g fill="',cols[xt.starCol],'">',star[xt.star],'</g>')); // star
parts[5] = string(abi.encodePacked('<g fill="',cols[xt.ribbonCol],'">',ribbon[xt.ribbon],'</g>')); //ribbon
parts[6] = pluckBulb(xt.bulb, cols[xt.bulbCol], xt.bulbAni); //string lights with color
parts[7] = pluckGift(xt.gifts);
string memory output = string(abi.encodePacked('<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500">', parts[0], parts[1], setup, parts[2], parts[3], parts[4]));
output = string(abi.encodePacked(output, parts[5], parts[6], parts[7], '</svg>'));
return (xt,output);
}
function pluckBulb(uint256 rand, string memory color, bool ani) public pure returns (string memory) {
string memory wire = '<path d="M289 177c-29 20-47 27-83 33M330 305c-65 19-101 27-166 35M204 231c34 31 63 41 125 47" fill="none" stroke="#000"/>';
string[2] memory bulbs = ['<ellipse cx="-102.4" cy="-329.3" rx="2.6" ry="4.2" transform="matrix(.7914 -.6113 .65573 .755 291 179)" id="b1"/>','<ellipse cx="-297.8" cy="-75" rx="2.6" ry="4.2" transform="matrix(.81792 .57533 -.52743 .8496 204 228)" id="b2"/>'];
uint16[24] memory b1x = [297,284,280,265,263,248,241,229,222,209,337,321,314,297,288,270,261,243,235,218,207,190,182,169];
uint16[24] memory b1y = [187,187,199,197,208,204,215,210,219,214,314,312,323,319,330,325,336,331,342,336,346,340,350,345];
uint16[13] memory b2x = [204,208,221,226,240,246,260,266,282,289,304,315,329];
uint16[13] memory b2y = [235,247,246,261,259,272,268,279,274,284,278,288,282];
if(rand==1) {
string memory output;
if(ani) {
output = string(abi.encodePacked(wire, '<g><animate attributeName="fill" values="',color,';white;',color,'" dur="0.5s" repeatCount="indefinite" />',bulbs[0], bulbs[1]));
} else {
output = string(abi.encodePacked(wire, '<g fill="', color,'">',bulbs[0], bulbs[1]));
}
for (uint256 i=0;i<b1x.length;i++) {
output = string(abi.encodePacked(output,'<use href="#b1" x="',Strings.toString(b1x[i]),'" y="',Strings.toString(b1y[i]),'"/>'));
}
for (uint256 i=0;i<b2x.length;i++) {
output = string(abi.encodePacked(output,'<use href="#b2" x="',Strings.toString(b2x[i]),'" y="',Strings.toString(b2y[i]),'"/>'));
}
return string(abi.encodePacked(output,'</g>'));
}
return '';
}
function pluckGift(uint256 a) public pure returns (string memory) {
string[5] memory gifts = ['','<path d="M260 420h73v-30h-73" fill="#853DBD"/><path d="M255 390h83v10h-83" fill="#A95BE7"/><path d="M292 420h10v-30h-10" fill="#F6A102"/><path d="M298 390c-34-5-12-32 0 0m0 0c4-28 40-10 0 0" stroke="#F6A102" stroke-width="3" fill="none"/>','<path d="M194 420h68v-61h-68" fill="#1F95FC"/><path d="M189 349h78v10h-78" fill="#4FBAFF"/><path d="M223 420h10v-71h-10" fill="#F6A102"/>','<path d="M132 432h68v-61h-68" fill="#AD4255"/><path d="M132 397v10h68v-10" fill="#F6A102"/>','<path d="M312 424h50v-45h-50" fill="#3A9981"/><path d="M307 369h60v10h-60" fill="#2E7B68"/><path d="M332 424h10v-55h-10" fill="#F6A102"/>'];
if(a==0) { return '';}
if(a==1) { return gifts[1];}
if(a==2) { return string(abi.encodePacked(gifts[2], gifts[1])); }
if(a==3) { return string(abi.encodePacked(gifts[2], gifts[3], gifts[1]));}
return string(abi.encodePacked(gifts[1], gifts[3], gifts[2], gifts[4]));
}
function pluckTree(uint256 a, uint256 b) public pure returns (string memory) {
string[8] memory trees = ['<path d="m149 371 31-64 141 22"/><path d="m282 202 77 167-181-53 103-114h1z"/><path d="m167 332 60-132 96 84-156 48z"/><path d="M274.617 176.521 335.32 296.25l-140.84-44.555 80.176-74.175-.039-.999z"/><path d="m230 172-56 120 127-75-70-45h-1z"/><path d="M312.5 243.5 270 145l-45 56 87.5 42.5z"/><path d="m254.5 103-55 117 82.5-55-27.5-62z"/><path d="m291 181-36-80-34.5 59h25"/>','<path d="m150 370 105-230 105 230"/><path d="m170 300 85-180 85 180"/><path d="m200 220 55-120 55 120"/><path d="m220 160 35-60 35 60"/>','<path d="M150 370c5-11 105-228 105-228s101 220 103 228-26-14-26-14.5c0 0-2 14-16 14s-15-14-15-14-6 14-21 14c-14 0-22-14-22-14s-6 16-20 14-19-14-19-14-8 14-21 14c-12 0-16-14-16-14s-35 26-30 14z"/><path d="M169 303c4-14 86-180 86-180s86 173 86 180-25-22-25-22 0 22-14 22-18-22-18-22-7 22-21 22-21-22-21-22-7 22-20 22-25-22-25-22-30 36-26 22z"/><path d="M200 222c2-12 55-120 55-120s51 112 55 123-22-22-22-22 5 17-8 18-22-19-22-19-4 21-17 21c-12 0-15-21-15-21s-27 33-25 21z"/><path d="M221 160c4-10 34-59 34-59s30 51 34 59-21-11-21-11-5 10-13 11c-7 1-11-11-11-11s-27 21-22 11h-1z"/>','<path d="M150 371c4-5 104-230 104-230s100 223 104 230c4 6-28 0-28 0s6 4 5 6c0 2-50 0-50 0s7 3 4 6-62 1-67 0 5-6 5-6-49.5 1-53 0c-3-1 4-6 4.5-6 0 0-33 5-29 0z"/><path d="M170 301c4-7 85-180 85-180s80 173 84 180-24 0-24 0 11 7 6 7h-28s11 7 5 7h-20s6 4 5 8-54 4-56 0c-1-4 5-8 5-8h-20c-6 0 5-7 5-7h-28c-5 0 5-7 5-7s-29 7-24 0z"/><path d="M200 221c2-5 55-120 55-120s52 116 55 120c2 4-15 0-15 0s7 5 4 5h-16s7 5 3 5h-17s5 2 3 5-31 2-34 0c-2-2 3-5 3-5h-17c-3 0 3-5 3-5h-14c-4 0 2-5 2-5s-18 5-15 0z"/><path d="M220 161c2-2 35-60 35-60s33 57 35 60c2 2-16 0-16 0s5 4 2 4h-13s3 2 0 3-17 1-20 0c-2-1 0-3 0-3h-12c-1 0 2-4 2-4s-16 2-13 0z"/>','<path d="m150 371 105-230 105 230-24 3-18-39 9 40-24 2-15-40 5 40-23 1-12-44v44h-23l-2-44-6 44-20-1 2-42-12 42-20-2 10-44-18 43-17-3z"/><path d="m170 301 85-180 85 180-21 3-17-38 10 40-22 3-11-38 2 40h-20l-4-39-4 39h-21l-3-41-4 40-24-3 9-38-18 37-20-3z"/><path d="m200 220 54-119 54 119-17 2-12-21 2 21-15 1-7-20-1 21h-17l-2-21-5 21-12-1 3-21-10 20-14-2z"/><path d="m220 161 35-60 34 60-14 3-7-13 3 14-13 1-2-14-3 14-12-1 1-15-6 14-14-4z"/>','<path d="m150 371 105-230 105 230-104-22-105 22z"/><path d="m170 301 85-180 84 179-84-20-85 21z"/><path d="m200 221 55-119 55 119-55-13-55 13z"/><path d="m220 161 35-60 35 60-34-9-35 9z"/>','<path d="m150 371 105-230 105 230-31-21-20 21-17-21-18 21-18-21-19 21-17-21-21 21.5-18-21.5-28 21z"/><path d="m170 301 85-180 85 180-29-19-19 19-19-19-20 19-22-19-17 19-18-19-24 19z"/><path d="m200 221 55-120 55 120-24-17-14 17-17-17-17 17-14-17-23 17z"/><path d="m220 161 35-60 35 60-21-11-13 11-15-11.5-19 11z"/>','<path d="M155.37 357.957C176.967 315.765 255.099 147 255.099 147s79.783 173.091 99.728 210.957c19.945 37.866-221.05 42.191-199.455 0z"/><path d="M175.5 289.569C193.674 253.855 255 107 255 107s60.714 150.517 77.5 182.569c16.785 32.053-175.175 35.714-157 0z"/><path d="M200.746 216.417C212.506 194.534 255.053 107 255.053 107s43.446 89.777 54.307 109.417c10.862 19.64-120.374 21.884-108.614 0z"/><path d="M220 161c7.58-12 35-60 35-60s28 49.23 35 60c7 10.77-77.579 12-70 0z"/>'];
string[18] memory treeCols = ['#4D7C14','#8CB247','#FFFFFF','#CAE3FF','#F0AD15','#FFDA89','#213052','#6376A0','#831111','#E86161','#831177','#E861DA','#107099','#09BBF3','#5F5F5F','#9C9C9C','#E86F00','#FFA95A'];
return string(abi.encodePacked('<defs><linearGradient id="tc" x2="0" y2="1"><stop offset="0" stop-color="',treeCols[b*2],'"/><stop offset="1" stop-color="',treeCols[(b*2)+1],'" /></linearGradient></defs>', '<g style="fill:url(#tc)">', trees[a], '</g>'));
}
function getAttr(uint256 tokenId, string memory key, uint256 length) internal pure returns (uint256) {
uint256 rand = random(string(abi.encodePacked(key, tokenId)))%100;
return rand%length;
}
function random(string memory input) internal pure returns (uint256) {
return uint256(keccak256(abi.encodePacked(input)));
}
}// SPDX-License-Identifier: MIT pragma solidity >=0.6.0; /// @title Base64 /// @author Brecht Devos - <[email protected]> /// @notice Provides functions for encoding/decoding base64 library Base64 { string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; bytes internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000" hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000" hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000" hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000"; function encode(bytes memory data) internal pure returns (string memory) { if (data.length == 0) return ''; // load the table into memory string memory table = TABLE_ENCODE; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((data.length + 2) / 3); // add some extra buffer at the end required for the writing string memory result = new string(encodedLen + 32); assembly { // set the actual output length mstore(result, encodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 3 bytes at a time for {} lt(dataPtr, endPtr) {} { // read 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // write 4 characters mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and( input, 0x3F)))) resultPtr := add(resultPtr, 1) } // padding with '=' switch mod(mload(data), 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } } return result; } function decode(string memory _data) internal pure returns (bytes memory) { bytes memory data = bytes(_data); if (data.length == 0) return new bytes(0); require(data.length % 4 == 0, "invalid base64 decoder input"); // load the table into memory bytes memory table = TABLE_DECODE; // every 4 characters represent 3 bytes uint256 decodedLen = (data.length / 4) * 3; // add some extra buffer at the end required for the writing bytes memory result = new bytes(decodedLen + 32); assembly { // padding with '=' let lastBytes := mload(add(data, mload(data))) if eq(and(lastBytes, 0xFF), 0x3d) { decodedLen := sub(decodedLen, 1) if eq(and(lastBytes, 0xFFFF), 0x3d3d) { decodedLen := sub(decodedLen, 1) } } // set the actual output length mstore(result, decodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 4 characters at a time for {} lt(dataPtr, endPtr) {} { // read 4 characters dataPtr := add(dataPtr, 4) let input := mload(dataPtr) // write 3 bytes let output := add( add( shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)), shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))), add( shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)), and(mload(add(tablePtr, and( input , 0xFF))), 0xFF) ) ) mstore(resultPtr, shl(232, output)) resultPtr := add(resultPtr, 3) } } return result; } }
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)
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);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)
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);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)
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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)
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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)
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();
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)
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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)
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;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)
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 {
_setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @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 {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (security/ReentrancyGuard.sol)
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 making 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;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)
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() {
_transferOwnership(_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 {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}{
"remappings": [],
"optimizer": {
"enabled": true,
"runs": 200
},
"evmVersion": "constantinople",
"libraries": {
"/src/contracts/TreeGenerator.sol": {
"TreeGenerator": "0x2311B3CcBdd6e50CA998b6E40B48d5CBbbDe6d94"
}
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"},{"internalType":"uint256","name":"x","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"},{"internalType":"uint256","name":"b","type":"uint256"}],"name":"claimOwn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxSupply","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"a","type":"uint256"}],"name":"priceMod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleToggle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"a","type":"uint256"}],"name":"supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052611226600c556658d15e17628000600d556000600e55600f805460ff191660011790553480156200003457600080fd5b50604051806060016040528060268152602001620035bf602691396040518060400160405280600481526020017f4f4358540000000000000000000000000000000000000000000000000000000081525081600090805190602001906200009d9291906200011e565b508051620000b39060019060208401906200011e565b50506001600a5550620000c633620000cc565b6200021a565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012c90620001c4565b90600052602060002090601f0160209004810192826200015057600085556200019b565b82601f106200016b57805160ff19168380011785556200019b565b828001600101855582156200019b579182015b828111156200019b5782518255916020019190600101906200017e565b50620001a9929150620001ad565b5090565b5b80821115620001a95760008155600101620001ae565b600181811c90821680620001d957607f821691505b6020821081141562000214577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b613395806200022a6000396000f3fe6080604052600436106101c25760003560e01c80636ad1fe02116100f7578063a22cb46511610095578063d082e38111610064578063d082e381146104cc578063d5abeb01146104e2578063e985e9c5146104f8578063f2fde38b1461054157600080fd5b8063a22cb46514610459578063aad3ec9614610479578063b88d4fde1461048c578063c87b56dd146104ac57600080fd5b8063853828b6116100d1578063853828b6146103fb5780638da5cb5b1461041057806395d89b411461042e578063a035b1fe1461044357600080fd5b80636ad1fe02146103ac57806370a08231146103c6578063715018a6146103e657600080fd5b80632f745c591161016457806342842e0e1161013e57806342842e0e146103375780634639edeb146103575780634f6ccce71461036c5780636352211e1461038c57600080fd5b80632f745c59146102d757806335403023146102f75780633de90c891461031757600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806309f81e0b1461027857806318160ddd1461029857806323b872dd146102b757600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046126a2565b610561565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161058c565b6040516101f3919061271e565b34801561022a57600080fd5b5061023e610239366004612731565b61061e565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004612766565b6106b8565b005b34801561028457600080fd5b50610276610293366004612731565b6107ce565b3480156102a457600080fd5b506008545b6040519081526020016101f3565b3480156102c357600080fd5b506102766102d2366004612790565b6107fd565b3480156102e357600080fd5b506102a96102f2366004612766565b61082e565b34801561030357600080fd5b50610276610312366004612731565b6108c4565b34801561032357600080fd5b50610276610332366004612766565b6108f3565b34801561034357600080fd5b50610276610352366004612790565b610963565b34801561036357600080fd5b5061027661097e565b34801561037857600080fd5b506102a9610387366004612731565b6109bc565b34801561039857600080fd5b5061023e6103a7366004612731565b610a4f565b3480156103b857600080fd5b50600f546101e79060ff1681565b3480156103d257600080fd5b506102a96103e13660046127cc565b610ac6565b3480156103f257600080fd5b50610276610b4d565b34801561040757600080fd5b50610276610b83565b34801561041c57600080fd5b50600b546001600160a01b031661023e565b34801561043a57600080fd5b50610211610bd2565b34801561044f57600080fd5b506102a9600d5481565b34801561046557600080fd5b506102766104743660046127f5565b610be1565b610276610487366004612766565b610bf0565b34801561049857600080fd5b506102766104a73660046128c5565b610e0e565b3480156104b857600080fd5b506102116104c7366004612731565b610e46565b3480156104d857600080fd5b506102a9600e5481565b3480156104ee57600080fd5b506102a9600c5481565b34801561050457600080fd5b506101e7610513366004612970565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561054d57600080fd5b5061027661055c3660046127cc565b6118a6565b60006001600160e01b0319821663780e9d6360e01b1480610586575061058682611941565b92915050565b60606000805461059b906129a3565b80601f01602080910402602001604051908101604052809291908181526020018280546105c7906129a3565b80156106145780601f106105e957610100808354040283529160200191610614565b820191906000526020600020905b8154815290600101906020018083116105f757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661069c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106c382610a4f565b9050806001600160a01b0316836001600160a01b031614156107315760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610693565b336001600160a01b038216148061074d575061074d8133610513565b6107bf5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610693565b6107c98383611991565b505050565b600b546001600160a01b031633146107f85760405162461bcd60e51b8152600401610693906129de565b600d55565b61080733826119ff565b6108235760405162461bcd60e51b815260040161069390612a13565b6107c9838383611af6565b600061083983610ac6565b821061089b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610693565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b031633146108ee5760405162461bcd60e51b8152600401610693906129de565b600c55565b600b546001600160a01b0316331461091d5760405162461bcd60e51b8152600401610693906129de565b60005b818110156107c95761093483600e54611ca1565b600e805490600061094483612a7a565b9190505550610951611cbb565b8061095b81612a7a565b915050610920565b6107c983838360405180602001604052806000815250610e0e565b600b546001600160a01b031633146109a85760405162461bcd60e51b8152600401610693906129de565b600f805460ff19811660ff90911615179055565b60006109c760085490565b8210610a2a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610693565b60088281548110610a3d57610a3d612a95565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105865760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610693565b60006001600160a01b038216610b315760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610693565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610b775760405162461bcd60e51b8152600401610693906129de565b610b816000611e0d565b565b600b546001600160a01b03163314610bad5760405162461bcd60e51b8152600401610693906129de565b6040513390303180156108fc02916000818181858888f19350505050610b8157600080fd5b60606001805461059b906129a3565b610bec338383611e5f565b5050565b6002600a541415610c435760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610693565b6002600a55600c54600e5410610c8f5760405162461bcd60e51b8152602060048201526011602482015270105b1b081d1bdad95b9cc81b5a5b9d1959607a1b6044820152606401610693565b600f5460ff16610cd45760405162461bcd60e51b815260206004820152601060248201526f14d85b195cc8185c99481c185d5cd95960821b6044820152606401610693565b600b8110610d105760405162461bcd60e51b815260206004820152600960248201526813585e08131a5b5a5d60ba1b6044820152606401610693565b601a81610d1c84610ac6565b610d269190612aab565b10610d6a5760405162461bcd60e51b815260206004820152601460248201527315d85b1b195d081b1a5b5a5d081c995858da195960621b6044820152606401610693565b3481600d54610d799190612ac3565b1115610dbe5760405162461bcd60e51b8152602060048201526014602482015273125b98dbdc9c9958dd0811551208185b5bdd5b9d60621b6044820152606401610693565b60005b81811015610e0457610dd583600e54611ca1565b600e8054906000610de583612a7a565b9190505550610df2611cbb565b80610dfc81612a7a565b915050610dc1565b50506001600a5550565b610e1833836119ff565b610e345760405162461bcd60e51b815260040161069390612a13565b610e4084848484611f2e565b50505050565b6060600e548210610e5657600080fd5b610eca604051806101c00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000151581525090565b604051633743c63160e21b815260048101849052606090732311b3ccbdd6e50ca998b6e40b48d5cbbbde6d949063dd0f18c490602401600060405180830381865af4158015610f1d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610f459190810190612b32565b809250819350505060006040518061012001604052806040518060400160405280600b81526020016a2632b0b33c9023b932b2b760a91b81525081526020016040518060400160405280600a815260200169536e6f7720576869746560b01b81525081526020016040518060400160405280600d81526020016c476f6c64656e2053697a7a6c6560981b81525081526020016040518060400160405280600a815260200169416c69656e20426c756560b01b81525081526020016040518060400160405280600981526020016813595c9c9e4814995960ba1b81525081526020016040518060400160405280600a81526020016950696e6b20426572727960b01b81525081526020016040518060400160405280600881526020016749637920426c756560c01b81525081526020016040518060400160405280600d81526020016c476f7267656f7573204772657960981b81525081526020016040518060400160405280600b81526020016a417574756d6e204c6f766560a81b815250815250905060006040518061010001604052806040518060400160405280600781526020016605a6970205a61760cc1b8152508152602001604051806040016040528060058152602001644e6163686f60d81b815250815260200160405180604001604052806007815260200166466c6f772d657960c81b815250815260200160405180604001604052806009815260200168141a5e195b185d195960ba1b81525081526020016040518060400160405280600981526020016814185c195c8810dd5d60ba1b815250815260200160405180604001604052806007815260200166141e5c985b5a5960ca1b81525081526020016040518060400160405280600781526020016654686f726e2d7960c81b815250815260200160405180604001604052806006815260200165436f6e652d7960d01b815250815250905060006040518060a00160405280604051806040016040528060028152602001614e6f60f01b8152508152602001604051806040016040528060068152602001650c4811da599d60d21b8152508152602001604051806040016040528060078152602001663220476966747360c81b8152508152602001604051806040016040528060078152602001663320476966747360c81b8152508152602001604051806040016040528060078152602001663420476966747360c81b815250815250905060006040518060400160405280604051806040016040528060028152602001614e6f60f01b81525081526020016040518060400160405280600381526020016259657360e81b815250815250905060006040518061010001604052806040518060400160405280600681526020016529b4b63b32b960d11b81525081526020016040518060400160405280600381526020016214995960ea1b8152508152602001604051806040016040528060068152602001654f72616e676560d01b81525081526020016040518060400160405280600581526020016423b932b2b760d91b815250815260200160405180604001604052806004815260200163426c756560e01b81525081526020016040518060400160405280600681526020016559656c6c6f7760d01b815250815260200160405180604001604052806006815260200165507572706c6560d01b8152508152602001604051806040016040528060028152602001614e6f60f01b815250815250905060006040518061016001604052806040518060400160405280600d81526020016c536c6976657220436c6f75647360981b81525081526020016040518060400160405280600b81526020016a2832b0b1b43c902737b7b760a91b8152508152602001604051806040016040528060098152602001682834b735902230bbb760b91b81525081526020016040518060400160405280600f81526020016e4e6f72746865726e204c696768747360881b81525081526020016040518060400160405280600d81526020016c26b7b93734b7339023b932b2b760991b81525081526020016040518060400160405280600d81526020016c4c6176656e646572204475736b60981b81525081526020016040518060400160405280600a8152602001694d6973747920426c756560b01b81525081526020016040518060400160405280600b81526020016a53746f726d79204772657960a81b81525081526020016040518060400160405280600d81526020016c105c98589a585b88139a59da1d609a1b81525081526020016040518060400160405280600c81526020016b159a5bdb195d08139a59da1d60a21b8152508152602001604051806040016040528060098152602001684e6967687420536b7960b81b815250815250905060006116158b611f61565b828a60200151600b811061162b5761162b612a95565b6020020151878b606001516008811061164657611646612a95565b602002015160405160200161165d93929190612c46565b604051602081830303815290604052905080878a608001516009811061168557611685612a95565b6020020151858b60a00151600281106116a0576116a0612a95565b60200201516040516020016116b793929190612ddb565b60405160208183030381529060405290508860c00151600014156116f857806040516020016116e69190612f0f565b60405160208183030381529060405290505b8860c00151600114156117445780838a60e001516008811061171c5761171c612a95565b6020020151604051602001611732929190612f34565b60405160208183030381529060405290505b8860c00151600214156117905780838a60e001516008811061176857611768612a95565b602002015160405160200161177e929190612fa6565b60405160208183030381529060405290505b6040805160208101909152600081526101a08a0151156117cc575060408051808201909152600981526808105b9a5b585d195960ba1b60208201525b81858b60400151600281106117e3576117e3612a95565b6020020151858c6101200151600881106117ff576117ff612a95565b6020020151868d61016001516008811061181b5761181b612a95565b6020020151848a8f61018001516005811061183857611838612a95565b60200201516118468f61205f565b60405160200161185c9796959493929190613023565b60405160208183030381529060405291506118768261205f565b60405160200161188691906131ab565b6040516020818303038152906040529a5050505050505050505050919050565b600b546001600160a01b031633146118d05760405162461bcd60e51b8152600401610693906129de565b6001600160a01b0381166119355760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610693565b61193e81611e0d565b50565b60006001600160e01b031982166380ac58cd60e01b148061197257506001600160e01b03198216635b5e139f60e01b145b8061058657506301ffc9a760e01b6001600160e01b0319831614610586565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119c682610a4f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a785760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610693565b6000611a8383610a4f565b9050806001600160a01b0316846001600160a01b03161480611abe5750836001600160a01b0316611ab38461061e565b6001600160a01b0316145b80611aee57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b0982610a4f565b6001600160a01b031614611b715760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610693565b6001600160a01b038216611bd35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610693565b611bde8383836121c5565b611be9600082611991565b6001600160a01b0383166000908152600360205260408120805460019290611c129084906131f0565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c40908490612aab565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bec82826040518060200160405280600081525061227d565b60408051610360810182526029815260516020820152609d9181019190915261018260608201526102fe608082015261035760a08201526103df60c082015261042f60e082015261046561010082015261046e6101208201526105d961014082015261068e6101608201526107096101808201526107b56101a08201526107bd6101c08201526108186101e08201526109a76102008201526109ce610220820152610a04610240820152610b6a610260820152610b95610280820152610bb46102a0820152610d136102c0820152610d6d6102e0820152610e70610300820152610f7861032082015261137e61034082015260005b601b8161ffff161015610bec57818161ffff16601b8110611dd357611dd3612a95565b602002015161ffff16600e541415611dfb57600e8054906000611df583612a7a565b91905055505b80611e0581613207565b915050611db0565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611ec15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610693565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f39848484611af6565b611f45848484846122b0565b610e405760405162461bcd60e51b815260040161069390613229565b606081611f855750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611faf5780611f9981612a7a565b9150611fa89050600a83613291565b9150611f89565b60008167ffffffffffffffff811115611fca57611fca61282c565b6040519080825280601f01601f191660200182016040528015611ff4576020820181803683370190505b5090505b8415611aee576120096001836131f0565b9150612016600a866132a5565b612021906030612aab565b60f81b81838151811061203657612036612a95565b60200101906001600160f81b031916908160001a905350612058600a86613291565b9450611ff8565b606081516000141561207f57505060408051602081019091526000815290565b600060405180606001604052806040815260200161332060409139905060006003845160026120ae9190612aab565b6120b89190613291565b6120c3906004612ac3565b905060006120d2826020612aab565b67ffffffffffffffff8111156120ea576120ea61282c565b6040519080825280601f01601f191660200182016040528015612114576020820181803683370190505b509050818152600183018586518101602084015b81831015612180576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825350600101612128565b60038951066001811461219a57600281146121ab576121b7565b613d3d60f01b6001198301526121b7565b603d60f81b6000198301525b509398975050505050505050565b6001600160a01b0383166122205761221b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612243565b816001600160a01b0316836001600160a01b0316146122435761224383826123ae565b6001600160a01b03821661225a576107c98161244b565b826001600160a01b0316826001600160a01b0316146107c9576107c982826124fa565b612287838361253e565b61229460008484846122b0565b6107c95760405162461bcd60e51b815260040161069390613229565b60006001600160a01b0384163b156123a357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122f49033908990889088906004016132b9565b6020604051808303816000875af192505050801561232f575060408051601f3d908101601f1916820190925261232c918101906132ec565b60015b612389573d80801561235d576040519150601f19603f3d011682016040523d82523d6000602084013e612362565b606091505b5080516123815760405162461bcd60e51b815260040161069390613229565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aee565b506001949350505050565b600060016123bb84610ac6565b6123c591906131f0565b600083815260076020526040902054909150808214612418576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061245d906001906131f0565b6000838152600960205260408120546008805493945090928490811061248557612485612a95565b9060005260206000200154905080600883815481106124a6576124a6612a95565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806124de576124de613309565b6001900381819060005260206000200160009055905550505050565b600061250583610ac6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166125945760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610693565b6000818152600260205260409020546001600160a01b0316156125f95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610693565b612605600083836121c5565b6001600160a01b038216600090815260036020526040812080546001929061262e908490612aab565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461193e57600080fd5b6000602082840312156126b457600080fd5b81356126bf8161268c565b9392505050565b60005b838110156126e15781810151838201526020016126c9565b83811115610e405750506000910152565b6000815180845261270a8160208601602086016126c6565b601f01601f19169290920160200192915050565b6020815260006126bf60208301846126f2565b60006020828403121561274357600080fd5b5035919050565b80356001600160a01b038116811461276157600080fd5b919050565b6000806040838503121561277957600080fd5b6127828361274a565b946020939093013593505050565b6000806000606084860312156127a557600080fd5b6127ae8461274a565b92506127bc6020850161274a565b9150604084013590509250925092565b6000602082840312156127de57600080fd5b6126bf8261274a565b801515811461193e57600080fd5b6000806040838503121561280857600080fd5b6128118361274a565b91506020830135612821816127e7565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6040516101c0810167ffffffffffffffff811182821017156128665761286661282c565b60405290565b604051601f8201601f1916810167ffffffffffffffff811182821017156128955761289561282c565b604052919050565b600067ffffffffffffffff8211156128b7576128b761282c565b50601f01601f191660200190565b600080600080608085870312156128db57600080fd5b6128e48561274a565b93506128f26020860161274a565b925060408501359150606085013567ffffffffffffffff81111561291557600080fd5b8501601f8101871361292657600080fd5b80356129396129348261289d565b61286c565b81815288602083850101111561294e57600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b6000806040838503121561298357600080fd5b61298c8361274a565b915061299a6020840161274a565b90509250929050565b600181811c908216806129b757607f821691505b602082108114156129d857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000600019821415612a8e57612a8e612a64565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60008219821115612abe57612abe612a64565b500190565b6000816000190483118215151615612add57612add612a64565b500290565b8051612761816127e7565b600082601f830112612afe57600080fd5b8151612b0c6129348261289d565b818152846020838601011115612b2157600080fd5b611aee8260208301602087016126c6565b6000808284036101e0811215612b4757600080fd5b6101c080821215612b5757600080fd5b612b5f612842565b9150845182526020850151602083015260408501516040830152606085015160608301526080850151608083015260a085015160a083015260c085015160c083015260e085015160e08301526101008086015181840152506101208086015181840152506101408086015181840152506101608086015181840152506101808086015181840152506101a0612bf5818701612ae2565b9083015284015190925067ffffffffffffffff811115612c1457600080fd5b612c2085828601612aed565b9150509250929050565b60008151612c3c8185602086016126c6565b9290920192915050565b6f7b226e616d6522203a20224f4358542360801b81528351600090612c728160108501602089016126c6565b61088b60f21b6010918401918201527f226465736372697074696f6e223a202231303025206f6e2d636861696e20676560128201527f6e65726174697665204368726973746d617320547265657320666f7220796f7560328201527f20746f206f776e206f7220736861726520616e64206b65657020796f7572207460528201527f7261646974696f6e7320616c697665206f6e2074686520626c6f636b636861696072820152631b8b888b60e21b60928201526d2261747472696275746573223a5b60901b60968201527f7b2274726169745f74797065223a224261636b67726f756e64222c2276616c7560a48201526332911d1160e11b60c4820152612dd1612d87612dcb612d968260c886018a612c2a565b62089f4b60ea1b815260030190565b7f7b2274726169745f74797065223a22547265652054797065222c2276616c7565815262111d1160e91b602082015260230190565b86612c2a565b9695505050505050565b60008451612ded8184602089016126c6565b80830190507f7b2274726169745f74797065223a225472656520436f6c6f72222c2276616c7581526332911d1160e11b60208201528451612e358160248401602089016126c6565b62089f4b60ea1b6024929091019182018190527f7b2274726169745f74797065223a22536e6f7720436170222c2276616c7565226027830152611d1160f11b60478301528451612e8c8160498501602089016126c6565b6049920191820152604c0195945050505050565b7f7b2274726169745f74797065223a2253746172222c2276616c7565223a224e6f815262089f4b60ea1b602082015260230190565b7f7b2274726169745f74797065223a2253616e746120486174222c2276616c7565815267088e88939bc89f4b60c21b602082015260280190565b60008251612f218184602087016126c6565b611aee612f2f828501612ea0565b612ed5565b60008351612f468184602088016126c6565b7f7b2274726169745f74797065223a2253746172222c2276616c7565223a2200009083019081528351612f8081601e8401602088016126c6565b62089f4b60ea1b601e9290910191820152612f9d60218201612ed5565b95945050505050565b60008351612fb88184602088016126c6565b612fc3818401612ea0565b90507f7b2274726169745f74797065223a2253616e746120486174222c2276616c7565815262111d1160e91b602082015283516130078160238401602088016126c6565b62089f4b60ea1b60239290910191820152602601949350505050565b60008851613035818460208d016126c6565b80830190507f7b2274726169745f74797065223a22436c6f756473222c2276616c7565223a2281528851613070816020840160208d016126c6565b80820191505062089f4b60ea1b8060208301527f7b2274726169745f74797065223a22526962626f6e222c2276616c7565223a22602383015288516130bc816043850160208d016126c6565b60439201918201527f7b2274726169745f74797065223a2242756c6273222c2276616c7565223a2200604682015286516130fd816065840160208b016126c6565b61319c61315061319661315e61315061314a613121612d876065898b01018f612c2a565b7f7b2274726169745f74797065223a224769667473222c2276616c7565223a22008152601f0190565b8b612c2a565b61227d60f01b815260020190565b7f5d2c22696d616765223a2022646174613a696d6167652f7376672b786d6c3b62815265185cd94d8d0b60d21b602082015260260190565b87612c2a565b9b9a5050505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516131e381601d8501602087016126c6565b91909101601d0192915050565b60008282101561320257613202612a64565b500390565b600061ffff8083168181141561321f5761321f612a64565b6001019392505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826132a0576132a061327b565b500490565b6000826132b4576132b461327b565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612dd1908301846126f2565b6000602082840312156132fe57600080fd5b81516126bf8161268c565b634e487b7160e01b600052603160045260246000fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212209e1d500c00edc67cd21dfde775c0e03585a7cf572574724b84e8ff854c4f11b864736f6c634300080a00334368726973746d617320547265657320627920547261646974696f6e73204f6e20436861696e
Deployed Bytecode
0x6080604052600436106101c25760003560e01c80636ad1fe02116100f7578063a22cb46511610095578063d082e38111610064578063d082e381146104cc578063d5abeb01146104e2578063e985e9c5146104f8578063f2fde38b1461054157600080fd5b8063a22cb46514610459578063aad3ec9614610479578063b88d4fde1461048c578063c87b56dd146104ac57600080fd5b8063853828b6116100d1578063853828b6146103fb5780638da5cb5b1461041057806395d89b411461042e578063a035b1fe1461044357600080fd5b80636ad1fe02146103ac57806370a08231146103c6578063715018a6146103e657600080fd5b80632f745c591161016457806342842e0e1161013e57806342842e0e146103375780634639edeb146103575780634f6ccce71461036c5780636352211e1461038c57600080fd5b80632f745c59146102d757806335403023146102f75780633de90c891461031757600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806309f81e0b1461027857806318160ddd1461029857806323b872dd146102b757600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046126a2565b610561565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161058c565b6040516101f3919061271e565b34801561022a57600080fd5b5061023e610239366004612731565b61061e565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004612766565b6106b8565b005b34801561028457600080fd5b50610276610293366004612731565b6107ce565b3480156102a457600080fd5b506008545b6040519081526020016101f3565b3480156102c357600080fd5b506102766102d2366004612790565b6107fd565b3480156102e357600080fd5b506102a96102f2366004612766565b61082e565b34801561030357600080fd5b50610276610312366004612731565b6108c4565b34801561032357600080fd5b50610276610332366004612766565b6108f3565b34801561034357600080fd5b50610276610352366004612790565b610963565b34801561036357600080fd5b5061027661097e565b34801561037857600080fd5b506102a9610387366004612731565b6109bc565b34801561039857600080fd5b5061023e6103a7366004612731565b610a4f565b3480156103b857600080fd5b50600f546101e79060ff1681565b3480156103d257600080fd5b506102a96103e13660046127cc565b610ac6565b3480156103f257600080fd5b50610276610b4d565b34801561040757600080fd5b50610276610b83565b34801561041c57600080fd5b50600b546001600160a01b031661023e565b34801561043a57600080fd5b50610211610bd2565b34801561044f57600080fd5b506102a9600d5481565b34801561046557600080fd5b506102766104743660046127f5565b610be1565b610276610487366004612766565b610bf0565b34801561049857600080fd5b506102766104a73660046128c5565b610e0e565b3480156104b857600080fd5b506102116104c7366004612731565b610e46565b3480156104d857600080fd5b506102a9600e5481565b3480156104ee57600080fd5b506102a9600c5481565b34801561050457600080fd5b506101e7610513366004612970565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561054d57600080fd5b5061027661055c3660046127cc565b6118a6565b60006001600160e01b0319821663780e9d6360e01b1480610586575061058682611941565b92915050565b60606000805461059b906129a3565b80601f01602080910402602001604051908101604052809291908181526020018280546105c7906129a3565b80156106145780601f106105e957610100808354040283529160200191610614565b820191906000526020600020905b8154815290600101906020018083116105f757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661069c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106c382610a4f565b9050806001600160a01b0316836001600160a01b031614156107315760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610693565b336001600160a01b038216148061074d575061074d8133610513565b6107bf5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610693565b6107c98383611991565b505050565b600b546001600160a01b031633146107f85760405162461bcd60e51b8152600401610693906129de565b600d55565b61080733826119ff565b6108235760405162461bcd60e51b815260040161069390612a13565b6107c9838383611af6565b600061083983610ac6565b821061089b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610693565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b031633146108ee5760405162461bcd60e51b8152600401610693906129de565b600c55565b600b546001600160a01b0316331461091d5760405162461bcd60e51b8152600401610693906129de565b60005b818110156107c95761093483600e54611ca1565b600e805490600061094483612a7a565b9190505550610951611cbb565b8061095b81612a7a565b915050610920565b6107c983838360405180602001604052806000815250610e0e565b600b546001600160a01b031633146109a85760405162461bcd60e51b8152600401610693906129de565b600f805460ff19811660ff90911615179055565b60006109c760085490565b8210610a2a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610693565b60088281548110610a3d57610a3d612a95565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105865760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610693565b60006001600160a01b038216610b315760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610693565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610b775760405162461bcd60e51b8152600401610693906129de565b610b816000611e0d565b565b600b546001600160a01b03163314610bad5760405162461bcd60e51b8152600401610693906129de565b6040513390303180156108fc02916000818181858888f19350505050610b8157600080fd5b60606001805461059b906129a3565b610bec338383611e5f565b5050565b6002600a541415610c435760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610693565b6002600a55600c54600e5410610c8f5760405162461bcd60e51b8152602060048201526011602482015270105b1b081d1bdad95b9cc81b5a5b9d1959607a1b6044820152606401610693565b600f5460ff16610cd45760405162461bcd60e51b815260206004820152601060248201526f14d85b195cc8185c99481c185d5cd95960821b6044820152606401610693565b600b8110610d105760405162461bcd60e51b815260206004820152600960248201526813585e08131a5b5a5d60ba1b6044820152606401610693565b601a81610d1c84610ac6565b610d269190612aab565b10610d6a5760405162461bcd60e51b815260206004820152601460248201527315d85b1b195d081b1a5b5a5d081c995858da195960621b6044820152606401610693565b3481600d54610d799190612ac3565b1115610dbe5760405162461bcd60e51b8152602060048201526014602482015273125b98dbdc9c9958dd0811551208185b5bdd5b9d60621b6044820152606401610693565b60005b81811015610e0457610dd583600e54611ca1565b600e8054906000610de583612a7a565b9190505550610df2611cbb565b80610dfc81612a7a565b915050610dc1565b50506001600a5550565b610e1833836119ff565b610e345760405162461bcd60e51b815260040161069390612a13565b610e4084848484611f2e565b50505050565b6060600e548210610e5657600080fd5b610eca604051806101c00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000151581525090565b604051633743c63160e21b815260048101849052606090732311b3ccbdd6e50ca998b6e40b48d5cbbbde6d949063dd0f18c490602401600060405180830381865af4158015610f1d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610f459190810190612b32565b809250819350505060006040518061012001604052806040518060400160405280600b81526020016a2632b0b33c9023b932b2b760a91b81525081526020016040518060400160405280600a815260200169536e6f7720576869746560b01b81525081526020016040518060400160405280600d81526020016c476f6c64656e2053697a7a6c6560981b81525081526020016040518060400160405280600a815260200169416c69656e20426c756560b01b81525081526020016040518060400160405280600981526020016813595c9c9e4814995960ba1b81525081526020016040518060400160405280600a81526020016950696e6b20426572727960b01b81525081526020016040518060400160405280600881526020016749637920426c756560c01b81525081526020016040518060400160405280600d81526020016c476f7267656f7573204772657960981b81525081526020016040518060400160405280600b81526020016a417574756d6e204c6f766560a81b815250815250905060006040518061010001604052806040518060400160405280600781526020016605a6970205a61760cc1b8152508152602001604051806040016040528060058152602001644e6163686f60d81b815250815260200160405180604001604052806007815260200166466c6f772d657960c81b815250815260200160405180604001604052806009815260200168141a5e195b185d195960ba1b81525081526020016040518060400160405280600981526020016814185c195c8810dd5d60ba1b815250815260200160405180604001604052806007815260200166141e5c985b5a5960ca1b81525081526020016040518060400160405280600781526020016654686f726e2d7960c81b815250815260200160405180604001604052806006815260200165436f6e652d7960d01b815250815250905060006040518060a00160405280604051806040016040528060028152602001614e6f60f01b8152508152602001604051806040016040528060068152602001650c4811da599d60d21b8152508152602001604051806040016040528060078152602001663220476966747360c81b8152508152602001604051806040016040528060078152602001663320476966747360c81b8152508152602001604051806040016040528060078152602001663420476966747360c81b815250815250905060006040518060400160405280604051806040016040528060028152602001614e6f60f01b81525081526020016040518060400160405280600381526020016259657360e81b815250815250905060006040518061010001604052806040518060400160405280600681526020016529b4b63b32b960d11b81525081526020016040518060400160405280600381526020016214995960ea1b8152508152602001604051806040016040528060068152602001654f72616e676560d01b81525081526020016040518060400160405280600581526020016423b932b2b760d91b815250815260200160405180604001604052806004815260200163426c756560e01b81525081526020016040518060400160405280600681526020016559656c6c6f7760d01b815250815260200160405180604001604052806006815260200165507572706c6560d01b8152508152602001604051806040016040528060028152602001614e6f60f01b815250815250905060006040518061016001604052806040518060400160405280600d81526020016c536c6976657220436c6f75647360981b81525081526020016040518060400160405280600b81526020016a2832b0b1b43c902737b7b760a91b8152508152602001604051806040016040528060098152602001682834b735902230bbb760b91b81525081526020016040518060400160405280600f81526020016e4e6f72746865726e204c696768747360881b81525081526020016040518060400160405280600d81526020016c26b7b93734b7339023b932b2b760991b81525081526020016040518060400160405280600d81526020016c4c6176656e646572204475736b60981b81525081526020016040518060400160405280600a8152602001694d6973747920426c756560b01b81525081526020016040518060400160405280600b81526020016a53746f726d79204772657960a81b81525081526020016040518060400160405280600d81526020016c105c98589a585b88139a59da1d609a1b81525081526020016040518060400160405280600c81526020016b159a5bdb195d08139a59da1d60a21b8152508152602001604051806040016040528060098152602001684e6967687420536b7960b81b815250815250905060006116158b611f61565b828a60200151600b811061162b5761162b612a95565b6020020151878b606001516008811061164657611646612a95565b602002015160405160200161165d93929190612c46565b604051602081830303815290604052905080878a608001516009811061168557611685612a95565b6020020151858b60a00151600281106116a0576116a0612a95565b60200201516040516020016116b793929190612ddb565b60405160208183030381529060405290508860c00151600014156116f857806040516020016116e69190612f0f565b60405160208183030381529060405290505b8860c00151600114156117445780838a60e001516008811061171c5761171c612a95565b6020020151604051602001611732929190612f34565b60405160208183030381529060405290505b8860c00151600214156117905780838a60e001516008811061176857611768612a95565b602002015160405160200161177e929190612fa6565b60405160208183030381529060405290505b6040805160208101909152600081526101a08a0151156117cc575060408051808201909152600981526808105b9a5b585d195960ba1b60208201525b81858b60400151600281106117e3576117e3612a95565b6020020151858c6101200151600881106117ff576117ff612a95565b6020020151868d61016001516008811061181b5761181b612a95565b6020020151848a8f61018001516005811061183857611838612a95565b60200201516118468f61205f565b60405160200161185c9796959493929190613023565b60405160208183030381529060405291506118768261205f565b60405160200161188691906131ab565b6040516020818303038152906040529a5050505050505050505050919050565b600b546001600160a01b031633146118d05760405162461bcd60e51b8152600401610693906129de565b6001600160a01b0381166119355760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610693565b61193e81611e0d565b50565b60006001600160e01b031982166380ac58cd60e01b148061197257506001600160e01b03198216635b5e139f60e01b145b8061058657506301ffc9a760e01b6001600160e01b0319831614610586565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119c682610a4f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a785760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610693565b6000611a8383610a4f565b9050806001600160a01b0316846001600160a01b03161480611abe5750836001600160a01b0316611ab38461061e565b6001600160a01b0316145b80611aee57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b0982610a4f565b6001600160a01b031614611b715760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610693565b6001600160a01b038216611bd35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610693565b611bde8383836121c5565b611be9600082611991565b6001600160a01b0383166000908152600360205260408120805460019290611c129084906131f0565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c40908490612aab565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bec82826040518060200160405280600081525061227d565b60408051610360810182526029815260516020820152609d9181019190915261018260608201526102fe608082015261035760a08201526103df60c082015261042f60e082015261046561010082015261046e6101208201526105d961014082015261068e6101608201526107096101808201526107b56101a08201526107bd6101c08201526108186101e08201526109a76102008201526109ce610220820152610a04610240820152610b6a610260820152610b95610280820152610bb46102a0820152610d136102c0820152610d6d6102e0820152610e70610300820152610f7861032082015261137e61034082015260005b601b8161ffff161015610bec57818161ffff16601b8110611dd357611dd3612a95565b602002015161ffff16600e541415611dfb57600e8054906000611df583612a7a565b91905055505b80611e0581613207565b915050611db0565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611ec15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610693565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f39848484611af6565b611f45848484846122b0565b610e405760405162461bcd60e51b815260040161069390613229565b606081611f855750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611faf5780611f9981612a7a565b9150611fa89050600a83613291565b9150611f89565b60008167ffffffffffffffff811115611fca57611fca61282c565b6040519080825280601f01601f191660200182016040528015611ff4576020820181803683370190505b5090505b8415611aee576120096001836131f0565b9150612016600a866132a5565b612021906030612aab565b60f81b81838151811061203657612036612a95565b60200101906001600160f81b031916908160001a905350612058600a86613291565b9450611ff8565b606081516000141561207f57505060408051602081019091526000815290565b600060405180606001604052806040815260200161332060409139905060006003845160026120ae9190612aab565b6120b89190613291565b6120c3906004612ac3565b905060006120d2826020612aab565b67ffffffffffffffff8111156120ea576120ea61282c565b6040519080825280601f01601f191660200182016040528015612114576020820181803683370190505b509050818152600183018586518101602084015b81831015612180576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825350600101612128565b60038951066001811461219a57600281146121ab576121b7565b613d3d60f01b6001198301526121b7565b603d60f81b6000198301525b509398975050505050505050565b6001600160a01b0383166122205761221b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612243565b816001600160a01b0316836001600160a01b0316146122435761224383826123ae565b6001600160a01b03821661225a576107c98161244b565b826001600160a01b0316826001600160a01b0316146107c9576107c982826124fa565b612287838361253e565b61229460008484846122b0565b6107c95760405162461bcd60e51b815260040161069390613229565b60006001600160a01b0384163b156123a357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122f49033908990889088906004016132b9565b6020604051808303816000875af192505050801561232f575060408051601f3d908101601f1916820190925261232c918101906132ec565b60015b612389573d80801561235d576040519150601f19603f3d011682016040523d82523d6000602084013e612362565b606091505b5080516123815760405162461bcd60e51b815260040161069390613229565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aee565b506001949350505050565b600060016123bb84610ac6565b6123c591906131f0565b600083815260076020526040902054909150808214612418576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061245d906001906131f0565b6000838152600960205260408120546008805493945090928490811061248557612485612a95565b9060005260206000200154905080600883815481106124a6576124a6612a95565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806124de576124de613309565b6001900381819060005260206000200160009055905550505050565b600061250583610ac6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166125945760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610693565b6000818152600260205260409020546001600160a01b0316156125f95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610693565b612605600083836121c5565b6001600160a01b038216600090815260036020526040812080546001929061262e908490612aab565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461193e57600080fd5b6000602082840312156126b457600080fd5b81356126bf8161268c565b9392505050565b60005b838110156126e15781810151838201526020016126c9565b83811115610e405750506000910152565b6000815180845261270a8160208601602086016126c6565b601f01601f19169290920160200192915050565b6020815260006126bf60208301846126f2565b60006020828403121561274357600080fd5b5035919050565b80356001600160a01b038116811461276157600080fd5b919050565b6000806040838503121561277957600080fd5b6127828361274a565b946020939093013593505050565b6000806000606084860312156127a557600080fd5b6127ae8461274a565b92506127bc6020850161274a565b9150604084013590509250925092565b6000602082840312156127de57600080fd5b6126bf8261274a565b801515811461193e57600080fd5b6000806040838503121561280857600080fd5b6128118361274a565b91506020830135612821816127e7565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6040516101c0810167ffffffffffffffff811182821017156128665761286661282c565b60405290565b604051601f8201601f1916810167ffffffffffffffff811182821017156128955761289561282c565b604052919050565b600067ffffffffffffffff8211156128b7576128b761282c565b50601f01601f191660200190565b600080600080608085870312156128db57600080fd5b6128e48561274a565b93506128f26020860161274a565b925060408501359150606085013567ffffffffffffffff81111561291557600080fd5b8501601f8101871361292657600080fd5b80356129396129348261289d565b61286c565b81815288602083850101111561294e57600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b6000806040838503121561298357600080fd5b61298c8361274a565b915061299a6020840161274a565b90509250929050565b600181811c908216806129b757607f821691505b602082108114156129d857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000600019821415612a8e57612a8e612a64565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60008219821115612abe57612abe612a64565b500190565b6000816000190483118215151615612add57612add612a64565b500290565b8051612761816127e7565b600082601f830112612afe57600080fd5b8151612b0c6129348261289d565b818152846020838601011115612b2157600080fd5b611aee8260208301602087016126c6565b6000808284036101e0811215612b4757600080fd5b6101c080821215612b5757600080fd5b612b5f612842565b9150845182526020850151602083015260408501516040830152606085015160608301526080850151608083015260a085015160a083015260c085015160c083015260e085015160e08301526101008086015181840152506101208086015181840152506101408086015181840152506101608086015181840152506101808086015181840152506101a0612bf5818701612ae2565b9083015284015190925067ffffffffffffffff811115612c1457600080fd5b612c2085828601612aed565b9150509250929050565b60008151612c3c8185602086016126c6565b9290920192915050565b6f7b226e616d6522203a20224f4358542360801b81528351600090612c728160108501602089016126c6565b61088b60f21b6010918401918201527f226465736372697074696f6e223a202231303025206f6e2d636861696e20676560128201527f6e65726174697665204368726973746d617320547265657320666f7220796f7560328201527f20746f206f776e206f7220736861726520616e64206b65657020796f7572207460528201527f7261646974696f6e7320616c697665206f6e2074686520626c6f636b636861696072820152631b8b888b60e21b60928201526d2261747472696275746573223a5b60901b60968201527f7b2274726169745f74797065223a224261636b67726f756e64222c2276616c7560a48201526332911d1160e11b60c4820152612dd1612d87612dcb612d968260c886018a612c2a565b62089f4b60ea1b815260030190565b7f7b2274726169745f74797065223a22547265652054797065222c2276616c7565815262111d1160e91b602082015260230190565b86612c2a565b9695505050505050565b60008451612ded8184602089016126c6565b80830190507f7b2274726169745f74797065223a225472656520436f6c6f72222c2276616c7581526332911d1160e11b60208201528451612e358160248401602089016126c6565b62089f4b60ea1b6024929091019182018190527f7b2274726169745f74797065223a22536e6f7720436170222c2276616c7565226027830152611d1160f11b60478301528451612e8c8160498501602089016126c6565b6049920191820152604c0195945050505050565b7f7b2274726169745f74797065223a2253746172222c2276616c7565223a224e6f815262089f4b60ea1b602082015260230190565b7f7b2274726169745f74797065223a2253616e746120486174222c2276616c7565815267088e88939bc89f4b60c21b602082015260280190565b60008251612f218184602087016126c6565b611aee612f2f828501612ea0565b612ed5565b60008351612f468184602088016126c6565b7f7b2274726169745f74797065223a2253746172222c2276616c7565223a2200009083019081528351612f8081601e8401602088016126c6565b62089f4b60ea1b601e9290910191820152612f9d60218201612ed5565b95945050505050565b60008351612fb88184602088016126c6565b612fc3818401612ea0565b90507f7b2274726169745f74797065223a2253616e746120486174222c2276616c7565815262111d1160e91b602082015283516130078160238401602088016126c6565b62089f4b60ea1b60239290910191820152602601949350505050565b60008851613035818460208d016126c6565b80830190507f7b2274726169745f74797065223a22436c6f756473222c2276616c7565223a2281528851613070816020840160208d016126c6565b80820191505062089f4b60ea1b8060208301527f7b2274726169745f74797065223a22526962626f6e222c2276616c7565223a22602383015288516130bc816043850160208d016126c6565b60439201918201527f7b2274726169745f74797065223a2242756c6273222c2276616c7565223a2200604682015286516130fd816065840160208b016126c6565b61319c61315061319661315e61315061314a613121612d876065898b01018f612c2a565b7f7b2274726169745f74797065223a224769667473222c2276616c7565223a22008152601f0190565b8b612c2a565b61227d60f01b815260020190565b7f5d2c22696d616765223a2022646174613a696d6167652f7376672b786d6c3b62815265185cd94d8d0b60d21b602082015260260190565b87612c2a565b9b9a5050505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516131e381601d8501602087016126c6565b91909101601d0192915050565b60008282101561320257613202612a64565b500390565b600061ffff8083168181141561321f5761321f612a64565b6001019392505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826132a0576132a061327b565b500490565b6000826132b4576132b461327b565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612dd1908301846126f2565b6000602082840312156132fe57600080fd5b81516126bf8161268c565b634e487b7160e01b600052603160045260246000fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212209e1d500c00edc67cd21dfde775c0e03585a7cf572574724b84e8ff854c4f11b864736f6c634300080a0033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$219.24
Net Worth in ETH
0.097256
Token Allocations
ETH
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $2,255.56 | 0.0972 | $219.24 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.