Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
42,171,814,100.697805739360377893 WWWJ
Holders
9
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 Source Code Verified (Exact Match)
Contract Name:
WWWojak
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /* ───────▄▀▀▀▀▀▀▀▀▀▀▄▄ ────▄▀▀░░░░░░░░░░░░░▀▄ ──▄▀░░░░░░░░░░░░░░░░░░▀▄ ──█░░░░░░░░░░░░░░░░░░░░░▀▄ ─▐▌░░░░░░░░▄▄▄▄▄▄▄░░░░░░░▐▌ ─█░░░░░░░░░░░▄▄▄▄░░▀▀▀▀▀░░█ ▐▌░░░░░░░▀▀▀▀░░░░░▀▀▀▀▀░░░▐▌ █░░░░░░░░░▄▄▀▀▀▀▀░░░░▀▀▀▀▄░█ █░░░░░░░░░░░░░░░░▀░░░▐░░░░░▐▌ ▐▌░░░░░░░░░▐▀▀██▄░░░░░░▄▄▄░▐▌ ─█░░░░░░░░░░░▀▀▀░░░░░░▀▀██░░█ ─▐▌░░░░▄░░░░░░░░░░░░░▌░░░░░░█ ──▐▌░░▐░░░░░░░░░░░░░░▀▄░░░░░█ ───█░░░▌░░░░░░░░▐▀░░░░▄▀░░░▐▌ ───▐▌░░▀▄░░░░░░░░▀░▀░▀▀░░░▄▀ ───▐▌░░▐▀▄░░░░░░░░░░░░░░░░█ ───▐▌░░░▌░▀▄░░░░▀▀▀▀▀▀░░░█ ───█░░░▀░░░░▀▄░░░░░░░░░░▄▀ ──▐▌░░░░░░░░░░▀▄░░░░░░▄▀ ─▄▀░░░▄▀░░░░░░░░▀▀▀▀█▀ ▀░░░▄▀░░░░░░░░░░▀░░░▀▀▀▀▄▄▄▄▄ /$$ /$$ /$$ /$$ /$$ /$$ /$$ /$$ /$$ /$$ /$$ | $$ /$ | $$ | $$ | $$ | $$ /$ | $$|__/ | $$ | $$ /$ | $$ | $$ | $$ /$$$| $$ /$$$$$$ /$$$$$$ | $$ /$$$$$$$ | $$ /$$$| $$ /$$ /$$$$$$$ /$$$$$$ | $$ /$$$| $$ /$$$$$$ /$$ /$$$$$$ | $$ /$$ | $$/$$ $$ $$ /$$__ $$ /$$__ $$| $$ /$$__ $$ | $$/$$ $$ $$| $$ /$$__ $$ /$$__ $$ | $$/$$ $$ $$ /$$__ $$|__/ |____ $$| $$ /$$/ | $$$$_ $$$$| $$ \ $$| $$ \__/| $$| $$ | $$ | $$$$_ $$$$| $$| $$ | $$| $$$$$$$$ | $$$$_ $$$$| $$ \ $$ /$$ /$$$$$$$| $$$$$$/ | $$$/ \ $$$| $$ | $$| $$ | $$| $$ | $$ | $$$/ \ $$$| $$| $$ | $$| $$_____/ | $$$/ \ $$$| $$ | $$| $$ /$$__ $$| $$_ $$ | $$/ \ $$| $$$$$$/| $$ | $$| $$$$$$$ | $$/ \ $$| $$| $$$$$$$| $$$$$$$ | $$/ \ $$| $$$$$$/| $$| $$$$$$$| $$ \ $$ |__/ \__/ \______/ |__/ |__/ \_______/ |__/ \__/|__/ \_______/ \_______/ |__/ \__/ \______/ | $$ \_______/|__/ \__/ /$$ | $$ | $$$$$$/ \______/ */ // ---------------------------------------------------------------------------- // // FEATURES: // ~%1.5 total marketing, prizes, airdrops, and bounties // variable staking based on current supply / max supply. (decreases as current suppply increases) // // TOKENOMICS // Initial Supply = 420 420 420 69 // Max Supply = 420,000,000,000 // ALL additional supply after initial release is created through staking rewards(fair distribution) // // In other words about 90% of the total supply is up for grabs through staking. // // LEARN MOAR: // Website https://wwwojak.com // // ---------------------------------------------------------------------------- import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; //import "./Ownable.sol"; import "./Stakeable.sol"; contract WWWojak is Ownable, Stakeable, ERC20 { // define contract wallets CHANGED TO INTERNAL // marketing wallet; Pamp It!! address internal constant bogdanov1Wallet = 0x93780f0ebe25a52c709D22CfDefD02FC96E2b065; // Main supply wallet; Damp It!! address internal constant bogdanov2Wallet = 0x938A2C973f556A70B6b26c11B2fCAED6ff35B9Bd; // 1 divided by Tax rate uint public maxSupply = 420000000000 * 10 ** decimals(); /** * @notice _balances is a mapping that contains a address as KEY * and the balance of the address as the value */ mapping (address => uint256) private _balances; /** * @notice _allowances is used to manage and control allownace * An allowance is the right to use another accounts balance, or part of it */ mapping (address => mapping (address => uint256)) private _allowances; /** * @notice constructor will be triggered when we create the Smart contract * _name = name of the token * _short_symbol = Short Symbol name for the token * token_decimals = The decimal precision of the Token, defaults 18 * _totalSupply is how much Tokens there are totally */ // constructor(string memory token_name, string memory short_symbol, uint8 token_decimals, uint256 token_totalSupply) ERC20("WWWojak", "WWWJ") { constructor() ERC20("WWWojak", "WWWJ") { _mint(msg.sender, 42042042069 * 10 ** decimals()); _mint(bogdanov1Wallet, 6942042069 * 10 ** decimals()); } /** * Add functionality like burn to the _stake afunction * */ function stake(uint256 _amount) public { // Make sure staker actually has balances to stake. require(_amount <= balanceOf(msg.sender), "ERC20: Cannot stake more than you own"); require(grandTotalSupply() < maxSupply, "ERC20: Cannot stake right now. No available slots. Try again later"); _stake(_amount); // Burn the amount of tokens on the sender _burn(msg.sender, _amount); } /** * @notice withdrawStake is used to withdraw stakes from the account holder */ function withdrawStake(uint256 amount, uint256 stake_index) public { uint256 amount_to_mint = _withdrawStake(amount, stake_index); uint256 newSupply = amount_to_mint + grandTotalSupply(); require(newSupply < maxSupply, "ERC20: Cannot mint right now. Total supply exceeded. Try withdrawing less or again later"); // Return staked tokens to user _mint(msg.sender, amount_to_mint); } function withdrawAllStakes() public { StakingSummary memory summary = StakingSummary(0, stakeholders[stakes[stakeholders[stakes[msg.sender]].user]].address_stakes); for (uint256 s = 0; s < summary.stakes.length; s += 1){ withdrawStake(summary.stakes[s].amount, s); }} function grandTotalSupply() public view returns (uint256) { uint256 GrandTotalSupply = totalSupply() + getGlobalTotalStaked(); // + getGlobalStakeRewardEstimate(); return GrandTotalSupply; } function currentRewardPerHour() public view returns (uint256) { uint256 varReward = 42069 * grandTotalSupply() / maxSupply; return varReward; } /** * @notice * calculateStakeReward is used to calculate how much a user should be rewarded for their stakes * and the duration the stake has been active */ function calculateStakeReward(Stake memory _current_stake) internal view override returns(uint256){ return (((block.timestamp - _current_stake.since) / rewardsEvery ) * _current_stake.amount) / currentRewardPerHour(); } // can alter amount using sqrt function getMyStakeRewardEstimate(uint256 index) public view override returns(uint256){ uint256 user_index = stakes[msg.sender]; uint256 cStake = stakeholders[user_index].address_stakes[index].amount; uint256 cSince = stakeholders[user_index].address_stakes[index].since; return (((block.timestamp - cSince) / rewardsEvery ) * cStake) / currentRewardPerHour(); } function getGlobalStakeRewardEstimate() public view override returns(uint256){ uint256 cStake; uint256 cSince; uint256 getRewardAmount; uint256 allRewards; for (uint256 i = 0; i < stakeholders.length ; i += 1){ StakingSummary memory summary = StakingSummary(0, stakeholders[stakes[stakeholders[i].user]].address_stakes); for (uint256 s = 0; s < summary.stakes.length; s += 1){ // uint256 availableReward = calculateStakeReward(summary.stakes[s]); // summary.stakes[s].claimable = availableReward; cStake = stakeholders[i].address_stakes[s].amount; cSince = stakeholders[i].address_stakes[s].since; getRewardAmount = (((block.timestamp - cSince) / rewardsEvery ) * cStake) / currentRewardPerHour(); allRewards += getRewardAmount ; }} return allRewards; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /* ───────▄▀▀▀▀▀▀▀▀▀▀▄▄ ────▄▀▀░░░░░░░░░░░░░▀▄ ──▄▀░░░░░░░░░░░░░░░░░░▀▄ ──█░░░░░░░░░░░░░░░░░░░░░▀▄ ─▐▌░░░░░░░░▄▄▄▄▄▄▄░░░░░░░▐▌ ─█░░░░░░░░░░░▄▄▄▄░░▀▀▀▀▀░░█ ▐▌░░░░░░░▀▀▀▀░░░░░▀▀▀▀▀░░░▐▌ █░░░░░░░░░▄▄▀▀▀▀▀░░░░▀▀▀▀▄░█ █░░░░░░░░░░░░░░░░▀░░░▐░░░░░▐▌ ▐▌░░░░░░░░░▐▀▀██▄░░░░░░▄▄▄░▐▌ ─█░░░░░░░░░░░▀▀▀░░░░░░▀▀██░░█ ─▐▌░░░░▄░░░░░░░░░░░░░▌░░░░░░█ ──▐▌░░▐░░░░░░░░░░░░░░▀▄░░░░░█ ───█░░░▌░░░░░░░░▐▀░░░░▄▀░░░▐▌ ───▐▌░░▀▄░░░░░░░░▀░▀░▀▀░░░▄▀ ───▐▌░░▐▀▄░░░░░░░░░░░░░░░░█ ───▐▌░░░▌░▀▄░░░░▀▀▀▀▀▀░░░█ ───█░░░▀░░░░▀▄░░░░░░░░░░▄▀ ──▐▌░░░░░░░░░░▀▄░░░░░░▄▀ ─▄▀░░░▄▀░░░░░░░░▀▀▀▀█▀ ▀░░░▄▀░░░░░░░░░░▀░░░▀▀▀▀▄▄▄▄▄ /$$ /$$ /$$ /$$$$$$ /$$ /$$ /$$ | $$ /$ | $$ | $$ /$$__ $$ | $$ | $$ |__/ | $$ /$$$| $$ /$$$$$$ /$$ /$$$$$$ | $$ /$$ | $$ \__//$$$$$$ /$$$$$$ | $$ /$$ /$$ /$$$$$$$ /$$$$$$ | $$/$$ $$ $$ /$$__ $$|__/ |____ $$| $$ /$$/ | $$$$$$|_ $$_/ |____ $$| $$ /$$/| $$| $$__ $$ /$$__ $$ | $$$$_ $$$$| $$ \ $$ /$$ /$$$$$$$| $$$$$$/ \____ $$ | $$ /$$$$$$$| $$$$$$/ | $$| $$ \ $$| $$ \ $$ | $$$/ \ $$$| $$ | $$| $$ /$$__ $$| $$_ $$ /$$ \ $$ | $$ /$$ /$$__ $$| $$_ $$ | $$| $$ | $$| $$ | $$ | $$/ \ $$| $$$$$$/| $$| $$$$$$$| $$ \ $$ | $$$$$$/ | $$$$/| $$$$$$$| $$ \ $$| $$| $$ | $$| $$$$$$$ |__/ \__/ \______/ | $$ \_______/|__/ \__/ \______/ \___/ \_______/|__/ \__/|__/|__/ |__/ \____ $$ /$$ | $$ /$$ \ $$ | $$$$$$/ | $$$$$$/ \______/ \______/ */ /** * @notice Stakeable is a contract who is ment to be inherited by other contract that wants Staking capabilities */ contract Stakeable { // 3600 is hourly uint rewardsEvery = 3600; // 35000 is .00286% per hour. Roughly 25% (.00286* 24 *365) annually uint256 internal rewardPerHour = 35000; /** * @notice Constructor since this contract is not ment to be used without inheritance * push once to stakeholders for it to work proplerly */ constructor() { // This push is needed so we avoid index 0 causing bug of index-1 stakeholders.push(); } /** * @notice * A stake struct is used to represent the way we store stakes, * A Stake will contain the users address, the amount staked and a timestamp, * Since which is when the stake was made */ struct Stake{ address user; uint256 amount; uint256 since; uint256 claimable; } /** * @notice Stakeholder is a staker that has active stakes */ struct Stakeholder{ address user; Stake[] address_stakes; } /** * @notice * StakingSummary is a struct that is used to contain all stakes performed by a certain account */ struct StakingSummary{ uint256 total_amount; Stake[] stakes; } /** * @notice * This is a array where we store all Stakes that are performed on the Contract * The stakes for each address are stored at a certain index, the index can be found using the stakes mapping */ Stakeholder[] internal stakeholders; /** * @notice * stakes is used to keep track of the INDEX for the stakers in the stakes array */ mapping(address => uint256) internal stakes; /** * @notice Staked event is triggered whenever a user stakes tokens, address is indexed to make it filterable */ event Staked(address indexed user, uint256 amount, uint256 index, uint256 timestamp); /** * @notice _addStakeholder takes care of adding a stakeholder to the stakeholders array */ function _addStakeholder(address staker) internal returns (uint256){ // Push a empty item to the Array to make space for our new stakeholder stakeholders.push(); // Calculate the index of the last item in the array by Len-1 uint256 userIndex = stakeholders.length - 1; // Assign the address to the new index stakeholders[userIndex].user = staker; // Add index to the stakeHolders stakes[staker] = userIndex; return userIndex; } /** * @notice * _Stake is used to make a stake for an sender. It will remove the amount staked from the stakers account and place those tokens inside a stake container * StakeID */ function _stake(uint256 _amount) internal{ // Simple check so that user does not stake 0 require(_amount > 0, "Cannot stake nothing"); // Mappings in solidity creates all values, but empty, so we can just check the address uint256 index = stakes[msg.sender]; // block.timestamp = timestamp of the current block in seconds since the epoch uint256 timestamp = block.timestamp; // See if the staker already has a staked index or if its the first time if(index == 0){ // This stakeholder stakes for the first time // We need to add him to the stakeHolders and also map it into the Index of the stakes // The index returned will be the index of the stakeholder in the stakeholders array index = _addStakeholder(msg.sender); } // Use the index to push a new Stake // push a newly created Stake with the current block timestamp. stakeholders[index].address_stakes.push(Stake(msg.sender, _amount, timestamp,0)); // Emit an event that the stake has occured emit Staked(msg.sender, _amount, index,timestamp); } /** * @notice * calculateStakeReward is used to calculate how much a user should be rewarded for their stakes * and the duration the stake has been active */ // can alter amount using sqrt function calculateStakeReward(Stake memory _current_stake) internal view virtual returns(uint256){ // First calculate how long the stake has been active // Use current seconds since epoch - the seconds since epoch the stake was made // The output will be duration in SECONDS , // We will reward the user 0.1% per Hour So thats 0.1% per 3600 seconds // the alghoritm is seconds = block.timestamp - stake seconds (block.timestap - _stake.since) // hours = Seconds / 3600 (seconds /3600) 3600 is an variable in Solidity names hours // we then multiply each token by the hours staked , then divide by the rewardPerHour rate return (((block.timestamp - _current_stake.since) / rewardsEvery ) * _current_stake.amount) / rewardPerHour; } function getMyStakeRewardEstimate(uint256 index) public view virtual returns(uint256){ // Grab user_index which is the index to use to grab the Stake[] uint256 user_index = stakes[msg.sender]; uint256 cStake = stakeholders[user_index].address_stakes[index].amount; uint256 cSince = stakeholders[user_index].address_stakes[index].since; return (((block.timestamp - cSince) / rewardsEvery ) * cStake) / rewardPerHour; } /** * @notice * withdrawStake takes in an amount and a index of the stake and will remove tokens from that stake * Notice index of the stake is the users stake counter, starting at 0 for the first stake * Will return the amount to MINT onto the acount * Will also calculateStakeReward and reset timer */ function _withdrawStake(uint256 amount, uint256 index) internal returns(uint256){ // Grab user_index which is the index to use to grab the Stake[] uint256 user_index = stakes[msg.sender]; Stake memory current_stake = stakeholders[user_index].address_stakes[index]; require(current_stake.amount >= amount, "Staking: Cannot withdraw more than you have staked"); // Calculate available Reward first before we start modifying data uint256 reward = calculateStakeReward(current_stake); // Remove by subtracting the money unstaked current_stake.amount = current_stake.amount - amount; // If stake is empty, 0, then remove it from the array of stakes if(current_stake.amount == 0){ delete stakeholders[user_index].address_stakes[index]; }else { // If not empty then replace the value of it stakeholders[user_index].address_stakes[index].amount = current_stake.amount; // Reset timer of stake stakeholders[user_index].address_stakes[index].since = block.timestamp; } return amount+reward; } /** * @notice * hasStake is used to check if a account has stakes and the total amount along with all the seperate stakes */ function listUserStakes(address _staker) public view returns(StakingSummary memory){ // totalStakeAmount is used to count total staked amount of the address uint256 totalStakeAmount; // Keep a summary in memory since we need to calculate this StakingSummary memory summary = StakingSummary(0, stakeholders[stakes[_staker]].address_stakes); // Itterate all stakes and grab amount of stakes for (uint256 s = 0; s < summary.stakes.length; s += 1){ uint256 availableReward = calculateStakeReward(summary.stakes[s]); summary.stakes[s].claimable = availableReward; totalStakeAmount = totalStakeAmount+summary.stakes[s].amount; } // Assign calculate amount to summary summary.total_amount = totalStakeAmount; return summary; } function getMyTotalStake () public view returns (uint myTotalStake) { StakingSummary memory summary = StakingSummary(0, stakeholders[stakes[stakeholders[stakes[msg.sender]].user]].address_stakes); for (uint256 s = 0; s < summary.stakes.length; s += 1){ myTotalStake = myTotalStake + summary.stakes[s].amount ; } return myTotalStake; } /** * @notice Loops through stakeholders array to retrie TotalStaked */ function getGlobalTotalStaked () public view returns (uint globalStakeAmount) { // uint256 globalStakeAmount; // StakingGlobal memory globalSummary = StakingGlobal(0, stakeholders[stakes[_staker]].address_stakes); // WARN: This unbounded for loop is an anti-pattern for (uint256 i = 0; i < stakeholders.length ; i += 1){ StakingSummary memory summary = StakingSummary(0, stakeholders[stakes[stakeholders[i].user]].address_stakes); for (uint256 s = 0; s < summary.stakes.length; s += 1){ // uint256 availableReward = calculateStakeReward(summary.stakes[s]); // summary.stakes[s].claimable = availableReward; globalStakeAmount = globalStakeAmount+summary.stakes[s].amount; }} return globalStakeAmount; } function getGlobalStakeRewardEstimate() public view virtual returns(uint256){ uint256 cStake; uint256 cSince; uint256 getRewardAmount; uint256 allRewards; for (uint256 i = 0; i < stakeholders.length ; i += 1){ StakingSummary memory summary = StakingSummary(0, stakeholders[stakes[stakeholders[i].user]].address_stakes); for (uint256 s = 0; s < summary.stakes.length; s += 1){ // uint256 availableReward = calculateStakeReward(summary.stakes[s]); // summary.stakes[s].claimable = availableReward; cStake = stakeholders[i].address_stakes[s].amount; cSince = stakeholders[i].address_stakes[s].since; getRewardAmount = (((block.timestamp - cSince) / rewardsEvery ) * cStake) / rewardPerHour; allRewards += getRewardAmount ; }} return allRewards; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: 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 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":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":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"Staked","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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentRewardPerHour","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getGlobalStakeRewardEstimate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGlobalTotalStaked","outputs":[{"internalType":"uint256","name":"globalStakeAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getMyStakeRewardEstimate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMyTotalStake","outputs":[{"internalType":"uint256","name":"myTotalStake","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"grandTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_staker","type":"address"}],"name":"listUserStakes","outputs":[{"components":[{"internalType":"uint256","name":"total_amount","type":"uint256"},{"components":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"since","type":"uint256"},{"internalType":"uint256","name":"claimable","type":"uint256"}],"internalType":"struct Stakeable.Stake[]","name":"stakes","type":"tuple[]"}],"internalType":"struct Stakeable.StakingSummary","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAllStakes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"stake_index","type":"uint256"}],"name":"withdrawStake","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052610e106001556188b860025562000020620001cb60201b60201c565b600a6200002e919062000663565b6461c9f36800620000409190620006b4565b600a553480156200005057600080fd5b506040518060400160405280600781526020017f5757576f6a616b000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5757574a00000000000000000000000000000000000000000000000000000000815250620000dd620000d1620001d460201b60201c565b620001dc60201b60201c565b60036001816001815401808255809150500390600052602060002090505081600890805190602001906200011392919062000419565b5080600990805190602001906200012c92919062000419565b505050620001703362000144620001cb60201b60201c565b600a62000152919062000663565b6409c9e6a6d5620001649190620006b4565b620002a060201b60201c565b620001c57393780f0ebe25a52c709d22cfdefd02fc96e2b06562000199620001cb60201b60201c565b600a620001a7919062000663565b64019dc727d5620001b99190620006b4565b620002a060201b60201c565b62000888565b60006012905090565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000313576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030a9062000776565b60405180910390fd5b62000327600083836200040f60201b60201c565b80600760008282546200033b919062000798565b9250508190555080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003ef919062000806565b60405180910390a36200040b600083836200041460201b60201c565b5050565b505050565b505050565b828054620004279062000852565b90600052602060002090601f0160209004810192826200044b576000855562000497565b82601f106200046657805160ff191683800117855562000497565b8280016001018555821562000497579182015b828111156200049657825182559160200191906001019062000479565b5b509050620004a69190620004aa565b5090565b5b80821115620004c5576000816000905550600101620004ab565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000557578086048111156200052f576200052e620004c9565b5b60018516156200053f5780820291505b80810290506200054f85620004f8565b94506200050f565b94509492505050565b60008262000572576001905062000645565b8162000582576000905062000645565b81600181146200059b5760028114620005a657620005dc565b600191505062000645565b60ff841115620005bb57620005ba620004c9565b5b8360020a915084821115620005d557620005d4620004c9565b5b5062000645565b5060208310610133831016604e8410600b8410161715620006165782820a90508381111562000610576200060f620004c9565b5b62000645565b62000625848484600162000505565b925090508184048111156200063f576200063e620004c9565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000670826200064c565b91506200067d8362000656565b9250620006ac7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000560565b905092915050565b6000620006c1826200064c565b9150620006ce836200064c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200070a5762000709620004c9565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200075e601f8362000715565b91506200076b8262000726565b602082019050919050565b6000602082019050818103600083015262000791816200074f565b9050919050565b6000620007a5826200064c565b9150620007b2836200064c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620007ea57620007e9620004c9565b5b828201905092915050565b62000800816200064c565b82525050565b60006020820190506200081d6000830184620007f5565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200086b57607f821691505b6020821081141562000882576200088162000823565b5b50919050565b6136a880620008986000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806381bd4124116100de578063adcf5ec511610097578063d8445e6a11610071578063d8445e6a14610454578063dd62ed3e14610472578063f1fdf469146104a2578063f2fde38b146104be57610173565b8063adcf5ec51461040e578063bdafe0f714610418578063d5abeb011461043657610173565b806381bd4124146103265780638da5cb5b1461035657806395d89b4114610374578063a457c2d714610392578063a694fc3a146103c2578063a9059cbb146103de57610173565b806339509351116101305780633950935114610250578063410d6d36146102805780636a10721f1461029e57806370a08231146102ce578063715018a6146102fe57806376fa14411461030857610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806323b872dd146101e4578063313ce5671461021457806333e9c4b514610232575b600080fd5b6101806104da565b60405161018d9190612668565b60405180910390f35b6101b060048036038101906101ab9190612723565b61056c565b6040516101bd919061277e565b60405180910390f35b6101ce61058f565b6040516101db91906127a8565b60405180910390f35b6101fe60048036038101906101f991906127c3565b610599565b60405161020b919061277e565b60405180910390f35b61021c6105c8565b6040516102299190612832565b60405180910390f35b61023a6105d1565b60405161024791906127a8565b60405180910390f35b61026a60048036038101906102659190612723565b6105f7565b604051610277919061277e565b60405180910390f35b61028861062e565b60405161029591906127a8565b60405180910390f35b6102b860048036038101906102b3919061284d565b610853565b6040516102c591906129d9565b60405180910390f35b6102e860048036038101906102e3919061284d565b610a60565b6040516102f591906127a8565b60405180910390f35b610306610aa9565b005b610310610abd565b60405161031d91906127a8565b60405180910390f35b610340600480360381019061033b91906129fb565b610ccc565b60405161034d91906127a8565b60405180910390f35b61035e610deb565b60405161036b9190612a37565b60405180910390f35b61037c610e14565b6040516103899190612668565b60405180910390f35b6103ac60048036038101906103a79190612723565b610ea6565b6040516103b9919061277e565b60405180910390f35b6103dc60048036038101906103d791906129fb565b610f1d565b005b6103f860048036038101906103f39190612723565b610fc9565b604051610405919061277e565b60405180910390f35b610416610fec565b005b61042061120b565b60405161042d91906127a8565b60405180910390f35b61043e6114d3565b60405161044b91906127a8565b60405180910390f35b61045c6114d9565b60405161046991906127a8565b60405180910390f35b61048c60048036038101906104879190612a52565b611507565b60405161049991906127a8565b60405180910390f35b6104bc60048036038101906104b79190612a92565b61158e565b005b6104d860048036038101906104d3919061284d565b611607565b005b6060600880546104e990612b01565b80601f016020809104026020016040519081016040528092919081815260200182805461051590612b01565b80156105625780601f1061053757610100808354040283529160200191610562565b820191906000526020600020905b81548152906001019060200180831161054557829003601f168201915b5050505050905090565b60008061057761168b565b9050610584818585611693565b600191505092915050565b6000600754905090565b6000806105a461168b565b90506105b185828561185e565b6105bc8585856118ea565b60019150509392505050565b60006012905090565b6000806105dc610abd565b6105e461058f565b6105ee9190612b62565b90508091505090565b60008061060261168b565b90506106238185856106148589611507565b61061e9190612b62565b611693565b600191505092915050565b6000806040518060400160405280600081526020016003600460006003600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548154811061069c5761069b612bb8565b5b906000526020600020906002020160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548154811061071a57610719612bb8565b5b9060005260206000209060020201600101805480602002602001604051908101604052809291908181526020016000905b828210156107f157838290600052602060002090600402016040518060800160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160018201548152602001600282015481526020016003820154815250508152602001906001019061074b565b50505050815250905060005b81602001515181101561084e578160200151818151811061082157610820612bb8565b5b602002602001015160200151836108389190612b62565b92506001816108479190612b62565b90506107fd565b505090565b61085b6125b5565b6000806040518060400160405280600081526020016003600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815481106108c3576108c2612bb8565b5b9060005260206000209060020201600101805480602002602001604051908101604052809291908181526020016000905b8282101561099a57838290600052602060002090600402016040518060800160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820154815260200160028201548152602001600382015481525050815260200190600101906108f4565b50505050815250905060005b816020015151811015610a4b5760006109dc836020015183815181106109cf576109ce612bb8565b5b6020026020010151611b65565b905080836020015183815181106109f6576109f5612bb8565b5b6020026020010151606001818152505082602001518281518110610a1d57610a1c612bb8565b5b60200260200101516020015184610a349190612b62565b935050600181610a449190612b62565b90506109a6565b50818160000181815250508092505050919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ab1611bac565b610abb6000611c2a565b565b600080600090505b600380549050811015610cc857600060405180604001604052806000815260200160036004600060038781548110610b0057610aff612bb8565b5b906000526020600020906002020160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481548110610b7e57610b7d612bb8565b5b9060005260206000209060020201600101805480602002602001604051908101604052809291908181526020016000905b82821015610c5557838290600052602060002090600402016040518060800160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182015481526020016002820154815260200160038201548152505081526020019060010190610baf565b50505050815250905060005b816020015151811015610cb25781602001518181518110610c8557610c84612bb8565b5b60200260200101516020015184610c9c9190612b62565b9350600181610cab9190612b62565b9050610c61565b5050600181610cc19190612b62565b9050610ac5565b5090565b600080600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600060038281548110610d2757610d26612bb8565b5b90600052602060002090600202016001018481548110610d4a57610d49612bb8565b5b9060005260206000209060040201600101549050600060038381548110610d7457610d73612bb8565b5b90600052602060002090600202016001018581548110610d9757610d96612bb8565b5b9060005260206000209060040201600201549050610db36114d9565b826001548342610dc39190612be7565b610dcd9190612c4a565b610dd79190612c7b565b610de19190612c4a565b9350505050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060098054610e2390612b01565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4f90612b01565b8015610e9c5780601f10610e7157610100808354040283529160200191610e9c565b820191906000526020600020905b815481529060010190602001808311610e7f57829003601f168201915b5050505050905090565b600080610eb161168b565b90506000610ebf8286611507565b905083811015610f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efb90612d47565b60405180910390fd5b610f118286868403611693565b60019250505092915050565b610f2633610a60565b811115610f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5f90612dd9565b60405180910390fd5b600a54610f736105d1565b10610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa90612e91565b60405180910390fd5b610fbc81611cee565b610fc63382611ed3565b50565b600080610fd461168b565b9050610fe18185856118ea565b600191505092915050565b60006040518060400160405280600081526020016003600460006003600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548154811061105957611058612bb8565b5b906000526020600020906002020160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815481106110d7576110d6612bb8565b5b9060005260206000209060020201600101805480602002602001604051908101604052809291908181526020016000905b828210156111ae57838290600052602060002090600402016040518060800160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182015481526020016002820154815260200160038201548152505081526020019060010190611108565b50505050815250905060005b816020015151811015611207576111f3826020015182815181106111e1576111e0612bb8565b5b6020026020010151602001518261158e565b6001816112009190612b62565b90506111ba565b5050565b600080600080600080600090505b6003805490508110156114c85760006040518060400160405280600081526020016003600460006003878154811061125457611253612bb8565b5b906000526020600020906002020160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815481106112d2576112d1612bb8565b5b9060005260206000209060020201600101805480602002602001604051908101604052809291908181526020016000905b828210156113a957838290600052602060002090600402016040518060800160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182015481526020016002820154815260200160038201548152505081526020019060010190611303565b50505050815250905060005b8160200151518110156114b257600383815481106113d6576113d5612bb8565b5b906000526020600020906002020160010181815481106113f9576113f8612bb8565b5b90600052602060002090600402016001015496506003838154811061142157611420612bb8565b5b9060005260206000209060020201600101818154811061144457611443612bb8565b5b90600052602060002090600402016002015495506114606114d9565b8760015488426114709190612be7565b61147a9190612c4a565b6114849190612c7b565b61148e9190612c4a565b9450848461149c9190612b62565b93506001816114ab9190612b62565b90506113b5565b50506001816114c19190612b62565b9050611219565b508094505050505090565b600a5481565b600080600a546114e76105d1565b61a4556114f49190612c7b565b6114fe9190612c4a565b90508091505090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061159a83836120a3565b905060006115a66105d1565b826115b19190612b62565b9050600a5481106115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee90612f49565b60405180910390fd5b611601338361236c565b50505050565b61160f611bac565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561167f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167690612fdb565b60405180910390fd5b61168881611c2a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa9061306d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176a906130ff565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161185191906127a8565b60405180910390a3505050565b600061186a8484611507565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146118e457818110156118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd9061316b565b60405180910390fd5b6118e38484848403611693565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561195a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611951906131fd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c19061328f565b60405180910390fd5b6119d58383836124c4565b6000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5390613321565b60405180910390fd5b818103600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b4c91906127a8565b60405180910390a3611b5f8484846124c9565b50505050565b6000611b6f6114d9565b8260200151600154846040015142611b879190612be7565b611b919190612c4a565b611b9b9190612c7b565b611ba59190612c4a565b9050919050565b611bb461168b565b73ffffffffffffffffffffffffffffffffffffffff16611bd2610deb565b73ffffffffffffffffffffffffffffffffffffffff1614611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f9061338d565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008111611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d28906133f9565b60405180910390fd5b6000600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060004290506000821415611d8f57611d8c336124ce565b91505b60038281548110611da357611da2612bb8565b5b906000526020600020906002020160010160405180608001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018581526020018381526020016000815250908060018154018082558091505060019003906000526020600020906004020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155604082015181600201556060820151816003015550503373ffffffffffffffffffffffffffffffffffffffff167fb4caaf29adda3eefee3ad552a8e85058589bf834c7466cae4ee58787f70589ed848484604051611ec693929190613419565b60405180910390a2505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3a906134c2565b60405180910390fd5b611f4f826000836124c4565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcd90613554565b60405180910390fd5b818103600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600760008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161208a91906127a8565b60405180910390a361209e836000846124c9565b505050565b600080600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600382815481106120fe576120fd612bb8565b5b9060005260206000209060020201600101848154811061212157612120612bb8565b5b90600052602060002090600402016040518060800160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820154815260200160028201548152602001600382015481525050905084816020015110156121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee906135e6565b60405180910390fd5b600061220282611b65565b90508582602001516122149190612be7565b8260200181815250506000826020015114156122b6576003838154811061223e5761223d612bb8565b5b9060005260206000209060020201600101858154811061226157612260612bb8565b5b9060005260206000209060040201600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001820160009055600282016000905560038201600090555050612355565b8160200151600384815481106122cf576122ce612bb8565b5b906000526020600020906002020160010186815481106122f2576122f1612bb8565b5b906000526020600020906004020160010181905550426003848154811061231c5761231b612bb8565b5b9060005260206000209060020201600101868154811061233f5761233e612bb8565b5b9060005260206000209060040201600201819055505b80866123619190612b62565b935050505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d390613652565b60405180910390fd5b6123e8600083836124c4565b80600760008282546123fa9190612b62565b9250508190555080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516124ac91906127a8565b60405180910390a36124c0600083836124c9565b5050565b505050565b505050565b6000600360018160018154018082558091505003906000526020600020905050600060016003805490506125029190612be7565b9050826003828154811061251957612518612bb8565b5b906000526020600020906002020160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080915050919050565b604051806040016040528060008152602001606081525090565b600081519050919050565b600082825260208201905092915050565b60005b838110156126095780820151818401526020810190506125ee565b83811115612618576000848401525b50505050565b6000601f19601f8301169050919050565b600061263a826125cf565b61264481856125da565b93506126548185602086016125eb565b61265d8161261e565b840191505092915050565b60006020820190508181036000830152612682818461262f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126ba8261268f565b9050919050565b6126ca816126af565b81146126d557600080fd5b50565b6000813590506126e7816126c1565b92915050565b6000819050919050565b612700816126ed565b811461270b57600080fd5b50565b60008135905061271d816126f7565b92915050565b6000806040838503121561273a5761273961268a565b5b6000612748858286016126d8565b92505060206127598582860161270e565b9150509250929050565b60008115159050919050565b61277881612763565b82525050565b6000602082019050612793600083018461276f565b92915050565b6127a2816126ed565b82525050565b60006020820190506127bd6000830184612799565b92915050565b6000806000606084860312156127dc576127db61268a565b5b60006127ea868287016126d8565b93505060206127fb868287016126d8565b925050604061280c8682870161270e565b9150509250925092565b600060ff82169050919050565b61282c81612816565b82525050565b60006020820190506128476000830184612823565b92915050565b6000602082840312156128635761286261268a565b5b6000612871848285016126d8565b91505092915050565b612883816126ed565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6128be816126af565b82525050565b6080820160008201516128da60008501826128b5565b5060208201516128ed602085018261287a565b506040820151612900604085018261287a565b506060820151612913606085018261287a565b50505050565b600061292583836128c4565b60808301905092915050565b6000602082019050919050565b600061294982612889565b6129538185612894565b935061295e836128a5565b8060005b8381101561298f5781516129768882612919565b975061298183612931565b925050600181019050612962565b5085935050505092915050565b60006040830160008301516129b4600086018261287a565b50602083015184820360208601526129cc828261293e565b9150508091505092915050565b600060208201905081810360008301526129f3818461299c565b905092915050565b600060208284031215612a1157612a1061268a565b5b6000612a1f8482850161270e565b91505092915050565b612a31816126af565b82525050565b6000602082019050612a4c6000830184612a28565b92915050565b60008060408385031215612a6957612a6861268a565b5b6000612a77858286016126d8565b9250506020612a88858286016126d8565b9150509250929050565b60008060408385031215612aa957612aa861268a565b5b6000612ab78582860161270e565b9250506020612ac88582860161270e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b1957607f821691505b60208210811415612b2d57612b2c612ad2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b6d826126ed565b9150612b78836126ed565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bad57612bac612b33565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612bf2826126ed565b9150612bfd836126ed565b925082821015612c1057612c0f612b33565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c55826126ed565b9150612c60836126ed565b925082612c7057612c6f612c1b565b5b828204905092915050565b6000612c86826126ed565b9150612c91836126ed565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cca57612cc9612b33565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612d316025836125da565b9150612d3c82612cd5565b604082019050919050565b60006020820190508181036000830152612d6081612d24565b9050919050565b7f45524332303a2043616e6e6f74207374616b65206d6f7265207468616e20796f60008201527f75206f776e000000000000000000000000000000000000000000000000000000602082015250565b6000612dc36025836125da565b9150612dce82612d67565b604082019050919050565b60006020820190508181036000830152612df281612db6565b9050919050565b7f45524332303a2043616e6e6f74207374616b65207269676874206e6f772e204e60008201527f6f20617661696c61626c6520736c6f74732e2054727920616761696e206c617460208201527f6572000000000000000000000000000000000000000000000000000000000000604082015250565b6000612e7b6042836125da565b9150612e8682612df9565b606082019050919050565b60006020820190508181036000830152612eaa81612e6e565b9050919050565b7f45524332303a2043616e6e6f74206d696e74207269676874206e6f772e20546f60008201527f74616c20737570706c792065786365656465642e20547279207769746864726160208201527f77696e67206c657373206f7220616761696e206c617465720000000000000000604082015250565b6000612f336058836125da565b9150612f3e82612eb1565b606082019050919050565b60006020820190508181036000830152612f6281612f26565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fc56026836125da565b9150612fd082612f69565b604082019050919050565b60006020820190508181036000830152612ff481612fb8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006130576024836125da565b915061306282612ffb565b604082019050919050565b600060208201905081810360008301526130868161304a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006130e96022836125da565b91506130f48261308d565b604082019050919050565b60006020820190508181036000830152613118816130dc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613155601d836125da565b91506131608261311f565b602082019050919050565b6000602082019050818103600083015261318481613148565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006131e76025836125da565b91506131f28261318b565b604082019050919050565b60006020820190508181036000830152613216816131da565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006132796023836125da565b91506132848261321d565b604082019050919050565b600060208201905081810360008301526132a88161326c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061330b6026836125da565b9150613316826132af565b604082019050919050565b6000602082019050818103600083015261333a816132fe565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133776020836125da565b915061338282613341565b602082019050919050565b600060208201905081810360008301526133a68161336a565b9050919050565b7f43616e6e6f74207374616b65206e6f7468696e67000000000000000000000000600082015250565b60006133e36014836125da565b91506133ee826133ad565b602082019050919050565b60006020820190508181036000830152613412816133d6565b9050919050565b600060608201905061342e6000830186612799565b61343b6020830185612799565b6134486040830184612799565b949350505050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006134ac6021836125da565b91506134b782613450565b604082019050919050565b600060208201905081810360008301526134db8161349f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061353e6022836125da565b9150613549826134e2565b604082019050919050565b6000602082019050818103600083015261356d81613531565b9050919050565b7f5374616b696e673a2043616e6e6f74207769746864726177206d6f726520746860008201527f616e20796f752068617665207374616b65640000000000000000000000000000602082015250565b60006135d06032836125da565b91506135db82613574565b604082019050919050565b600060208201905081810360008301526135ff816135c3565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061363c601f836125da565b915061364782613606565b602082019050919050565b6000602082019050818103600083015261366b8161362f565b905091905056fea26469706673582212209e126ec2fe3e8371e0a14caa4b8826392fc98c13c5f1481b0cf75e07b856186164736f6c63430008090033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c806381bd4124116100de578063adcf5ec511610097578063d8445e6a11610071578063d8445e6a14610454578063dd62ed3e14610472578063f1fdf469146104a2578063f2fde38b146104be57610173565b8063adcf5ec51461040e578063bdafe0f714610418578063d5abeb011461043657610173565b806381bd4124146103265780638da5cb5b1461035657806395d89b4114610374578063a457c2d714610392578063a694fc3a146103c2578063a9059cbb146103de57610173565b806339509351116101305780633950935114610250578063410d6d36146102805780636a10721f1461029e57806370a08231146102ce578063715018a6146102fe57806376fa14411461030857610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806323b872dd146101e4578063313ce5671461021457806333e9c4b514610232575b600080fd5b6101806104da565b60405161018d9190612668565b60405180910390f35b6101b060048036038101906101ab9190612723565b61056c565b6040516101bd919061277e565b60405180910390f35b6101ce61058f565b6040516101db91906127a8565b60405180910390f35b6101fe60048036038101906101f991906127c3565b610599565b60405161020b919061277e565b60405180910390f35b61021c6105c8565b6040516102299190612832565b60405180910390f35b61023a6105d1565b60405161024791906127a8565b60405180910390f35b61026a60048036038101906102659190612723565b6105f7565b604051610277919061277e565b60405180910390f35b61028861062e565b60405161029591906127a8565b60405180910390f35b6102b860048036038101906102b3919061284d565b610853565b6040516102c591906129d9565b60405180910390f35b6102e860048036038101906102e3919061284d565b610a60565b6040516102f591906127a8565b60405180910390f35b610306610aa9565b005b610310610abd565b60405161031d91906127a8565b60405180910390f35b610340600480360381019061033b91906129fb565b610ccc565b60405161034d91906127a8565b60405180910390f35b61035e610deb565b60405161036b9190612a37565b60405180910390f35b61037c610e14565b6040516103899190612668565b60405180910390f35b6103ac60048036038101906103a79190612723565b610ea6565b6040516103b9919061277e565b60405180910390f35b6103dc60048036038101906103d791906129fb565b610f1d565b005b6103f860048036038101906103f39190612723565b610fc9565b604051610405919061277e565b60405180910390f35b610416610fec565b005b61042061120b565b60405161042d91906127a8565b60405180910390f35b61043e6114d3565b60405161044b91906127a8565b60405180910390f35b61045c6114d9565b60405161046991906127a8565b60405180910390f35b61048c60048036038101906104879190612a52565b611507565b60405161049991906127a8565b60405180910390f35b6104bc60048036038101906104b79190612a92565b61158e565b005b6104d860048036038101906104d3919061284d565b611607565b005b6060600880546104e990612b01565b80601f016020809104026020016040519081016040528092919081815260200182805461051590612b01565b80156105625780601f1061053757610100808354040283529160200191610562565b820191906000526020600020905b81548152906001019060200180831161054557829003601f168201915b5050505050905090565b60008061057761168b565b9050610584818585611693565b600191505092915050565b6000600754905090565b6000806105a461168b565b90506105b185828561185e565b6105bc8585856118ea565b60019150509392505050565b60006012905090565b6000806105dc610abd565b6105e461058f565b6105ee9190612b62565b90508091505090565b60008061060261168b565b90506106238185856106148589611507565b61061e9190612b62565b611693565b600191505092915050565b6000806040518060400160405280600081526020016003600460006003600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548154811061069c5761069b612bb8565b5b906000526020600020906002020160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548154811061071a57610719612bb8565b5b9060005260206000209060020201600101805480602002602001604051908101604052809291908181526020016000905b828210156107f157838290600052602060002090600402016040518060800160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160018201548152602001600282015481526020016003820154815250508152602001906001019061074b565b50505050815250905060005b81602001515181101561084e578160200151818151811061082157610820612bb8565b5b602002602001015160200151836108389190612b62565b92506001816108479190612b62565b90506107fd565b505090565b61085b6125b5565b6000806040518060400160405280600081526020016003600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815481106108c3576108c2612bb8565b5b9060005260206000209060020201600101805480602002602001604051908101604052809291908181526020016000905b8282101561099a57838290600052602060002090600402016040518060800160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820154815260200160028201548152602001600382015481525050815260200190600101906108f4565b50505050815250905060005b816020015151811015610a4b5760006109dc836020015183815181106109cf576109ce612bb8565b5b6020026020010151611b65565b905080836020015183815181106109f6576109f5612bb8565b5b6020026020010151606001818152505082602001518281518110610a1d57610a1c612bb8565b5b60200260200101516020015184610a349190612b62565b935050600181610a449190612b62565b90506109a6565b50818160000181815250508092505050919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ab1611bac565b610abb6000611c2a565b565b600080600090505b600380549050811015610cc857600060405180604001604052806000815260200160036004600060038781548110610b0057610aff612bb8565b5b906000526020600020906002020160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481548110610b7e57610b7d612bb8565b5b9060005260206000209060020201600101805480602002602001604051908101604052809291908181526020016000905b82821015610c5557838290600052602060002090600402016040518060800160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182015481526020016002820154815260200160038201548152505081526020019060010190610baf565b50505050815250905060005b816020015151811015610cb25781602001518181518110610c8557610c84612bb8565b5b60200260200101516020015184610c9c9190612b62565b9350600181610cab9190612b62565b9050610c61565b5050600181610cc19190612b62565b9050610ac5565b5090565b600080600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600060038281548110610d2757610d26612bb8565b5b90600052602060002090600202016001018481548110610d4a57610d49612bb8565b5b9060005260206000209060040201600101549050600060038381548110610d7457610d73612bb8565b5b90600052602060002090600202016001018581548110610d9757610d96612bb8565b5b9060005260206000209060040201600201549050610db36114d9565b826001548342610dc39190612be7565b610dcd9190612c4a565b610dd79190612c7b565b610de19190612c4a565b9350505050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060098054610e2390612b01565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4f90612b01565b8015610e9c5780601f10610e7157610100808354040283529160200191610e9c565b820191906000526020600020905b815481529060010190602001808311610e7f57829003601f168201915b5050505050905090565b600080610eb161168b565b90506000610ebf8286611507565b905083811015610f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efb90612d47565b60405180910390fd5b610f118286868403611693565b60019250505092915050565b610f2633610a60565b811115610f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5f90612dd9565b60405180910390fd5b600a54610f736105d1565b10610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa90612e91565b60405180910390fd5b610fbc81611cee565b610fc63382611ed3565b50565b600080610fd461168b565b9050610fe18185856118ea565b600191505092915050565b60006040518060400160405280600081526020016003600460006003600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548154811061105957611058612bb8565b5b906000526020600020906002020160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815481106110d7576110d6612bb8565b5b9060005260206000209060020201600101805480602002602001604051908101604052809291908181526020016000905b828210156111ae57838290600052602060002090600402016040518060800160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182015481526020016002820154815260200160038201548152505081526020019060010190611108565b50505050815250905060005b816020015151811015611207576111f3826020015182815181106111e1576111e0612bb8565b5b6020026020010151602001518261158e565b6001816112009190612b62565b90506111ba565b5050565b600080600080600080600090505b6003805490508110156114c85760006040518060400160405280600081526020016003600460006003878154811061125457611253612bb8565b5b906000526020600020906002020160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815481106112d2576112d1612bb8565b5b9060005260206000209060020201600101805480602002602001604051908101604052809291908181526020016000905b828210156113a957838290600052602060002090600402016040518060800160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182015481526020016002820154815260200160038201548152505081526020019060010190611303565b50505050815250905060005b8160200151518110156114b257600383815481106113d6576113d5612bb8565b5b906000526020600020906002020160010181815481106113f9576113f8612bb8565b5b90600052602060002090600402016001015496506003838154811061142157611420612bb8565b5b9060005260206000209060020201600101818154811061144457611443612bb8565b5b90600052602060002090600402016002015495506114606114d9565b8760015488426114709190612be7565b61147a9190612c4a565b6114849190612c7b565b61148e9190612c4a565b9450848461149c9190612b62565b93506001816114ab9190612b62565b90506113b5565b50506001816114c19190612b62565b9050611219565b508094505050505090565b600a5481565b600080600a546114e76105d1565b61a4556114f49190612c7b565b6114fe9190612c4a565b90508091505090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061159a83836120a3565b905060006115a66105d1565b826115b19190612b62565b9050600a5481106115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee90612f49565b60405180910390fd5b611601338361236c565b50505050565b61160f611bac565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561167f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167690612fdb565b60405180910390fd5b61168881611c2a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa9061306d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176a906130ff565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161185191906127a8565b60405180910390a3505050565b600061186a8484611507565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146118e457818110156118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd9061316b565b60405180910390fd5b6118e38484848403611693565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561195a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611951906131fd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c19061328f565b60405180910390fd5b6119d58383836124c4565b6000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5390613321565b60405180910390fd5b818103600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b4c91906127a8565b60405180910390a3611b5f8484846124c9565b50505050565b6000611b6f6114d9565b8260200151600154846040015142611b879190612be7565b611b919190612c4a565b611b9b9190612c7b565b611ba59190612c4a565b9050919050565b611bb461168b565b73ffffffffffffffffffffffffffffffffffffffff16611bd2610deb565b73ffffffffffffffffffffffffffffffffffffffff1614611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f9061338d565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008111611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d28906133f9565b60405180910390fd5b6000600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060004290506000821415611d8f57611d8c336124ce565b91505b60038281548110611da357611da2612bb8565b5b906000526020600020906002020160010160405180608001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018581526020018381526020016000815250908060018154018082558091505060019003906000526020600020906004020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155604082015181600201556060820151816003015550503373ffffffffffffffffffffffffffffffffffffffff167fb4caaf29adda3eefee3ad552a8e85058589bf834c7466cae4ee58787f70589ed848484604051611ec693929190613419565b60405180910390a2505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3a906134c2565b60405180910390fd5b611f4f826000836124c4565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcd90613554565b60405180910390fd5b818103600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600760008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161208a91906127a8565b60405180910390a361209e836000846124c9565b505050565b600080600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600382815481106120fe576120fd612bb8565b5b9060005260206000209060020201600101848154811061212157612120612bb8565b5b90600052602060002090600402016040518060800160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820154815260200160028201548152602001600382015481525050905084816020015110156121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee906135e6565b60405180910390fd5b600061220282611b65565b90508582602001516122149190612be7565b8260200181815250506000826020015114156122b6576003838154811061223e5761223d612bb8565b5b9060005260206000209060020201600101858154811061226157612260612bb8565b5b9060005260206000209060040201600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001820160009055600282016000905560038201600090555050612355565b8160200151600384815481106122cf576122ce612bb8565b5b906000526020600020906002020160010186815481106122f2576122f1612bb8565b5b906000526020600020906004020160010181905550426003848154811061231c5761231b612bb8565b5b9060005260206000209060020201600101868154811061233f5761233e612bb8565b5b9060005260206000209060040201600201819055505b80866123619190612b62565b935050505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d390613652565b60405180910390fd5b6123e8600083836124c4565b80600760008282546123fa9190612b62565b9250508190555080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516124ac91906127a8565b60405180910390a36124c0600083836124c9565b5050565b505050565b505050565b6000600360018160018154018082558091505003906000526020600020905050600060016003805490506125029190612be7565b9050826003828154811061251957612518612bb8565b5b906000526020600020906002020160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080915050919050565b604051806040016040528060008152602001606081525090565b600081519050919050565b600082825260208201905092915050565b60005b838110156126095780820151818401526020810190506125ee565b83811115612618576000848401525b50505050565b6000601f19601f8301169050919050565b600061263a826125cf565b61264481856125da565b93506126548185602086016125eb565b61265d8161261e565b840191505092915050565b60006020820190508181036000830152612682818461262f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126ba8261268f565b9050919050565b6126ca816126af565b81146126d557600080fd5b50565b6000813590506126e7816126c1565b92915050565b6000819050919050565b612700816126ed565b811461270b57600080fd5b50565b60008135905061271d816126f7565b92915050565b6000806040838503121561273a5761273961268a565b5b6000612748858286016126d8565b92505060206127598582860161270e565b9150509250929050565b60008115159050919050565b61277881612763565b82525050565b6000602082019050612793600083018461276f565b92915050565b6127a2816126ed565b82525050565b60006020820190506127bd6000830184612799565b92915050565b6000806000606084860312156127dc576127db61268a565b5b60006127ea868287016126d8565b93505060206127fb868287016126d8565b925050604061280c8682870161270e565b9150509250925092565b600060ff82169050919050565b61282c81612816565b82525050565b60006020820190506128476000830184612823565b92915050565b6000602082840312156128635761286261268a565b5b6000612871848285016126d8565b91505092915050565b612883816126ed565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6128be816126af565b82525050565b6080820160008201516128da60008501826128b5565b5060208201516128ed602085018261287a565b506040820151612900604085018261287a565b506060820151612913606085018261287a565b50505050565b600061292583836128c4565b60808301905092915050565b6000602082019050919050565b600061294982612889565b6129538185612894565b935061295e836128a5565b8060005b8381101561298f5781516129768882612919565b975061298183612931565b925050600181019050612962565b5085935050505092915050565b60006040830160008301516129b4600086018261287a565b50602083015184820360208601526129cc828261293e565b9150508091505092915050565b600060208201905081810360008301526129f3818461299c565b905092915050565b600060208284031215612a1157612a1061268a565b5b6000612a1f8482850161270e565b91505092915050565b612a31816126af565b82525050565b6000602082019050612a4c6000830184612a28565b92915050565b60008060408385031215612a6957612a6861268a565b5b6000612a77858286016126d8565b9250506020612a88858286016126d8565b9150509250929050565b60008060408385031215612aa957612aa861268a565b5b6000612ab78582860161270e565b9250506020612ac88582860161270e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b1957607f821691505b60208210811415612b2d57612b2c612ad2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b6d826126ed565b9150612b78836126ed565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bad57612bac612b33565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612bf2826126ed565b9150612bfd836126ed565b925082821015612c1057612c0f612b33565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c55826126ed565b9150612c60836126ed565b925082612c7057612c6f612c1b565b5b828204905092915050565b6000612c86826126ed565b9150612c91836126ed565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cca57612cc9612b33565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612d316025836125da565b9150612d3c82612cd5565b604082019050919050565b60006020820190508181036000830152612d6081612d24565b9050919050565b7f45524332303a2043616e6e6f74207374616b65206d6f7265207468616e20796f60008201527f75206f776e000000000000000000000000000000000000000000000000000000602082015250565b6000612dc36025836125da565b9150612dce82612d67565b604082019050919050565b60006020820190508181036000830152612df281612db6565b9050919050565b7f45524332303a2043616e6e6f74207374616b65207269676874206e6f772e204e60008201527f6f20617661696c61626c6520736c6f74732e2054727920616761696e206c617460208201527f6572000000000000000000000000000000000000000000000000000000000000604082015250565b6000612e7b6042836125da565b9150612e8682612df9565b606082019050919050565b60006020820190508181036000830152612eaa81612e6e565b9050919050565b7f45524332303a2043616e6e6f74206d696e74207269676874206e6f772e20546f60008201527f74616c20737570706c792065786365656465642e20547279207769746864726160208201527f77696e67206c657373206f7220616761696e206c617465720000000000000000604082015250565b6000612f336058836125da565b9150612f3e82612eb1565b606082019050919050565b60006020820190508181036000830152612f6281612f26565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fc56026836125da565b9150612fd082612f69565b604082019050919050565b60006020820190508181036000830152612ff481612fb8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006130576024836125da565b915061306282612ffb565b604082019050919050565b600060208201905081810360008301526130868161304a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006130e96022836125da565b91506130f48261308d565b604082019050919050565b60006020820190508181036000830152613118816130dc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613155601d836125da565b91506131608261311f565b602082019050919050565b6000602082019050818103600083015261318481613148565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006131e76025836125da565b91506131f28261318b565b604082019050919050565b60006020820190508181036000830152613216816131da565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006132796023836125da565b91506132848261321d565b604082019050919050565b600060208201905081810360008301526132a88161326c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061330b6026836125da565b9150613316826132af565b604082019050919050565b6000602082019050818103600083015261333a816132fe565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133776020836125da565b915061338282613341565b602082019050919050565b600060208201905081810360008301526133a68161336a565b9050919050565b7f43616e6e6f74207374616b65206e6f7468696e67000000000000000000000000600082015250565b60006133e36014836125da565b91506133ee826133ad565b602082019050919050565b60006020820190508181036000830152613412816133d6565b9050919050565b600060608201905061342e6000830186612799565b61343b6020830185612799565b6134486040830184612799565b949350505050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006134ac6021836125da565b91506134b782613450565b604082019050919050565b600060208201905081810360008301526134db8161349f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061353e6022836125da565b9150613549826134e2565b604082019050919050565b6000602082019050818103600083015261356d81613531565b9050919050565b7f5374616b696e673a2043616e6e6f74207769746864726177206d6f726520746860008201527f616e20796f752068617665207374616b65640000000000000000000000000000602082015250565b60006135d06032836125da565b91506135db82613574565b604082019050919050565b600060208201905081810360008301526135ff816135c3565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061363c601f836125da565b915061364782613606565b602082019050919050565b6000602082019050818103600083015261366b8161362f565b905091905056fea26469706673582212209e126ec2fe3e8371e0a14caa4b8826392fc98c13c5f1481b0cf75e07b856186164736f6c63430008090033
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.