Source Code
Overview
ETH Balance
0.089000521142924029 ETH
Eth Value
$177.69 (@ $1,996.48/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 7 from a total of 7 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Withdraw | 12091435 | 1832 days ago | IN | 0 ETH | 0.00417285 | ||||
| Withdraw | 12091372 | 1832 days ago | IN | 0 ETH | 0.00492396 | ||||
| Increase Allowan... | 12091290 | 1832 days ago | IN | 0 ETH | 0.01159095 | ||||
| Approve | 12091127 | 1832 days ago | IN | 0 ETH | 0.0120612 | ||||
| Approve | 12091085 | 1832 days ago | IN | 0 ETH | 0.01170338 | ||||
| Transfer | 12091072 | 1832 days ago | IN | 0.8 ETH | 0.01396332 | ||||
| Transfer | 12091033 | 1832 days ago | IN | 1.5 ETH | 0.01368735 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
PigPig
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-03-22
*/
// {VERSION 6 0 "IBM INTEL NT" "6.0" }
pragma solidity 0.5.16;
interface IBorrower {
function executeOnFlashMint(uint256 amount) external;
}
pragma solidity ^0.5.0;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
require(b <= a, "SafeMath: subtraction overflow");
uint256 c = a - b;
return c;
}
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
require(b > 0, "SafeMath: division by zero");
uint256 c = a / b;
return c;
}
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
require(b != 0, "SafeMath: modulo by zero");
return a % b;
}
}
pragma solidity ^0.5.0;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
pragma solidity ^0.5.0;
contract ERC20 is IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
function balanceOf(address account) public view returns (uint256) {
return _balances[account];
}
function transfer(address recipient, uint256 amount) public returns (bool) {
_transfer(msg.sender, recipient, amount);
return true;
}
function allowance(address owner, address spender) public view returns (uint256) {
return _allowances[owner][spender];
}
function approve(address spender, uint256 value) public returns (bool) {
_approve(msg.sender, spender, value);
return true;
}
function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount));
return true;
}
function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
return true;
}
function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
return true;
}
function _transfer(address sender, address recipient, uint256 amount) internal {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_balances[sender] = _balances[sender].sub(amount);
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
function _mint(address account, uint256 amount) internal {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
function _burn(address account, uint256 value) internal {
require(account != address(0), "ERC20: burn from the zero address");
_totalSupply = _totalSupply.sub(value);
_balances[account] = _balances[account].sub(value);
emit Transfer(account, address(0), value);
}
function _approve(address owner, address spender, uint256 value) internal {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = value;
emit Approval(owner, spender, value);
}
function _burnFrom(address account, uint256 amount) internal {
_burn(account, amount);
_approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
}
}
// File: browser/FlashETH.sol
pragma solidity 0.5.16;
contract PigPig is ERC20 {
using SafeMath for uint256;
string public name = "Brand Stuff";
string public symbol = "PIG";
uint8 public decimals = 18;
function() external payable {
_mint(msg.sender, msg.value);
}
function deposit() public payable {
_mint(msg.sender, msg.value);
}
function withdraw(uint256 amount) public {
_burn(msg.sender, amount);
msg.sender.transfer(amount);
}
modifier flashMint(uint256 amount) {
_mint(msg.sender, amount);
_;
// burn tokens
_burn(msg.sender, amount);
require(
address(this).balance >= totalSupply(),
"redeemability was broken"
);
}
function softFlashFuck(uint256 amount) public flashMint(amount) {
IBorrower(msg.sender).executeOnFlashMint(amount);
}
function hardFlashFuck(
address target,
bytes memory targetCalldata,
uint256 amount
) public flashMint(amount) {
(bool success, ) = target.call(targetCalldata);
require(success, "external call failed");
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"deposit","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"targetCalldata","type":"bytes"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"hardFlashFuck","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"softFlashFuck","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60c0604052600b60808190526a213930b7321029ba3ab33360a91b60a09081526200002e91600391906200007d565b506040805180820190915260038082526250494760e81b60209092019182526200005b916004916200007d565b506005805460ff191660121790553480156200007657600080fd5b5062000122565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620000c057805160ff1916838001178555620000f0565b82800160010185558215620000f0579182015b82811115620000f0578251825591602001919060010190620000d3565b50620000fe92915062000102565b5090565b6200011f91905b80821115620000fe576000815560010162000109565b90565b6111f080620001326000396000f3fe6080604052600436106100e85760003560e01c806370a082311161008a578063d0e30db011610059578063d0e30db0146103cb578063d668019b146103d3578063dd62ed3e146104a5578063f493e032146104ed576100e8565b806370a08231146102ea57806395d89b411461032a578063a457c2d71461033f578063a9059cbb14610385576100e8565b806323b872dd116100c657806323b872dd146101ff5780632e1a7d4d1461024f578063313ce5671461027957806339509351146102a4576100e8565b806306fdde03146100f4578063095ea7b31461017e57806318160ddd146101d8575b6100f23334610517565b005b34801561010057600080fd5b50610109610648565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014357818101518382015260200161012b565b50505050905090810190601f1680156101705780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018a57600080fd5b506101c4600480360360408110156101a157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356106f4565b604080519115158252519081900360200190f35b3480156101e457600080fd5b506101ed61070a565b60408051918252519081900360200190f35b34801561020b57600080fd5b506101c46004803603606081101561022257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610710565b34801561025b57600080fd5b506100f26004803603602081101561027257600080fd5b5035610774565b34801561028557600080fd5b5061028e6107af565b6040805160ff9092168252519081900360200190f35b3480156102b057600080fd5b506101c4600480360360408110156102c757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356107b8565b3480156102f657600080fd5b506101ed6004803603602081101561030d57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610801565b34801561033657600080fd5b50610109610829565b34801561034b57600080fd5b506101c46004803603604081101561036257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356108a2565b34801561039157600080fd5b506101c4600480360360408110156103a857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356108eb565b6100f26108f8565b3480156103df57600080fd5b506100f2600480360360608110156103f657600080fd5b73ffffffffffffffffffffffffffffffffffffffff823516919081019060408101602082013564010000000081111561042e57600080fd5b82018360208201111561044057600080fd5b8035906020019184600183028401116401000000008311171561046257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505091359250610904915050565b3480156104b157600080fd5b506101ed600480360360408110156104c857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610ad4565b3480156104f957600080fd5b506100f26004803603602081101561051057600080fd5b5035610b0c565b73ffffffffffffffffffffffffffffffffffffffff821661059957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6002546105ac908263ffffffff610c0216565b60025573ffffffffffffffffffffffffffffffffffffffff82166000908152602081905260409020546105e5908263ffffffff610c0216565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6003805460408051602060026001851615610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190941693909304601f810184900484028201840190925281815292918301828280156106ec5780601f106106c1576101008083540402835291602001916106ec565b820191906000526020600020905b8154815290600101906020018083116106cf57829003601f168201915b505050505081565b6000610701338484610c7d565b50600192915050565b60025490565b600061071d848484610dc4565b73ffffffffffffffffffffffffffffffffffffffff841660009081526001602090815260408083203380855292529091205461076a918691610765908663ffffffff610f7b16565b610c7d565b5060019392505050565b61077e3382610ff2565b604051339082156108fc029083906000818181858888f193505050501580156107ab573d6000803e3d6000fd5b5050565b60055460ff1681565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610701918590610765908663ffffffff610c0216565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6004805460408051602060026001851615610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190941693909304601f810184900484028201840190925281815292918301828280156106ec5780601f106106c1576101008083540402835291602001916106ec565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610701918590610765908663ffffffff610f7b16565b6000610701338484610dc4565b6109023334610517565b565b8061090f3382610517565b60008473ffffffffffffffffffffffffffffffffffffffff16846040518082805190602001908083835b6020831061097657805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101610939565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146109d8576040519150601f19603f3d011682016040523d82523d6000602084013e6109dd565b606091505b5050905080610a4d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f65787465726e616c2063616c6c206661696c6564000000000000000000000000604482015290519081900360640190fd5b50610a583382610ff2565b610a6061070a565b471015610ace57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f72656465656d6162696c697479207761732062726f6b656e0000000000000000604482015290519081900360640190fd5b50505050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b80610b173382610517565b3373ffffffffffffffffffffffffffffffffffffffff166352e91642836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610b6a57600080fd5b505af1158015610b7e573d6000803e3d6000fd5b50505050610b8c3382610ff2565b610b9461070a565b4710156107ab57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f72656465656d6162696c697479207761732062726f6b656e0000000000000000604482015290519081900360640190fd5b600082820183811015610c7657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8316610ce9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806111986024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610d55576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806111306022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610e30576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806111736025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610e9c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061110d6023913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054610ed2908263ffffffff610f7b16565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054610f14908263ffffffff610c0216565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610fec57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b73ffffffffffffffffffffffffffffffffffffffff821661105e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806111526021913960400191505060405180910390fd5b600254611071908263ffffffff610f7b16565b60025573ffffffffffffffffffffffffffffffffffffffff82166000908152602081905260409020546110aa908263ffffffff610f7b16565b73ffffffffffffffffffffffffffffffffffffffff8316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a723158204307148db403c779d630f1427ec902e9d58bfbff3debc0e680ab8852db4cd95164736f6c63430005100032
Deployed Bytecode
0x6080604052600436106100e85760003560e01c806370a082311161008a578063d0e30db011610059578063d0e30db0146103cb578063d668019b146103d3578063dd62ed3e146104a5578063f493e032146104ed576100e8565b806370a08231146102ea57806395d89b411461032a578063a457c2d71461033f578063a9059cbb14610385576100e8565b806323b872dd116100c657806323b872dd146101ff5780632e1a7d4d1461024f578063313ce5671461027957806339509351146102a4576100e8565b806306fdde03146100f4578063095ea7b31461017e57806318160ddd146101d8575b6100f23334610517565b005b34801561010057600080fd5b50610109610648565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014357818101518382015260200161012b565b50505050905090810190601f1680156101705780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018a57600080fd5b506101c4600480360360408110156101a157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356106f4565b604080519115158252519081900360200190f35b3480156101e457600080fd5b506101ed61070a565b60408051918252519081900360200190f35b34801561020b57600080fd5b506101c46004803603606081101561022257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610710565b34801561025b57600080fd5b506100f26004803603602081101561027257600080fd5b5035610774565b34801561028557600080fd5b5061028e6107af565b6040805160ff9092168252519081900360200190f35b3480156102b057600080fd5b506101c4600480360360408110156102c757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356107b8565b3480156102f657600080fd5b506101ed6004803603602081101561030d57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610801565b34801561033657600080fd5b50610109610829565b34801561034b57600080fd5b506101c46004803603604081101561036257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356108a2565b34801561039157600080fd5b506101c4600480360360408110156103a857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356108eb565b6100f26108f8565b3480156103df57600080fd5b506100f2600480360360608110156103f657600080fd5b73ffffffffffffffffffffffffffffffffffffffff823516919081019060408101602082013564010000000081111561042e57600080fd5b82018360208201111561044057600080fd5b8035906020019184600183028401116401000000008311171561046257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505091359250610904915050565b3480156104b157600080fd5b506101ed600480360360408110156104c857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610ad4565b3480156104f957600080fd5b506100f26004803603602081101561051057600080fd5b5035610b0c565b73ffffffffffffffffffffffffffffffffffffffff821661059957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6002546105ac908263ffffffff610c0216565b60025573ffffffffffffffffffffffffffffffffffffffff82166000908152602081905260409020546105e5908263ffffffff610c0216565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6003805460408051602060026001851615610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190941693909304601f810184900484028201840190925281815292918301828280156106ec5780601f106106c1576101008083540402835291602001916106ec565b820191906000526020600020905b8154815290600101906020018083116106cf57829003601f168201915b505050505081565b6000610701338484610c7d565b50600192915050565b60025490565b600061071d848484610dc4565b73ffffffffffffffffffffffffffffffffffffffff841660009081526001602090815260408083203380855292529091205461076a918691610765908663ffffffff610f7b16565b610c7d565b5060019392505050565b61077e3382610ff2565b604051339082156108fc029083906000818181858888f193505050501580156107ab573d6000803e3d6000fd5b5050565b60055460ff1681565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610701918590610765908663ffffffff610c0216565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6004805460408051602060026001851615610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190941693909304601f810184900484028201840190925281815292918301828280156106ec5780601f106106c1576101008083540402835291602001916106ec565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610701918590610765908663ffffffff610f7b16565b6000610701338484610dc4565b6109023334610517565b565b8061090f3382610517565b60008473ffffffffffffffffffffffffffffffffffffffff16846040518082805190602001908083835b6020831061097657805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101610939565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146109d8576040519150601f19603f3d011682016040523d82523d6000602084013e6109dd565b606091505b5050905080610a4d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f65787465726e616c2063616c6c206661696c6564000000000000000000000000604482015290519081900360640190fd5b50610a583382610ff2565b610a6061070a565b471015610ace57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f72656465656d6162696c697479207761732062726f6b656e0000000000000000604482015290519081900360640190fd5b50505050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b80610b173382610517565b3373ffffffffffffffffffffffffffffffffffffffff166352e91642836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610b6a57600080fd5b505af1158015610b7e573d6000803e3d6000fd5b50505050610b8c3382610ff2565b610b9461070a565b4710156107ab57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f72656465656d6162696c697479207761732062726f6b656e0000000000000000604482015290519081900360640190fd5b600082820183811015610c7657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8316610ce9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806111986024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610d55576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806111306022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610e30576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806111736025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610e9c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061110d6023913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054610ed2908263ffffffff610f7b16565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054610f14908263ffffffff610c0216565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610fec57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b73ffffffffffffffffffffffffffffffffffffffff821661105e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806111526021913960400191505060405180910390fd5b600254611071908263ffffffff610f7b16565b60025573ffffffffffffffffffffffffffffffffffffffff82166000908152602081905260409020546110aa908263ffffffff610f7b16565b73ffffffffffffffffffffffffffffffffffffffff8316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a723158204307148db403c779d630f1427ec902e9d58bfbff3debc0e680ab8852db4cd95164736f6c63430005100032
Deployed Bytecode Sourcemap
5308:1190:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5525:28;5531:10;5543:9;5525:5;:28::i;:::-;5308:1190;5375:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5375:34:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5375:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2761:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2761:148:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2761:148:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;2230:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2230:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;2919:256;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2919:256:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2919:256:0;;;;;;;;;;;;;;;;;;:::i;5662:123::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5662:123:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5662:123:0;;:::i;5451:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5451:26:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3185:206;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3185:206:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3185:206:0;;;;;;;;;:::i;2331:110::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2331:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2331:110:0;;;;:::i;5416:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5416:28:0;;;:::i;3401:216::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3401:216:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3401:216:0;;;;;;;;;:::i;2451:156::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2451:156:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2451:156:0;;;;;;;;;:::i;5571:81::-;;;:::i;6236:259::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6236:259:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6236:259:0;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;6236:259:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;6236:259:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;6236:259:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;6236:259:0;;-1:-1:-1;;6236:259:0;;;-1:-1:-1;6236:259:0;;-1:-1:-1;;6236:259:0:i;2617:134::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2617:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2617:134:0;;;;;;;;;;;:::i;6093:133::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6093:133:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6093:133:0;;:::i;4068:308::-;4144:21;;;4136:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4229:12;;:24;;4246:6;4229:24;:16;:24;:::i;:::-;4214:12;:39;4285:18;;;:9;:18;;;;;;;;;;;:30;;4308:6;4285:30;:22;:30;:::i;:::-;4264:18;;;:9;:18;;;;;;;;;;;:51;;;;4331:37;;;;;;;4264:18;;:9;;4331:37;;;;;;;;;;4068:308;;:::o;5375:34::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2761:148::-;2826:4;2843:36;2852:10;2864:7;2873:5;2843:8;:36::i;:::-;-1:-1:-1;2897:4:0;2761:148;;;;:::o;2230:91::-;2301:12;;2230:91;:::o;2919:256::-;3008:4;3025:36;3035:6;3043:9;3054:6;3025:9;:36::i;:::-;3101:19;;;;;;;:11;:19;;;;;;;;3089:10;3101:31;;;;;;;;;3072:73;;3081:6;;3101:43;;3137:6;3101:43;:35;:43;:::i;:::-;3072:8;:73::i;:::-;-1:-1:-1;3163:4:0;2919:256;;;;;:::o;5662:123::-;5714:25;5720:10;5732:6;5714:5;:25::i;:::-;5750:27;;:10;;:27;;;;;5770:6;;5750:27;;;;5770:6;5750:10;:27;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;5750:27:0;5662:123;:::o;5451:26::-;;;;;;:::o;3185:206::-;3291:10;3265:4;3312:23;;;:11;:23;;;;;;;;;:32;;;;;;;;;;3265:4;;3282:79;;3303:7;;3312:48;;3349:10;3312:48;:36;:48;:::i;2331:110::-;2415:18;;2388:7;2415:18;;;;;;;;;;;;2331:110::o;5416:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3401:216;3512:10;3486:4;3533:23;;;:11;:23;;;;;;;;;:32;;;;;;;;;;3486:4;;3503:84;;3524:7;;3533:53;;3570:15;3533:53;:36;:53;:::i;2451:156::-;2520:4;2537:40;2547:10;2559:9;2570:6;2537:9;:40::i;5571:81::-;5616:28;5622:10;5634:9;5616:5;:28::i;:::-;5571:81::o;6236:259::-;6371:6;5843:25;5849:10;5861:6;5843:5;:25::i;:::-;6391:12;6409:6;:11;;6421:14;6409:27;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;139:12;;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;6409:27:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;6390:46:0;;;6455:7;6447:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5884:1;5922:25;5928:10;5940:6;5922:5;:25::i;:::-;6010:13;:11;:13::i;:::-;5985:21;:38;;5963:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6236:259;;;;:::o;2617:134::-;2716:18;;;;2689:7;2716:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;2617:134::o;6093:133::-;6149:6;5843:25;5849:10;5861:6;5843:5;:25::i;:::-;6180:10;6170:40;;;6211:6;6170:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6170:48:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;6170:48:0;;;;5922:25;5928:10;5940:6;5922:5;:25::i;:::-;6010:13;:11;:13::i;:::-;5985:21;:38;;5963:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215:181;273:7;305:5;;;329:6;;;;321:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;387:1;215:181;-1:-1:-1;;;215:181:0:o;4702:335::-;4795:19;;;4787:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4874:21;;;4866:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4947:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;4998:31;;;;;;;;;;;;;;;;;4702:335;;;:::o;3629:429::-;3727:20;;;3719:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3808:23;;;3800:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3904:17;;;:9;:17;;;;;;;;;;;:29;;3926:6;3904:29;:21;:29;:::i;:::-;3884:17;;;;:9;:17;;;;;;;;;;;:49;;;;3967:20;;;;;;;:32;;3992:6;3967:32;:24;:32;:::i;:::-;3944:20;;;;:9;:20;;;;;;;;;;;;:55;;;;4015:35;;;;;;;3944:20;;4015:35;;;;;;;;;;;;;3629:429;;;:::o;406:184::-;464:7;497:1;492;:6;;484:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;556:5:0;;;406:184::o;4386:306::-;4461:21;;;4453:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4548:12;;:23;;4565:5;4548:23;:16;:23;:::i;:::-;4533:12;:38;4603:18;;;:9;:18;;;;;;;;;;;:29;;4626:5;4603:29;:22;:29;:::i;:::-;4582:18;;;:9;:18;;;;;;;;;;;:50;;;;4648:36;;;;;;;4582:9;;4648:36;;;;;;;;;;;4386:306;;:::o
Swarm Source
bzzr://4307148db403c779d630f1427ec902e9d58bfbff3debc0e680ab8852db4cd951
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.