Overview
Max Total Supply
746,880.3219333859249396 WIPC
Holders
368 (0.00%)
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WIPcoin
Compiler Version
v0.5.14+commit.01f1aaa4
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-08-27 */ /** *Submitted for verification at Etherscan.io on 2020-08-22 */ pragma solidity ^0.5.14; /* * @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 GSN 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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: node_modules\@openzeppelin\contracts\ownership\Ownable.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. * * 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. */ 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 () internal { _owner = _msgSender(); emit OwnershipTransferred(address(0), _owner); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _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 onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ interface IERC20 { function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @title SafeMath * @dev Unsigned math operations with safety checks that revert on error */ library SafeMath { /** * @dev Multiplies two unsigned integers, reverts on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } /** * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } /** * @dev Adds two unsigned integers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } /** * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md * Originally based on code by FirstBlood: * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol * * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for * all accounts just by listening to said events. Note that this isn't required by the specification, and other * compliant implementations may not do it. */ contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowed; uint256 private _totalSupply; /** * @dev Total number of tokens in existence */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev Gets the balance of the specified address. * @param owner The address to query the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address owner) public view returns (uint256) { return _balances[owner]; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param owner address The address which owns the funds. * @param spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowed[owner][spender]; } /** * @dev Transfer token for a specified address * @param to The address to transfer to. * @param value The amount to be transferred. */ function transfer(address to, uint256 value) public returns (bool) { _transfer(msg.sender, to, value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. */ function approve(address spender, uint256 value) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } /** * @dev Transfer tokens from one address to another. * Note that while this function emits an Approval event, this is not required as per the specification, * and other compliant implementations may not emit the event. * @param from address The address which you want to send tokens from * @param to address The address which you want to transfer to * @param value uint256 the amount of tokens to be transferred */ function transferFrom(address from, address to, uint256 value) public returns (bool) { _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value); _transfer(from, to, value); emit Approval(from, msg.sender, _allowed[from][msg.sender]); return true; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * approve should be called when allowed_[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * Emits an Approval event. * @param spender The address which will spend the funds. * @param addedValue The amount of tokens to increase the allowance by. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = _allowed[msg.sender][spender].add(addedValue); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * approve should be called when allowed_[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * Emits an Approval event. * @param spender The address which will spend the funds. * @param subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = _allowed[msg.sender][spender].sub(subtractedValue); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } /** * @dev Transfer token for a specified addresses * @param from The address to transfer from. * @param to The address to transfer to. * @param value The amount to be transferred. */ function _transfer(address from, address to, uint256 value) internal { require(to != address(0)); _balances[from] = _balances[from].sub(value); _balances[to] = _balances[to].add(value); emit Transfer(from, to, value); } /** * @dev Internal function that mints an amount of the token and assigns it to * an account. This encapsulates the modification of balances such that the * proper events are emitted. * @param account The account that will receive the created tokens. * @param value The amount that will be created. */ function _mint(address account, uint256 value) internal { require(account != address(0)); _totalSupply = _totalSupply.add(value); _balances[account] = _balances[account].add(value); emit Transfer(address(0), account, value); } /** * @dev Internal function that burns an amount of the token of a given * account. * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burn(address account, uint256 value) internal { require(account != address(0)); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Internal function that burns an amount of the token of a given * account, deducting from the sender's allowance for said account. Uses the * internal burn function. * Emits an Approval event (reflecting the reduced allowance). * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burnFrom(address account, uint256 value) internal { _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(value); _burn(account, value); emit Approval(account, msg.sender, _allowed[account][msg.sender]); } } /** * @title Helps contracts guard against reentrancy attacks. * @author Remco Bloemen <remco@2π.com>, Eenae <[email protected]> * @dev If you mark a function `nonReentrant`, you should also * mark it `external`. */ contract ReentrancyGuard { /// @dev counter to allow mutex lock with only one SSTORE operation uint256 private _guardCounter; constructor() public { // The counter starts at one to prevent changing it from zero to a non-zero // value, which is a more expensive operation. _guardCounter = 1; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { _guardCounter += 1; uint256 localCounter = _guardCounter; _; require(localCounter == _guardCounter); } } /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } contract WIPcoin is ERC20, ReentrancyGuard, Ownable { using SafeMath for uint256; using Roles for Roles.Role; Roles.Role private _admin; event MintWIP(address mintingAddress, uint256 amount); event BurnWIP(uint256 amount); mapping (address => uint256) private amountClaimableByAddress; uint8 constant public decimals = 18; string constant public name = "WIPcoin"; string constant public symbol = "WIPC"; uint256 constant public WIPHardCap = 1000000; uint256 public timerInitiated; uint256 public halvingIndex; uint256 public halvingTimeStamp; uint256 constant public halvingPeriodSeconds = 19353600; bool public numberOfAttendeesSet; bool public weeklyCountFinalized; bool public backDropComplete; address public expensesWeeklyAddress; address public promoWeeklyAddress; uint256 claimTimeDelay; uint256 thisWeeksAttendees; uint256 totalMeetups; uint256 totalAttendees; uint256 expensesSplit; uint256 promotionalSplit; uint256 communitySplit; constructor() public { _mint(0x63a9dbCe75413036B2B778E670aaBd4493aAF9F3, WIPHardCap*6*10**16); _mint(0x442DCCEe68425828C106A3662014B4F131e3BD9b, WIPHardCap*6*10**16); _mint(0x81E5cd19323ce7f6b36c9511fbC98d477a188b13, WIPHardCap*6*10**16); _mint(0xc2F82A1F287B5b5AEBff7C19e83e0a16Cf3bD041, WIPHardCap*6*10**16); _mint(0xfd3be6f4D3E099eDa7158dB21d459794B25309F8, WIPHardCap*6*10**16); timerInitiated = block.timestamp; halvingTimeStamp = timerInitiated + halvingPeriodSeconds; halvingIndex = 0; totalMeetups = 22; totalAttendees = 1247; backDropComplete = false; expensesWeeklyAddress = 0x63a9dbCe75413036B2B778E670aaBd4493aAF9F3; promoWeeklyAddress = 0x1082ACF0F6C0728F80FAe05741e6EcDEF976C181; communitySplit = 60; expensesSplit = 25; promotionalSplit = 15; _admin.add(0x63a9dbCe75413036B2B778E670aaBd4493aAF9F3); _admin.add(0x442DCCEe68425828C106A3662014B4F131e3BD9b); _admin.add(0x81E5cd19323ce7f6b36c9511fbC98d477a188b13); _admin.add(0xc2F82A1F287B5b5AEBff7C19e83e0a16Cf3bD041); } function getWeeklyDistribution() public view returns (uint256 communityDistributionAmount, uint256 expensesDistributionAmount, uint256 promotionalDistributionAmount) { uint256 halvingDecay = 2**halvingIndex; uint256 totalDistributionAmount = WIPHardCap*1/halvingDecay*10**16; communityDistributionAmount = totalDistributionAmount*communitySplit/100; expensesDistributionAmount = totalDistributionAmount*expensesSplit/100; promotionalDistributionAmount = totalDistributionAmount*promotionalSplit/100; } function getCirculatingWIP() private view returns (uint256 circulatingWIP) { circulatingWIP = totalSupply().div(10**18); } function updateHalvingIndex() private { if (getTimeToNextHalving() <= 0) { halvingIndex = halvingIndex + 1; } halvingTimeStamp = timerInitiated + ((halvingIndex + 1) * halvingPeriodSeconds); } function getTimeToNextHalving() private view returns (int256 timeToNextHalving){ timeToNextHalving = int256(halvingTimeStamp - block.timestamp); } function updateNumberOfAttendees(uint256 numberOfAttendees) public { require(_admin.has(msg.sender), "Only official admin can update number of attendees."); require (getTimeToDelayEnd() <= 0); numberOfAttendeesSet = true; weeklyCountFinalized = false; thisWeeksAttendees = numberOfAttendees; updateHalvingIndex(); } function pushAddresses(address[] memory attendee) public nonReentrant { require(_admin.has(msg.sender), "Only official admin can push attendee addresses."); require(getTimeToNextHalving() >= 0); require(getTimeToNextHalving() <= int256(halvingPeriodSeconds)); require(numberOfAttendeesSet == true); require(thisWeeksAttendees == attendee.length); uint256 crowdDistribution; (crowdDistribution,,) = getWeeklyDistribution(); uint256 weeklyWIPDistribution = crowdDistribution/thisWeeksAttendees; for(uint256 i = 0; i < attendee.length; i++){ amountClaimableByAddress[attendee[i]] = amountClaimableByAddress[attendee[i]] + weeklyWIPDistribution; } finalizeWeeklyAddresses(); } function initialBackDrop(address[] memory attendee, uint256[] memory backDropAmount) public onlyOwner nonReentrant { require(backDropComplete == false); require(attendee.length == backDropAmount.length); for(uint256 i = 0; i < attendee.length; i++){ amountClaimableByAddress[attendee[i]] = amountClaimableByAddress[attendee[i]] + backDropAmount[i]; } backDropComplete = true; } function finalizeWeeklyAddresses() private { numberOfAttendeesSet = false; weeklyCountFinalized = true; totalMeetups = totalMeetups + 1; totalAttendees = totalAttendees + thisWeeksAttendees; claimTimeDelay = block.timestamp + 518400; //6 days to allow for some input lag claimTeamWeekly(); } function getTimeToDelayEnd() private view returns (int256 timeToDelayEnd){ timeToDelayEnd = int256(claimTimeDelay - block.timestamp); } function claimWIPCoin() public nonReentrant { require(weeklyCountFinalized == true); uint256 amountToClaim = amountClaimableByAddress[msg.sender]; amountClaimableByAddress[msg.sender] = 0; require(getCirculatingWIP() + amountToClaim <= WIPHardCap.mul(10**18)); _mint(msg.sender, amountToClaim); emit MintWIP(msg.sender, amountToClaim.div(10**18)); } function claimTeamWeekly() private { require(weeklyCountFinalized == true); uint256 expensesDistribution; uint256 promotionalDistribution; (,expensesDistribution, promotionalDistribution) = getWeeklyDistribution(); require(getCirculatingWIP() + expensesDistribution <= WIPHardCap.mul(10**18)); _mint(expensesWeeklyAddress, expensesDistribution); emit MintWIP(expensesWeeklyAddress, expensesDistribution.div(10**18)); require(getCirculatingWIP() + promotionalDistribution <= WIPHardCap.mul(10**18)); _mint(promoWeeklyAddress, promotionalDistribution); emit MintWIP(promoWeeklyAddress, promotionalDistribution.div(10**18)); } function updateTeamWeekly(address newTeamWeekly) public onlyOwner { expensesWeeklyAddress = newTeamWeekly; } function updatePromoWeekly(address newPromoWeekly) public onlyOwner { promoWeeklyAddress = newPromoWeekly; } function adjustWeeklySplit(uint256 newExpenses, uint256 newPromo, uint256 newCommunity) public onlyOwner { require(newExpenses + newPromo + newCommunity == 100); expensesSplit = newExpenses; promotionalSplit = newPromo; communitySplit = newCommunity; } function getStats() public view returns (uint256 meetups, uint256 attendees, uint256 weeklyAttendees , uint256 circulatingSupply, int256 nextHalvingCountdown, int256 nextTimeDelayEnding, uint256 expensesPercent, uint256 promotionalPercent, uint256 communityPercent){ meetups = totalMeetups; attendees = totalAttendees; weeklyAttendees = thisWeeksAttendees; circulatingSupply = getCirculatingWIP(); nextHalvingCountdown = getTimeToNextHalving(); nextTimeDelayEnding = getTimeToDelayEnd(); expensesPercent = expensesSplit; promotionalPercent = promotionalSplit; communityPercent = communitySplit; } function getAmountClaimable(address userAddress) public view returns (uint256 amountClaimable) { amountClaimable = amountClaimableByAddress[userAddress]; } function addAdminAddress(address newAdminAddress) public onlyOwner { _admin.add(newAdminAddress); } function removeAdminAddress(address oldAdminAddress) public onlyOwner { _admin.remove(oldAdminAddress); } function burnWIP(uint256 WIPToBurn) public nonReentrant { _burn(msg.sender, WIPToBurn); emit BurnWIP(WIPToBurn.div(10**18)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BurnWIP","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"mintingAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MintWIP","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[],"name":"WIPHardCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newAdminAddress","type":"address"}],"name":"addAdminAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"newExpenses","type":"uint256"},{"internalType":"uint256","name":"newPromo","type":"uint256"},{"internalType":"uint256","name":"newCommunity","type":"uint256"}],"name":"adjustWeeklySplit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"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":[],"name":"backDropComplete","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"WIPToBurn","type":"uint256"}],"name":"burnWIP","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimWIPCoin","outputs":[],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[],"name":"expensesWeeklyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"userAddress","type":"address"}],"name":"getAmountClaimable","outputs":[{"internalType":"uint256","name":"amountClaimable","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getStats","outputs":[{"internalType":"uint256","name":"meetups","type":"uint256"},{"internalType":"uint256","name":"attendees","type":"uint256"},{"internalType":"uint256","name":"weeklyAttendees","type":"uint256"},{"internalType":"uint256","name":"circulatingSupply","type":"uint256"},{"internalType":"int256","name":"nextHalvingCountdown","type":"int256"},{"internalType":"int256","name":"nextTimeDelayEnding","type":"int256"},{"internalType":"uint256","name":"expensesPercent","type":"uint256"},{"internalType":"uint256","name":"promotionalPercent","type":"uint256"},{"internalType":"uint256","name":"communityPercent","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getWeeklyDistribution","outputs":[{"internalType":"uint256","name":"communityDistributionAmount","type":"uint256"},{"internalType":"uint256","name":"expensesDistributionAmount","type":"uint256"},{"internalType":"uint256","name":"promotionalDistributionAmount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"halvingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"halvingPeriodSeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"halvingTimeStamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":false,"inputs":[{"internalType":"address[]","name":"attendee","type":"address[]"},{"internalType":"uint256[]","name":"backDropAmount","type":"uint256[]"}],"name":"initialBackDrop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"numberOfAttendeesSet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"promoWeeklyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"attendee","type":"address[]"}],"name":"pushAddresses","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"oldAdminAddress","type":"address"}],"name":"removeAdminAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","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":"timerInitiated","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"numberOfAttendees","type":"uint256"}],"name":"updateNumberOfAttendees","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newPromoWeekly","type":"address"}],"name":"updatePromoWeekly","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newTeamWeekly","type":"address"}],"name":"updateTeamWeekly","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"weeklyCountFinalized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060016003556200002a6001600160e01b03620002b616565b600480546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3620000a97363a9dbce75413036b2b778e670aabd4493aaf9f3690cb49b44ba602d8000006001600160e01b03620002ba16565b620000dc73442dccee68425828c106a3662014b4f131e3bd9b690cb49b44ba602d8000006001600160e01b03620002ba16565b6200010f7381e5cd19323ce7f6b36c9511fbc98d477a188b13690cb49b44ba602d8000006001600160e01b03620002ba16565b6200014273c2f82a1f287b5b5aebff7c19e83e0a16cf3bd041690cb49b44ba602d8000006001600160e01b03620002ba16565b6200017573fd3be6f4d3e099eda7158db21d459794b25309f8690cb49b44ba602d8000006001600160e01b03620002ba16565b42600781905563012750000160095560006008556016600e556104df600f908155600a805462010000600160b81b0319167663a9dbce75413036b2b778e670aabd4493aaf9f3000000179055600b8054731082acf0f6c0728f80fae05741e6ecdef976c1816001600160a01b0319909116179055603c60125560196010556011556200022360057363a9dbce75413036b2b778e670aabd4493aaf9f362000373602090811b620013da17901c565b6200025273442dccee68425828c106a3662014b4f131e3bd9b60056200037360201b620013da1790919060201c565b620002817381e5cd19323ce7f6b36c9511fbc98d477a188b1360056200037360201b620013da1790919060201c565b620002b073c2f82a1f287b5b5aebff7c19e83e0a16cf3bd04160056200037360201b620013da1790919060201c565b62000483565b3390565b6001600160a01b038216620002ce57600080fd5b620002ea816002546200040060201b6200153b1790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200031d9183906200153b62000400821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6200038882826001600160e01b036200041a16565b15620003db576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000828201838110156200041357600080fd5b9392505050565b60006001600160a01b038216620004635760405162461bcd60e51b8152600401808060200182810382526022815260200180620020476022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b611bb480620004936000396000f3fe608060405234801561001057600080fd5b50600436106102315760003560e01c806370a0823111610130578063a9059cbb116100b8578063d2aa83ee1161007c578063d2aa83ee146107e9578063dd62ed3e146107f1578063eec430741461081f578063ef986e0514610827578063f2fde38b1461082f57610231565b8063a9059cbb1461069a578063c28c1328146106c6578063c59d484714610769578063cb27fa0c146107b8578063cd36c9f1146107e157610231565b80638da5cb5b116100ff5780638da5cb5b146106305780638f32d59b14610638578063951011811461064057806395d89b4114610666578063a457c2d71461066e57610231565b806370a08231146105d4578063715018a6146105fa578063764faf1c146106025780638b115d641461060a57610231565b8063384d5a9a116101be57806359ad09911161018257806359ad09911461057b5780636150fdba14610598578063630f2747146105a05780636869f4cc146105c45780636e9514c7146105cc57610231565b8063384d5a9a146103dd578063395093511461040357806343880b441461042f57806351e6551d14610556578063596b80cc1461055e57610231565b8063095ea7b311610205578063095ea7b31461032f5780630ce039091461035b57806318160ddd1461038157806323b872dd14610389578063313ce567146103bf57610231565b80624fba001461023657806306fdde031461025e5780630761b29e146102db57806307846413146102f7575b600080fd5b61025c6004803603602081101561024c57600080fd5b50356001600160a01b0316610855565b005b6102666108b0565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a0578181015183820152602001610288565b50505050905090810190601f1680156102cd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e36108d3565b604080519115158252519081900360200190f35b61031d6004803603602081101561030d57600080fd5b50356001600160a01b03166108e1565b60408051918252519081900360200190f35b6102e36004803603604081101561034557600080fd5b506001600160a01b0381351690602001356108fc565b61025c6004803603602081101561037157600080fd5b50356001600160a01b0316610979565b61031d6109e2565b6102e36004803603606081101561039f57600080fd5b506001600160a01b038135811691602081013590911690604001356109e8565b6103c7610ab1565b6040805160ff9092168252519081900360200190f35b6103e5610ab6565b60408051938452602084019290925282820152519081900360600190f35b6102e36004803603604081101561041957600080fd5b506001600160a01b038135169060200135610b16565b61025c6004803603604081101561044557600080fd5b81019060208101813564010000000081111561046057600080fd5b82018360208201111561047257600080fd5b8035906020019184602083028401116401000000008311171561049457600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092959493602081019350359150506401000000008111156104e457600080fd5b8201836020820111156104f657600080fd5b8035906020019184602083028401116401000000008311171561051857600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610bc4945050505050565b61031d610cf5565b61025c6004803603602081101561057457600080fd5b5035610cfc565b61025c6004803603602081101561059157600080fd5b5035610d6d565b61031d610def565b6105a8610df5565b604080516001600160a01b039092168252519081900360200190f35b61031d610e0b565b6102e3610e11565b61031d600480360360208110156105ea57600080fd5b50356001600160a01b0316610e20565b61025c610e3b565b61031d610ecc565b61025c6004803603602081101561062057600080fd5b50356001600160a01b0316610ed2565b6105a8610f45565b6102e3610f54565b61025c6004803603602081101561065657600080fd5b50356001600160a01b0316610f7a565b610266610fd2565b6102e36004803603604081101561068457600080fd5b506001600160a01b038135169060200135610ff2565b6102e3600480360360408110156106b057600080fd5b506001600160a01b03813516906020013561103b565b61025c600480360360208110156106dc57600080fd5b8101906020810181356401000000008111156106f757600080fd5b82018360208201111561070957600080fd5b8035906020019184602083028401116401000000008311171561072b57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611051945050505050565b6107716111b4565b60408051998a5260208a0198909852888801969096526060880194909452608087019290925260a086015260c085015260e084015261010083015251908190036101200190f35b61025c600480360360608110156107ce57600080fd5b50803590602081013590604001356111fc565b61025c611262565b6105a861133f565b61031d6004803603604081101561080757600080fd5b506001600160a01b038135811691602001351661134e565b61031d611379565b6102e3611381565b61025c6004803603602081101561084557600080fd5b50356001600160a01b031661138a565b61085d610f54565b61089c576040805162461bcd60e51b81526020600482018190526024820152600080516020611b3e833981519152604482015290519081900360640190fd5b6108ad60058263ffffffff6113da16565b50565b604051806040016040528060078152602001662ba4a831b7b4b760c91b81525081565b600a54610100900460ff1681565b6001600160a01b031660009081526006602052604090205490565b60006001600160a01b03831661091157600080fd5b3360008181526001602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b610981610f54565b6109c0576040805162461bcd60e51b81526020600482018190526024820152600080516020611b3e833981519152604482015290519081900360640190fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60025490565b6001600160a01b0383166000908152600160209081526040808320338452909152812054610a1c908363ffffffff61145b16565b6001600160a01b0385166000908152600160209081526040808320338452909152902055610a4b848484611470565b6001600160a01b0384166000818152600160209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b601281565b6008546000908190819060020a8181620f424081610ad057fe5b04662386f26fc100000290506064601254820281610aea57fe5b0494506064601054820281610afb57fe5b0493506064601154820281610b0c57fe5b0492505050909192565b60006001600160a01b038316610b2b57600080fd5b3360009081526001602090815260408083206001600160a01b0387168452909152902054610b5f908363ffffffff61153b16565b3360008181526001602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b610bcc610f54565b610c0b576040805162461bcd60e51b81526020600482018190526024820152600080516020611b3e833981519152604482015290519081900360640190fd5b6003805460010190819055600a5462010000900460ff1615610c2c57600080fd5b8151835114610c3a57600080fd5b60005b8351811015610cd057828181518110610c5257fe5b602002602001015160066000868481518110610c6a57fe5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020540160066000868481518110610ca457fe5b6020908102919091018101516001600160a01b0316825281019190915260400160002055600101610c3d565b50600a805462ff00001916620100001790556003548114610cf057600080fd5b505050565b620f424081565b6003805460010190819055610d113383611554565b7fe6ce5483b7e3ceb27e66e8a7c99f23ef348f21ab1f96d1f3f24e1cadd53320d2610d4a83670de0b6b3a764000063ffffffff6115fb16565b60408051918252519081900360200190a16003548114610d6957600080fd5b5050565b610d7e60053363ffffffff61161d16565b610db95760405162461bcd60e51b8152600401808060200182810382526033815260200180611aea6033913960400191505060405180910390fd5b6000610dc3611684565b1315610dce57600080fd5b600a805461ff001960ff19909116600117169055600d8190556108ad61168d565b60075481565b600a54630100000090046001600160a01b031681565b60085481565b600a5462010000900460ff1681565b6001600160a01b031660009081526020819052604090205490565b610e43610f54565b610e82576040805162461bcd60e51b81526020600482018190526024820152600080516020611b3e833981519152604482015290519081900360640190fd5b6004546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600480546001600160a01b0319169055565b60095481565b610eda610f54565b610f19576040805162461bcd60e51b81526020600482018190526024820152600080516020611b3e833981519152604482015290519081900360640190fd5b600a80546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b6004546001600160a01b031690565b6004546000906001600160a01b0316610f6b6116bd565b6001600160a01b031614905090565b610f82610f54565b610fc1576040805162461bcd60e51b81526020600482018190526024820152600080516020611b3e833981519152604482015290519081900360640190fd5b6108ad60058263ffffffff6116c116565b604051806040016040528060048152602001635749504360e01b81525081565b60006001600160a01b03831661100757600080fd5b3360009081526001602090815260408083206001600160a01b0387168452909152902054610b5f908363ffffffff61145b16565b6000611048338484611470565b50600192915050565b600380546001019081905561106d60053363ffffffff61161d16565b6110a85760405162461bcd60e51b8152600401808060200182810382526030815260200180611a946030913960400191505060405180910390fd5b60006110b2611728565b12156110bd57600080fd5b63012750006110ca611728565b13156110d557600080fd5b600a5460ff1615156001146110e957600080fd5b8151600d54146110f857600080fd5b6000611102610ab6565b5050600d54909150600090828161111557fe5b04905060005b845181101561119b57816006600087848151811061113557fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002054016006600087848151811061116f57fe5b6020908102919091018101516001600160a01b031682528101919091526040016000205560010161111b565b506111a4611731565b50506003548114610d6957600080fd5b600e54600f54600d54600080808080806111cc611768565b95506111d6611728565b94506111e0611684565b9350601054925060115491506012549050909192939495969798565b611204610f54565b611243576040805162461bcd60e51b81526020600482018190526024820152600080516020611b3e833981519152604482015290519081900360640190fd5b808284010160641461125457600080fd5b601092909255601155601255565b60038054600190810191829055600a54610100900460ff1615151461128657600080fd5b33600090815260066020526040812080549190556112b5620f4240670de0b6b3a764000063ffffffff61178f16565b816112be611768565b0111156112ca57600080fd5b6112d433826117b6565b7f255f5da01648c22b9efef4a37f426494110e67082c909f2e1d5afba0540716db3361130e83670de0b6b3a764000063ffffffff6115fb16565b604080516001600160a01b03909316835260208301919091528051918290030190a15060035481146108ad57600080fd5b600b546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b630127500081565b600a5460ff1681565b611392610f54565b6113d1576040805162461bcd60e51b81526020600482018190526024820152600080516020611b3e833981519152604482015290519081900360640190fd5b6108ad8161185e565b6113e4828261161d565b15611436576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60008282111561146a57600080fd5b50900390565b6001600160a01b03821661148357600080fd5b6001600160a01b0383166000908152602081905260409020546114ac908263ffffffff61145b16565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546114e1908263ffffffff61153b16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282018381101561154d57600080fd5b9392505050565b6001600160a01b03821661156757600080fd5b60025461157a908263ffffffff61145b16565b6002556001600160a01b0382166000908152602081905260409020546115a6908263ffffffff61145b16565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600080821161160957600080fd5b600082848161161457fe5b04949350505050565b60006001600160a01b0382166116645760405162461bcd60e51b8152600401808060200182810382526022815260200180611b5e6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b600c5442900390565b6000611697611728565b136116a6576008805460010190555b600854600754600190910163012750000201600955565b3390565b6116cb828261161d565b6117065760405162461bcd60e51b8152600401808060200182810382526021815260200180611b1d6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60095442900390565b600a805461ffff1916610100179055600e80546001019055600d54600f805490910190556207e9004201600c556117666118ff565b565b600061178a670de0b6b3a764000061177e6109e2565b9063ffffffff6115fb16565b905090565b60008261179e57506000610973565b828202828482816117ab57fe5b041461154d57600080fd5b6001600160a01b0382166117c957600080fd5b6002546117dc908263ffffffff61153b16565b6002556001600160a01b038216600090815260208190526040902054611808908263ffffffff61153b16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0381166118a35760405162461bcd60e51b8152600401808060200182810382526026815260200180611ac46026913960400191505060405180910390fd5b6004546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546001600160a01b0319166001600160a01b0392909216919091179055565b600a5460ff61010090910416151560011461191957600080fd5b600080611924610ab6565b90935091506119469050620f4240670de0b6b3a764000063ffffffff61178f16565b8261194f611768565b01111561195b57600080fd5b600a5461197890630100000090046001600160a01b0316836117b6565b600a547f255f5da01648c22b9efef4a37f426494110e67082c909f2e1d5afba0540716db90630100000090046001600160a01b03166119bf84670de0b6b3a76400006115fb565b604080516001600160a01b03909316835260208301919091528051918290030190a16119fc620f4240670de0b6b3a764000063ffffffff61178f16565b81611a05611768565b011115611a1157600080fd5b600b54611a27906001600160a01b0316826117b6565b600b547f255f5da01648c22b9efef4a37f426494110e67082c909f2e1d5afba0540716db906001600160a01b0316611a6d83670de0b6b3a764000063ffffffff6115fb16565b604080516001600160a01b03909316835260208301919091528051918290030190a1505056fe4f6e6c79206f6666696369616c2061646d696e2063616e207075736820617474656e646565206164647265737365732e4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f6e6c79206f6666696369616c2061646d696e2063616e20757064617465206e756d626572206f6620617474656e646565732e526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373a265627a7a72315820e8a96e2ffe972c18b74a6a54bbf985af5a60f86086432b42c42759bfde9720d064736f6c634300050e0032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102315760003560e01c806370a0823111610130578063a9059cbb116100b8578063d2aa83ee1161007c578063d2aa83ee146107e9578063dd62ed3e146107f1578063eec430741461081f578063ef986e0514610827578063f2fde38b1461082f57610231565b8063a9059cbb1461069a578063c28c1328146106c6578063c59d484714610769578063cb27fa0c146107b8578063cd36c9f1146107e157610231565b80638da5cb5b116100ff5780638da5cb5b146106305780638f32d59b14610638578063951011811461064057806395d89b4114610666578063a457c2d71461066e57610231565b806370a08231146105d4578063715018a6146105fa578063764faf1c146106025780638b115d641461060a57610231565b8063384d5a9a116101be57806359ad09911161018257806359ad09911461057b5780636150fdba14610598578063630f2747146105a05780636869f4cc146105c45780636e9514c7146105cc57610231565b8063384d5a9a146103dd578063395093511461040357806343880b441461042f57806351e6551d14610556578063596b80cc1461055e57610231565b8063095ea7b311610205578063095ea7b31461032f5780630ce039091461035b57806318160ddd1461038157806323b872dd14610389578063313ce567146103bf57610231565b80624fba001461023657806306fdde031461025e5780630761b29e146102db57806307846413146102f7575b600080fd5b61025c6004803603602081101561024c57600080fd5b50356001600160a01b0316610855565b005b6102666108b0565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a0578181015183820152602001610288565b50505050905090810190601f1680156102cd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e36108d3565b604080519115158252519081900360200190f35b61031d6004803603602081101561030d57600080fd5b50356001600160a01b03166108e1565b60408051918252519081900360200190f35b6102e36004803603604081101561034557600080fd5b506001600160a01b0381351690602001356108fc565b61025c6004803603602081101561037157600080fd5b50356001600160a01b0316610979565b61031d6109e2565b6102e36004803603606081101561039f57600080fd5b506001600160a01b038135811691602081013590911690604001356109e8565b6103c7610ab1565b6040805160ff9092168252519081900360200190f35b6103e5610ab6565b60408051938452602084019290925282820152519081900360600190f35b6102e36004803603604081101561041957600080fd5b506001600160a01b038135169060200135610b16565b61025c6004803603604081101561044557600080fd5b81019060208101813564010000000081111561046057600080fd5b82018360208201111561047257600080fd5b8035906020019184602083028401116401000000008311171561049457600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092959493602081019350359150506401000000008111156104e457600080fd5b8201836020820111156104f657600080fd5b8035906020019184602083028401116401000000008311171561051857600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610bc4945050505050565b61031d610cf5565b61025c6004803603602081101561057457600080fd5b5035610cfc565b61025c6004803603602081101561059157600080fd5b5035610d6d565b61031d610def565b6105a8610df5565b604080516001600160a01b039092168252519081900360200190f35b61031d610e0b565b6102e3610e11565b61031d600480360360208110156105ea57600080fd5b50356001600160a01b0316610e20565b61025c610e3b565b61031d610ecc565b61025c6004803603602081101561062057600080fd5b50356001600160a01b0316610ed2565b6105a8610f45565b6102e3610f54565b61025c6004803603602081101561065657600080fd5b50356001600160a01b0316610f7a565b610266610fd2565b6102e36004803603604081101561068457600080fd5b506001600160a01b038135169060200135610ff2565b6102e3600480360360408110156106b057600080fd5b506001600160a01b03813516906020013561103b565b61025c600480360360208110156106dc57600080fd5b8101906020810181356401000000008111156106f757600080fd5b82018360208201111561070957600080fd5b8035906020019184602083028401116401000000008311171561072b57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611051945050505050565b6107716111b4565b60408051998a5260208a0198909852888801969096526060880194909452608087019290925260a086015260c085015260e084015261010083015251908190036101200190f35b61025c600480360360608110156107ce57600080fd5b50803590602081013590604001356111fc565b61025c611262565b6105a861133f565b61031d6004803603604081101561080757600080fd5b506001600160a01b038135811691602001351661134e565b61031d611379565b6102e3611381565b61025c6004803603602081101561084557600080fd5b50356001600160a01b031661138a565b61085d610f54565b61089c576040805162461bcd60e51b81526020600482018190526024820152600080516020611b3e833981519152604482015290519081900360640190fd5b6108ad60058263ffffffff6113da16565b50565b604051806040016040528060078152602001662ba4a831b7b4b760c91b81525081565b600a54610100900460ff1681565b6001600160a01b031660009081526006602052604090205490565b60006001600160a01b03831661091157600080fd5b3360008181526001602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b610981610f54565b6109c0576040805162461bcd60e51b81526020600482018190526024820152600080516020611b3e833981519152604482015290519081900360640190fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60025490565b6001600160a01b0383166000908152600160209081526040808320338452909152812054610a1c908363ffffffff61145b16565b6001600160a01b0385166000908152600160209081526040808320338452909152902055610a4b848484611470565b6001600160a01b0384166000818152600160209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b601281565b6008546000908190819060020a8181620f424081610ad057fe5b04662386f26fc100000290506064601254820281610aea57fe5b0494506064601054820281610afb57fe5b0493506064601154820281610b0c57fe5b0492505050909192565b60006001600160a01b038316610b2b57600080fd5b3360009081526001602090815260408083206001600160a01b0387168452909152902054610b5f908363ffffffff61153b16565b3360008181526001602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b610bcc610f54565b610c0b576040805162461bcd60e51b81526020600482018190526024820152600080516020611b3e833981519152604482015290519081900360640190fd5b6003805460010190819055600a5462010000900460ff1615610c2c57600080fd5b8151835114610c3a57600080fd5b60005b8351811015610cd057828181518110610c5257fe5b602002602001015160066000868481518110610c6a57fe5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020540160066000868481518110610ca457fe5b6020908102919091018101516001600160a01b0316825281019190915260400160002055600101610c3d565b50600a805462ff00001916620100001790556003548114610cf057600080fd5b505050565b620f424081565b6003805460010190819055610d113383611554565b7fe6ce5483b7e3ceb27e66e8a7c99f23ef348f21ab1f96d1f3f24e1cadd53320d2610d4a83670de0b6b3a764000063ffffffff6115fb16565b60408051918252519081900360200190a16003548114610d6957600080fd5b5050565b610d7e60053363ffffffff61161d16565b610db95760405162461bcd60e51b8152600401808060200182810382526033815260200180611aea6033913960400191505060405180910390fd5b6000610dc3611684565b1315610dce57600080fd5b600a805461ff001960ff19909116600117169055600d8190556108ad61168d565b60075481565b600a54630100000090046001600160a01b031681565b60085481565b600a5462010000900460ff1681565b6001600160a01b031660009081526020819052604090205490565b610e43610f54565b610e82576040805162461bcd60e51b81526020600482018190526024820152600080516020611b3e833981519152604482015290519081900360640190fd5b6004546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600480546001600160a01b0319169055565b60095481565b610eda610f54565b610f19576040805162461bcd60e51b81526020600482018190526024820152600080516020611b3e833981519152604482015290519081900360640190fd5b600a80546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b6004546001600160a01b031690565b6004546000906001600160a01b0316610f6b6116bd565b6001600160a01b031614905090565b610f82610f54565b610fc1576040805162461bcd60e51b81526020600482018190526024820152600080516020611b3e833981519152604482015290519081900360640190fd5b6108ad60058263ffffffff6116c116565b604051806040016040528060048152602001635749504360e01b81525081565b60006001600160a01b03831661100757600080fd5b3360009081526001602090815260408083206001600160a01b0387168452909152902054610b5f908363ffffffff61145b16565b6000611048338484611470565b50600192915050565b600380546001019081905561106d60053363ffffffff61161d16565b6110a85760405162461bcd60e51b8152600401808060200182810382526030815260200180611a946030913960400191505060405180910390fd5b60006110b2611728565b12156110bd57600080fd5b63012750006110ca611728565b13156110d557600080fd5b600a5460ff1615156001146110e957600080fd5b8151600d54146110f857600080fd5b6000611102610ab6565b5050600d54909150600090828161111557fe5b04905060005b845181101561119b57816006600087848151811061113557fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002054016006600087848151811061116f57fe5b6020908102919091018101516001600160a01b031682528101919091526040016000205560010161111b565b506111a4611731565b50506003548114610d6957600080fd5b600e54600f54600d54600080808080806111cc611768565b95506111d6611728565b94506111e0611684565b9350601054925060115491506012549050909192939495969798565b611204610f54565b611243576040805162461bcd60e51b81526020600482018190526024820152600080516020611b3e833981519152604482015290519081900360640190fd5b808284010160641461125457600080fd5b601092909255601155601255565b60038054600190810191829055600a54610100900460ff1615151461128657600080fd5b33600090815260066020526040812080549190556112b5620f4240670de0b6b3a764000063ffffffff61178f16565b816112be611768565b0111156112ca57600080fd5b6112d433826117b6565b7f255f5da01648c22b9efef4a37f426494110e67082c909f2e1d5afba0540716db3361130e83670de0b6b3a764000063ffffffff6115fb16565b604080516001600160a01b03909316835260208301919091528051918290030190a15060035481146108ad57600080fd5b600b546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b630127500081565b600a5460ff1681565b611392610f54565b6113d1576040805162461bcd60e51b81526020600482018190526024820152600080516020611b3e833981519152604482015290519081900360640190fd5b6108ad8161185e565b6113e4828261161d565b15611436576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60008282111561146a57600080fd5b50900390565b6001600160a01b03821661148357600080fd5b6001600160a01b0383166000908152602081905260409020546114ac908263ffffffff61145b16565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546114e1908263ffffffff61153b16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282018381101561154d57600080fd5b9392505050565b6001600160a01b03821661156757600080fd5b60025461157a908263ffffffff61145b16565b6002556001600160a01b0382166000908152602081905260409020546115a6908263ffffffff61145b16565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600080821161160957600080fd5b600082848161161457fe5b04949350505050565b60006001600160a01b0382166116645760405162461bcd60e51b8152600401808060200182810382526022815260200180611b5e6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b600c5442900390565b6000611697611728565b136116a6576008805460010190555b600854600754600190910163012750000201600955565b3390565b6116cb828261161d565b6117065760405162461bcd60e51b8152600401808060200182810382526021815260200180611b1d6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60095442900390565b600a805461ffff1916610100179055600e80546001019055600d54600f805490910190556207e9004201600c556117666118ff565b565b600061178a670de0b6b3a764000061177e6109e2565b9063ffffffff6115fb16565b905090565b60008261179e57506000610973565b828202828482816117ab57fe5b041461154d57600080fd5b6001600160a01b0382166117c957600080fd5b6002546117dc908263ffffffff61153b16565b6002556001600160a01b038216600090815260208190526040902054611808908263ffffffff61153b16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0381166118a35760405162461bcd60e51b8152600401808060200182810382526026815260200180611ac46026913960400191505060405180910390fd5b6004546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546001600160a01b0319166001600160a01b0392909216919091179055565b600a5460ff61010090910416151560011461191957600080fd5b600080611924610ab6565b90935091506119469050620f4240670de0b6b3a764000063ffffffff61178f16565b8261194f611768565b01111561195b57600080fd5b600a5461197890630100000090046001600160a01b0316836117b6565b600a547f255f5da01648c22b9efef4a37f426494110e67082c909f2e1d5afba0540716db90630100000090046001600160a01b03166119bf84670de0b6b3a76400006115fb565b604080516001600160a01b03909316835260208301919091528051918290030190a16119fc620f4240670de0b6b3a764000063ffffffff61178f16565b81611a05611768565b011115611a1157600080fd5b600b54611a27906001600160a01b0316826117b6565b600b547f255f5da01648c22b9efef4a37f426494110e67082c909f2e1d5afba0540716db906001600160a01b0316611a6d83670de0b6b3a764000063ffffffff6115fb16565b604080516001600160a01b03909316835260208301919091528051918290030190a1505056fe4f6e6c79206f6666696369616c2061646d696e2063616e207075736820617474656e646565206164647265737365732e4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f6e6c79206f6666696369616c2061646d696e2063616e20757064617465206e756d626572206f6620617474656e646565732e526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373a265627a7a72315820e8a96e2ffe972c18b74a6a54bbf985af5a60f86086432b42c42759bfde9720d064736f6c634300050e0032
Deployed Bytecode Sourcemap
16156:8720:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16156:8720:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24460:113;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24460:113:0;-1:-1:-1;;;;;24460:113:0;;:::i;:::-;;16529:39;;;:::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;16529:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16880:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;24279:169;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24279:169:0;-1:-1:-1;;;;;24279:169:0;;:::i;:::-;;;;;;;;;;;;;;;;9049:244;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9049:244:0;;;;;;;;:::i;23135:122::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23135:122:0;-1:-1:-1;;;;;23135:122:0;;:::i;7208:91::-;;;:::i;9766:299::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9766:299:0;;;;;;;;;;;;;;;;;:::i;16487:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18439:561;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;10580:323;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10580:323:0;;;;;;;;:::i;20810:460::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20810:460:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;20810:460:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;20810:460:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;20810:460:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;20810:460:0;;;;;;;;-1:-1:-1;20810:460:0;;-1:-1:-1;;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;20810:460:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;20810:460:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;20810:460:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;20810:460:0;;-1:-1:-1;20810:460:0;;-1:-1:-1;;;;;20810:460:0:i;16620:44::-;;;:::i;24716:153::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24716:153:0;;:::i;19566:395::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19566:395:0;;:::i;16671:29::-;;;:::i;16960:36::-;;;:::i;:::-;;;;-1:-1:-1;;;;;16960:36:0;;;;;;;;;;;;;;16707:27;;;:::i;16919:28::-;;;:::i;7515:106::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7515:106:0;-1:-1:-1;;;;;7515:106:0;;:::i;2928:140::-;;;:::i;16741:31::-;;;:::i;23005:122::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23005:122:0;-1:-1:-1;;;;;23005:122:0;;:::i;2117:79::-;;;:::i;2483:94::-;;;:::i;24585:119::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24585:119:0;-1:-1:-1;;;;;24585:119:0;;:::i;16575:38::-;;;:::i;11423:333::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11423:333:0;;;;;;;;:::i;8262:140::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8262:140:0;;;;;;;;:::i;19969:829::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19969:829:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;19969:829:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;19969:829:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;19969:829:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;19969:829:0;;-1:-1:-1;19969:829:0;;-1:-1:-1;;;;;19969:829:0:i;23584:683::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23269:303;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23269:303:0;;;;;;;;;;;;:::i;21797:428::-;;;:::i;17003:33::-;;;:::i;7960:131::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7960:131:0;;;;;;;;;;:::i;16779:55::-;;;:::i;16841:32::-;;;:::i;3223:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3223:109:0;-1:-1:-1;;;;;3223:109:0;;:::i;24460:113::-;2329:9;:7;:9::i;:::-;2321:54;;;;;-1:-1:-1;;;2321:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2321:54:0;;;;;;;;;;;;;;;24538:27;:6;24549:15;24538:27;:10;:27;:::i;:::-;24460:113;:::o;16529:39::-;;;;;;;;;;;;;;-1:-1:-1;;;16529:39:0;;;;:::o;16880:32::-;;;;;;;;;:::o;24279:169::-;-1:-1:-1;;;;;24403:37:0;24349:23;24403:37;;;:24;:37;;;;;;;24279:169::o;9049:244::-;9114:4;-1:-1:-1;;;;;9139:21:0;;9131:30;;;;;;9183:10;9174:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9174:29:0;;;;;;;;;;;;:37;;;9227:36;;;;;;;9174:29;;9183:10;9227:36;;;;;;;;;;;-1:-1:-1;9281:4:0;9049:244;;;;;:::o;23135:122::-;2329:9;:7;:9::i;:::-;2321:54;;;;;-1:-1:-1;;;2321:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2321:54:0;;;;;;;;;;;;;;;23214:18;:35;;-1:-1:-1;;;;;;23214:35:0;-1:-1:-1;;;;;23214:35:0;;;;;;;;;;23135:122::o;7208:91::-;7279:12;;7208:91;:::o;9766:299::-;-1:-1:-1;;;;;9891:14:0;;9845:4;9891:14;;;:8;:14;;;;;;;;9906:10;9891:26;;;;;;;;:37;;9922:5;9891:37;:30;:37;:::i;:::-;-1:-1:-1;;;;;9862:14:0;;;;;;:8;:14;;;;;;;;9877:10;9862:26;;;;;;;:66;9939:26;9871:4;9955:2;9959:5;9939:9;:26::i;:::-;-1:-1:-1;;;;;9981:54:0;;10008:14;;;;:8;:14;;;;;;;;9996:10;10008:26;;;;;;;;;;;9981:54;;;;;;;9996:10;;9981:54;;;;;;;;;;;;-1:-1:-1;10053:4:0;9766:299;;;;;:::o;16487:35::-;16520:2;16487:35;:::o;18439:561::-;18642:12;;18493:35;;;;;;18639:1;:15;18493:35;18639:15;16657:7;18639:15;18699:25;;;;;18725:6;18699:32;18665:66;;18821:3;18806:14;;18782:23;:38;:42;;;;;;18752:72;;18902:3;18888:13;;18864:23;:37;:41;;;;;;18835:70;;18989:3;18972:16;;18948:23;:40;:44;;;;;;18916:76;;18439:561;;;;;:::o;10580:323::-;10660:4;-1:-1:-1;;;;;10685:21:0;;10677:30;;;;;;10761:10;10752:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;10752:29:0;;;;;;;;;;:45;;10786:10;10752:45;:33;:45;:::i;:::-;10729:10;10720:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;10720:29:0;;;;;;;;;;;;:77;;;10813:60;;;;;;10720:29;;10813:60;;;;;;;;;;;-1:-1:-1;10891:4:0;10580:323;;;;:::o;20810:460::-;2329:9;:7;:9::i;:::-;2321:54;;;;;-1:-1:-1;;;2321:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2321:54:0;;;;;;;;;;;;;;;15020:13;:18;;15037:1;15020:18;;;;;20944:16;;;;;;;:25;20936:34;;;;;;21008:14;:21;20989:8;:15;:40;20981:49;;;;;;21055:9;21051:168;21074:8;:15;21070:1;:19;21051:168;;;21190:14;21205:1;21190:17;;;;;;;;;;;;;;21150:24;:37;21175:8;21184:1;21175:11;;;;;;;;;;;;;;-1:-1:-1;;;;;21150:37:0;-1:-1:-1;;;;;21150:37:0;;;;;;;;;;;;;:57;21110:24;:37;21135:8;21144:1;21135:11;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21110:37:0;;;;;;;;;;;-1:-1:-1;21110:37:0;:97;21091:3;;21051:168;;;-1:-1:-1;21239:16:0;:23;;-1:-1:-1;;21239:23:0;;;;;15132:13;;15116:29;;15108:38;;;;;;2386:1;20810:460;;:::o;16620:44::-;16657:7;16620:44;:::o;24716:153::-;15020:13;:18;;15037:1;15020:18;;;;;24783:28;24789:10;24801:9;24783:5;:28::i;:::-;24827:30;24835:21;:9;24849:6;24835:21;:13;:21;:::i;:::-;24827:30;;;;;;;;;;;;;;;15132:13;;15116:12;:29;15108:38;;;;;;24716:153;;:::o;19566:395::-;19652:22;:6;19663:10;19652:22;:10;:22;:::i;:::-;19644:86;;;;-1:-1:-1;;;19644:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19773:1;19750:19;:17;:19::i;:::-;:24;;19741:34;;;;;;19796:20;:27;;-1:-1:-1;;;;19796:27:0;;;19819:4;19796:27;19834:28;;;19873:18;:38;;;19933:20;:18;:20::i;16671:29::-;;;;:::o;16960:36::-;;;;;;-1:-1:-1;;;;;16960:36:0;;:::o;16707:27::-;;;;:::o;16919:28::-;;;;;;;;;:::o;7515:106::-;-1:-1:-1;;;;;7597:16:0;7570:7;7597:16;;;;;;;;;;;;7515:106::o;2928:140::-;2329:9;:7;:9::i;:::-;2321:54;;;;;-1:-1:-1;;;2321:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2321:54:0;;;;;;;;;;;;;;;3011:6;;2990:40;;3027:1;;-1:-1:-1;;;;;3011:6:0;;2990:40;;3027:1;;2990:40;3041:6;:19;;-1:-1:-1;;;;;;3041:19:0;;;2928:140::o;16741:31::-;;;;:::o;23005:122::-;2329:9;:7;:9::i;:::-;2321:54;;;;;-1:-1:-1;;;2321:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2321:54:0;;;;;;;;;;;;;;;23082:21;:37;;-1:-1:-1;;;;;23082:37:0;;;;;-1:-1:-1;;;;;;23082:37:0;;;;;;;;;23005:122::o;2117:79::-;2182:6;;-1:-1:-1;;;;;2182:6:0;2117:79;:::o;2483:94::-;2563:6;;2523:4;;-1:-1:-1;;;;;2563:6:0;2547:12;:10;:12::i;:::-;-1:-1:-1;;;;;2547:22:0;;2540:29;;2483:94;:::o;24585:119::-;2329:9;:7;:9::i;:::-;2321:54;;;;;-1:-1:-1;;;2321:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2321:54:0;;;;;;;;;;;;;;;24666:30;:6;24680:15;24666:30;:13;:30;:::i;16575:38::-;;;;;;;;;;;;;;-1:-1:-1;;;16575:38:0;;;;:::o;11423:333::-;11508:4;-1:-1:-1;;;;;11533:21:0;;11525:30;;;;;;11609:10;11600:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;11600:29:0;;;;;;;;;;:50;;11634:15;11600:50;:33;:50;:::i;8262:140::-;8323:4;8340:32;8350:10;8362:2;8366:5;8340:9;:32::i;:::-;-1:-1:-1;8390:4:0;8262:140;;;;:::o;19969:829::-;15020:13;:18;;15037:1;15020:18;;;;;20058:22;:6;20069:10;20058:22;:10;:22;:::i;:::-;20050:83;;;;-1:-1:-1;;;20050:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20178:1;20152:22;:20;:22::i;:::-;:27;;20144:36;;;;;;16826:8;20199:22;:20;:22::i;:::-;:54;;20191:63;;;;;;20283:20;;;;:28;;:20;:28;20275:37;;;;;;20353:8;:15;20331:18;;:37;20323:46;;;;;;20390:25;20450:23;:21;:23::i;:::-;-1:-1:-1;;20544:18:0;;20426:47;;-1:-1:-1;20494:29:0;;20426:47;20544:18;20526:36;;;;;;-1:-1:-1;20577:9:0;20573:172;20596:8;:15;20592:1;:19;20573:172;;;20712:21;20672:24;:37;20697:8;20706:1;20697:11;;;;;;;;;;;;;;-1:-1:-1;;;;;20672:37:0;-1:-1:-1;;;;;20672:37:0;;;;;;;;;;;;;:61;20632:24;:37;20657:8;20666:1;20657:11;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20632:37:0;;;;;;;;;;;-1:-1:-1;20632:37:0;:101;20613:3;;20573:172;;;;20765:25;:23;:25::i;:::-;15096:1;;15132:13;;15116:12;:29;15108:38;;;;;23584:683;23870:12;;23906:14;;23949:18;;23625:15;;;;;;23998:19;:17;:19::i;:::-;23978:39;;24051:22;:20;:22::i;:::-;24028:45;;24106:19;:17;:19::i;:::-;24084:41;;24154:13;;24136:31;;24199:16;;24178:37;;24245:14;;24226:33;;23584:683;;;;;;;;;:::o;23269:303::-;2329:9;:7;:9::i;:::-;2321:54;;;;;-1:-1:-1;;;2321:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2321:54:0;;;;;;;;;;;;;;;23418:12;23407:8;23393:11;:22;:37;23434:3;23393:44;23385:53;;;;;;23459:13;:27;;;;23497:16;:27;23535:14;:29;23269:303::o;21797:428::-;15020:13;:18;;15037:1;15020:18;;;;;;;21860:20;;;;;;;:28;;;21852:37;;;;;;21949:10;21900:21;21924:36;;;:24;:36;;;;;;;21971:40;;;22079:22;16657:7;22094:6;22079:22;:14;:22;:::i;:::-;22062:13;22040:19;:17;:19::i;:::-;:35;:61;;22032:70;;;;;;22123:32;22129:10;22141:13;22123:5;:32::i;:::-;22171:46;22179:10;22191:25;:13;22209:6;22191:25;:17;:25;:::i;:::-;22171:46;;;-1:-1:-1;;;;;22171:46:0;;;;;;;;;;;;;;;;;;;;;15096:1;15132:13;;15116:12;:29;15108:38;;;;;17003:33;;;-1:-1:-1;;;;;17003:33:0;;:::o;7960:131::-;-1:-1:-1;;;;;8059:15:0;;;8032:7;8059:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;7960:131::o;16779:55::-;16826:8;16779:55;:::o;16841:32::-;;;;;;:::o;3223:109::-;2329:9;:7;:9::i;:::-;2321:54;;;;;-1:-1:-1;;;2321:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2321:54:0;;;;;;;;;;;;;;;3296:28;3315:8;3296:18;:28::i;15408:178::-;15486:18;15490:4;15496:7;15486:3;:18::i;:::-;15485:19;15477:63;;;;;-1:-1:-1;;;15477:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15551:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;15551:27:0;15574:4;15551:27;;;15408:178::o;5654:150::-;5712:7;5745:1;5740;:6;;5732:15;;;;;;-1:-1:-1;5770:5:0;;;5654:150::o;11978:262::-;-1:-1:-1;;;;;12066:16:0;;12058:25;;;;;;-1:-1:-1;;;;;12114:15:0;;:9;:15;;;;;;;;;;;:26;;12134:5;12114:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;12096:15:0;;;:9;:15;;;;;;;;;;;:44;;;;12167:13;;;;;;;:24;;12185:5;12167:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;12151:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;12207:25;;;;;;;12151:13;;12207:25;;;;;;;;;;;;;11978:262;;;:::o;5890:150::-;5948:7;5980:5;;;6004:6;;;;5996:15;;;;;;6031:1;5890:150;-1:-1:-1;;;5890:150:0:o;13095:269::-;-1:-1:-1;;;;;13170:21:0;;13162:30;;;;;;13220:12;;:23;;13237:5;13220:23;:16;:23;:::i;:::-;13205:12;:38;-1:-1:-1;;;;;13275:18:0;;:9;:18;;;;;;;;;;;:29;;13298:5;13275:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;13254:18:0;;:9;:18;;;;;;;;;;;:50;;;;13320:36;;;;;;;13254:9;;13320:36;;;;;;;;;;;13095:269;;:::o;5215:303::-;5273:7;5372:1;5368;:5;5360:14;;;;;;5385:9;5401:1;5397;:5;;;;;;;5215:303;-1:-1:-1;;;;5215:303:0:o;15944:203::-;16016:4;-1:-1:-1;;;;;16041:21:0;;16033:68;;;;-1:-1:-1;;;16033:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16119:20:0;:11;:20;;;;;;;;;;;;;;;15944:203::o;21640:149::-;21748:14;;21765:15;21748:32;;;21640:149::o;19153:237::-;19232:1;19206:22;:20;:22::i;:::-;:27;19202:91;;19265:12;;;19280:1;19265:16;19250:31;;19202:91;19341:12;;19322:14;;19356:1;19341:16;;;16826:8;19340:41;19322:60;19303:16;:79;19153:237::o;878:98::-;958:10;878:98;:::o;15666:183::-;15746:18;15750:4;15756:7;15746:3;:18::i;:::-;15738:64;;;;-1:-1:-1;;;15738:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15813:20:0;15836:5;15813:20;;;;;;;;;;;:28;;-1:-1:-1;;15813:28:0;;;15666:183::o;19398:160::-;19515:16;;19534:15;19515:34;;;19398:160::o;21278:350::-;21332:20;:28;;-1:-1:-1;;21371:27:0;21332:28;21371:27;;;21424:12;;;21332:28;21424:16;21409:31;;21485:18;;21468:14;;;:35;;;21451:52;;21549:6;21531:15;:24;21514:14;:41;21603:17;:15;:17::i;:::-;21278:350::o;19008:137::-;19059:22;19111:25;19129:6;19111:13;:11;:13::i;:::-;:17;:25;:17;:25;:::i;:::-;19094:42;;19008:137;:::o;4649:433::-;4707:7;4951:6;4947:47;;-1:-1:-1;4981:1:0;4974:8;;4947:47;5018:5;;;5022:1;5018;:5;:1;5042:5;;;;;:10;5034:19;;;;;12592:269;-1:-1:-1;;;;;12667:21:0;;12659:30;;;;;;12717:12;;:23;;12734:5;12717:23;:16;:23;:::i;:::-;12702:12;:38;-1:-1:-1;;;;;12772:18:0;;:9;:18;;;;;;;;;;;:29;;12795:5;12772:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;12751:18:0;;:9;:18;;;;;;;;;;;:50;;;;12817:36;;;;;;;12751:18;;:9;;12817:36;;;;;;;;;;12592:269;;:::o;3438:229::-;-1:-1:-1;;;;;3512:22:0;;3504:73;;;;-1:-1:-1;;;3504:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3614:6;;3593:38;;-1:-1:-1;;;;;3593:38:0;;;;3614:6;;3593:38;;3614:6;;3593:38;3642:6;:17;;-1:-1:-1;;;;;;3642:17:0;-1:-1:-1;;;;;3642:17:0;;;;;;;;;;3438:229::o;22237:756::-;22291:20;;;;;;;;:28;;:20;:28;22283:37;;;;;;22341:28;22380:31;22473:23;:21;:23::i;:::-;22422:74;;-1:-1:-1;22422:74:0;-1:-1:-1;22571:22:0;;-1:-1:-1;16657:7:0;22586:6;22571:22;:14;:22;:::i;:::-;22547:20;22525:19;:17;:19::i;:::-;:42;:68;;22517:77;;;;;;22611:21;;22605:50;;22611:21;;;-1:-1:-1;;;;;22611:21:0;22634:20;22605:5;:50::i;:::-;22679:21;;22671:64;;22679:21;;;-1:-1:-1;;;;;22679:21:0;22702:32;:20;22727:6;22702:24;:32::i;:::-;22671:64;;;-1:-1:-1;;;;;22671:64:0;;;;;;;;;;;;;;;;;;;;;22813:22;16657:7;22828:6;22813:22;:14;:22;:::i;:::-;22786:23;22764:19;:17;:19::i;:::-;:45;:71;;22756:80;;;;;;22853:18;;22847:50;;-1:-1:-1;;;;;22853:18:0;22873:23;22847:5;:50::i;:::-;22921:18;;22913:64;;-1:-1:-1;;;;;22921:18:0;22941:35;:23;22969:6;22941:35;:27;:35;:::i;:::-;22913:64;;;-1:-1:-1;;;;;22913:64:0;;;;;;;;;;;;;;;;;;;;;22237:756;;:::o
Swarm Source
bzzr://e8a96e2ffe972c18b74a6a54bbf985af5a60f86086432b42c42759bfde9720d0
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.