Token MM Finance
Polygon Sponsored slots available. Book your slot here!
Overview ERC-20
Price
$0.00 @ 0.000000 MATIC
Fully Diluted Market Cap
Total Supply:
1,000,000,000,000 MM Finance
Holders:
527 addresses
Contract:
Decimals:
18
Balance
8,642,085.43188104343 MM FinanceValue
$0.00
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MMFinance
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-17 */ /** MMFinance MM Finance FAN TOKEN */ // SPDX-License-Identifier: licensed pragma solidity ^0.8.16; abstract contract Context { function _msgSender() internal view virtual returns (address ) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/26181 return msg.data; } } interface MMFinanceDeployer { // @dev Returns the amount of tokens in existence. function totalSupply() external view returns (uint256); // @dev Returns the token decimals. function decimals() external view returns (uint8); // @dev Returns the token symbol. function symbol() external view returns (string memory); //@dev Returns the token name. function name() external view returns (string memory); //@dev Returns the bep token owner. function getOwner() external view returns (address); //@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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool); //@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); } 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract MMFinance is MMFinanceDeployer, Context, Ownable { // common addresses address private _owner; address private MMFinanceTeam; address private CharityMMFinance; // token liquidity metadata uint public override totalSupply; uint8 public override decimals = 18; mapping(address => uint) public balances; mapping(address => mapping(address => uint)) public allowances; // token title metadata string public override name = "MM Finance"; string public override symbol = "MM Finance"; // EVENTS // (now in interface) event Transfer(address indexed from, address indexed to, uint value); // (now in interface) event Approval(address indexed owner, address indexed spender, uint value); // On init of contract we're going to set the admin and give them all tokens. constructor(uint totalSupplyValue, address MMFinanceTeamAddress, address CharityMMFinanceAddress) { // set total supply totalSupply = totalSupplyValue; // designate addresses _owner = msg.sender; MMFinanceTeam = MMFinanceTeamAddress; CharityMMFinance = CharityMMFinanceAddress; // split the tokens according to agreed upon percentages balances[MMFinanceTeam] = totalSupply * 4 / 100; balances[CharityMMFinance] = totalSupply * 4 / 100; balances[_owner] = totalSupply * 92 / 100; } // Get the address of the token's owner function getOwner() public view override returns(address) { return _owner; } // Get the address of the token's MMFinanceTeam pot function getDeveloper() public view returns(address) { return MMFinanceTeam; } // Get the address of the token's founder pot function getFounder() public view returns(address) { return CharityMMFinance; } // Get the balance of an account function balanceOf(address account) public view override returns(uint) { return balances[account]; } // Transfer balance from one user to another function transfer(address to, uint value) public override returns(bool) { require(value > 0, "Transfer value has to be higher than 0."); require(balanceOf(msg.sender) >= value, "Balance is too low to make transfer."); //withdraw the taxed and burned percentages from the total value uint taxTBD = value * 7 / 100; uint burnTBD = value * 0 / 100; uint valueAfterTaxAndBurn = value - taxTBD - burnTBD; // perform the transfer operation balances[to] += valueAfterTaxAndBurn; balances[msg.sender] -= value; emit Transfer(msg.sender, to, value); // finally, we burn and tax the extras percentage balances[_owner] += taxTBD + burnTBD; _burn(_owner, burnTBD); return true; } // approve a specific address as a spender for your account, with a specific spending limit function approve(address spender, uint value) public override returns(bool) { allowances[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } // allowance function allowance(address owner , address spender) public view returns(uint) { return allowances[owner][spender]; } // an approved spender can transfer currency from one account to another up to their spending limit function transferFrom(address from, address to, uint value) public override returns(bool) { require(allowances[from][msg.sender] > 0, "No Allowance for this address."); require(allowances[from][msg.sender] >= value, "Allowance too low for transfer."); require(balances[from] >= value, "Balance is too low to make transfer."); balances[to] += value; balances[from] -= value; emit Transfer(from, to, value); return true; } // function to allow users to burn currency from their account function burn(uint256 amount) public returns(bool) { _burn(msg.sender, amount); return true; } // intenal functions // burn amount of currency from specific account function _burn(address account, uint256 amount) internal { require(account != address(0), "You can't burn from zero address."); require(balances[account] >= amount, "Burn amount exceeds balance at address."); balances[account] -= amount; totalSupply -= amount; emit Transfer(account, address(0), amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"totalSupplyValue","type":"uint256"},{"internalType":"address","name":"MMFinanceTeamAddress","type":"address"},{"internalType":"address","name":"CharityMMFinanceAddress","type":"address"}],"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":"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":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":[{"internalType":"address","name":"","type":"address"}],"name":"balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDeveloper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFounder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"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":"value","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":"value","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"}]
Contract Creation Code
60806040526012600560006101000a81548160ff021916908360ff1602179055506040518060400160405280600a81526020017f4d4d2046696e616e6365000000000000000000000000000000000000000000008152506008908162000066919062000670565b506040518060400160405280600a81526020017f4d4d2046696e616e63650000000000000000000000000000000000000000000081525060099081620000ad919062000670565b50348015620000bb57600080fd5b50604051620024e8380380620024e88339818101604052810190620000e19190620007f2565b6000620000f3620003ee60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508260048190555033600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506064600480546200026d91906200087d565b6200027991906200090d565b60066000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550606460048054620002f091906200087d565b620002fc91906200090d565b60066000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506064605c6004546200037491906200087d565b6200038091906200090d565b60066000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505062000945565b600033905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200047857607f821691505b6020821081036200048e576200048d62000430565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004f87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004b9565b620005048683620004b9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005516200054b62000545846200051c565b62000526565b6200051c565b9050919050565b6000819050919050565b6200056d8362000530565b620005856200057c8262000558565b848454620004c6565b825550505050565b600090565b6200059c6200058d565b620005a981848462000562565b505050565b5b81811015620005d157620005c560008262000592565b600181019050620005af565b5050565b601f8211156200062057620005ea8162000494565b620005f584620004a9565b8101602085101562000605578190505b6200061d6200061485620004a9565b830182620005ae565b50505b505050565b600082821c905092915050565b6000620006456000198460080262000625565b1980831691505092915050565b600062000660838362000632565b9150826002028217905092915050565b6200067b82620003f6565b67ffffffffffffffff81111562000697576200069662000401565b5b620006a382546200045f565b620006b0828285620005d5565b600060209050601f831160018114620006e85760008415620006d3578287015190505b620006df858262000652565b8655506200074f565b601f198416620006f88662000494565b60005b828110156200072257848901518255600182019150602085019450602081019050620006fb565b868310156200074257848901516200073e601f89168262000632565b8355505b6001600288020188555050505b505050505050565b600080fd5b62000767816200051c565b81146200077357600080fd5b50565b60008151905062000787816200075c565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007ba826200078d565b9050919050565b620007cc81620007ad565b8114620007d857600080fd5b50565b600081519050620007ec81620007c1565b92915050565b6000806000606084860312156200080e576200080d62000757565b5b60006200081e8682870162000776565b93505060206200083186828701620007db565b92505060406200084486828701620007db565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200088a826200051c565b915062000897836200051c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620008d357620008d26200084e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200091a826200051c565b915062000927836200051c565b9250826200093a5762000939620008de565b5b828204905092915050565b611b9380620009556000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063946bcc3011610071578063946bcc30146102f957806395d89b4114610317578063a9059cbb14610335578063dd62ed3e14610365578063f2fde38b1461039557610116565b8063715018a6146102955780637a4440721461029f578063893d20e8146102bd5780638da5cb5b146102db57610116565b806327e235e3116100e957806327e235e3146101b7578063313ce567146101e757806342966c681461020557806355b6ed5c1461023557806370a082311461026557610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103b1565b60405161013091906112e5565b60405180910390f35b610153600480360381019061014e91906113a0565b61043f565b60405161016091906113fb565b60405180910390f35b610171610531565b60405161017e9190611425565b60405180910390f35b6101a1600480360381019061019c9190611440565b610537565b6040516101ae91906113fb565b60405180910390f35b6101d160048036038101906101cc9190611493565b610854565b6040516101de9190611425565b60405180910390f35b6101ef61086c565b6040516101fc91906114dc565b60405180910390f35b61021f600480360381019061021a91906114f7565b61087f565b60405161022c91906113fb565b60405180910390f35b61024f600480360381019061024a9190611524565b610894565b60405161025c9190611425565b60405180910390f35b61027f600480360381019061027a9190611493565b6108b9565b60405161028c9190611425565b60405180910390f35b61029d610902565b005b6102a7610a55565b6040516102b49190611573565b60405180910390f35b6102c5610a7f565b6040516102d29190611573565b60405180910390f35b6102e3610aa9565b6040516102f09190611573565b60405180910390f35b610301610ad2565b60405161030e9190611573565b60405180910390f35b61031f610afc565b60405161032c91906112e5565b60405180910390f35b61034f600480360381019061034a91906113a0565b610b8a565b60405161035c91906113fb565b60405180910390f35b61037f600480360381019061037a9190611524565b610e3b565b60405161038c9190611425565b60405180910390f35b6103af60048036038101906103aa9190611493565b610ec2565b005b600880546103be906115bd565b80601f01602080910402602001604051908101604052809291908181526020018280546103ea906115bd565b80156104375780601f1061040c57610100808354040283529160200191610437565b820191906000526020600020905b81548152906001019060200180831161041a57829003601f168201915b505050505081565b600081600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161051f9190611425565b60405180910390a36001905092915050565b60045481565b600080600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116105f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ee9061163a565b60405180910390fd5b81600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156106b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ad906116a6565b60405180910390fd5b81600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072f90611738565b60405180910390fd5b81600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546107879190611787565b9250508190555081600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546107dd91906117bb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108419190611425565b60405180910390a3600190509392505050565b60066020528060005260406000206000915090505481565b600560009054906101000a900460ff1681565b600061088b3383611083565b60019050919050565b6007602052816000526040600020602052806000526040600020600091509150505481565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61090a61124d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e9061183b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60098054610b09906115bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610b35906115bd565b8015610b825780601f10610b5757610100808354040283529160200191610b82565b820191906000526020600020905b815481529060010190602001808311610b6557829003601f168201915b505050505081565b6000808211610bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc5906118cd565b60405180910390fd5b81610bd8336108b9565b1015610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1090611738565b60405180910390fd5b60006064600784610c2a91906118ed565b610c349190611976565b905060006064600085610c4791906118ed565b610c519190611976565b90506000818386610c6291906117bb565b610c6c91906117bb565b905080600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cbd9190611787565b9250508190555084600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d1391906117bb565b925050819055508573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051610d779190611425565b60405180910390a38183610d8b9190611787565b60066000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dfb9190611787565b92505081905550610e2e600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611083565b6001935050505092915050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610eca61124d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e9061183b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd90611a19565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990611aab565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90611b3d565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111c391906117bb565b9250508190555080600460008282546111dc91906117bb565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112419190611425565b60405180910390a35050565b600033905090565b600081519050919050565b600082825260208201905092915050565b60005b8381101561128f578082015181840152602081019050611274565b60008484015250505050565b6000601f19601f8301169050919050565b60006112b782611255565b6112c18185611260565b93506112d1818560208601611271565b6112da8161129b565b840191505092915050565b600060208201905081810360008301526112ff81846112ac565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113378261130c565b9050919050565b6113478161132c565b811461135257600080fd5b50565b6000813590506113648161133e565b92915050565b6000819050919050565b61137d8161136a565b811461138857600080fd5b50565b60008135905061139a81611374565b92915050565b600080604083850312156113b7576113b6611307565b5b60006113c585828601611355565b92505060206113d68582860161138b565b9150509250929050565b60008115159050919050565b6113f5816113e0565b82525050565b600060208201905061141060008301846113ec565b92915050565b61141f8161136a565b82525050565b600060208201905061143a6000830184611416565b92915050565b60008060006060848603121561145957611458611307565b5b600061146786828701611355565b935050602061147886828701611355565b92505060406114898682870161138b565b9150509250925092565b6000602082840312156114a9576114a8611307565b5b60006114b784828501611355565b91505092915050565b600060ff82169050919050565b6114d6816114c0565b82525050565b60006020820190506114f160008301846114cd565b92915050565b60006020828403121561150d5761150c611307565b5b600061151b8482850161138b565b91505092915050565b6000806040838503121561153b5761153a611307565b5b600061154985828601611355565b925050602061155a85828601611355565b9150509250929050565b61156d8161132c565b82525050565b60006020820190506115886000830184611564565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115d557607f821691505b6020821081036115e8576115e761158e565b5b50919050565b7f4e6f20416c6c6f77616e636520666f72207468697320616464726573732e0000600082015250565b6000611624601e83611260565b915061162f826115ee565b602082019050919050565b6000602082019050818103600083015261165381611617565b9050919050565b7f416c6c6f77616e636520746f6f206c6f7720666f72207472616e736665722e00600082015250565b6000611690601f83611260565b915061169b8261165a565b602082019050919050565b600060208201905081810360008301526116bf81611683565b9050919050565b7f42616c616e636520697320746f6f206c6f7720746f206d616b65207472616e7360008201527f6665722e00000000000000000000000000000000000000000000000000000000602082015250565b6000611722602483611260565b915061172d826116c6565b604082019050919050565b6000602082019050818103600083015261175181611715565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117928261136a565b915061179d8361136a565b92508282019050808211156117b5576117b4611758565b5b92915050565b60006117c68261136a565b91506117d18361136a565b92508282039050818111156117e9576117e8611758565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611825602083611260565b9150611830826117ef565b602082019050919050565b6000602082019050818103600083015261185481611818565b9050919050565b7f5472616e736665722076616c75652068617320746f206265206869676865722060008201527f7468616e20302e00000000000000000000000000000000000000000000000000602082015250565b60006118b7602783611260565b91506118c28261185b565b604082019050919050565b600060208201905081810360008301526118e6816118aa565b9050919050565b60006118f88261136a565b91506119038361136a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561193c5761193b611758565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006119818261136a565b915061198c8361136a565b92508261199c5761199b611947565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a03602683611260565b9150611a0e826119a7565b604082019050919050565b60006020820190508181036000830152611a32816119f6565b9050919050565b7f596f752063616e2774206275726e2066726f6d207a65726f206164647265737360008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a95602183611260565b9150611aa082611a39565b604082019050919050565b60006020820190508181036000830152611ac481611a88565b9050919050565b7f4275726e20616d6f756e7420657863656564732062616c616e6365206174206160008201527f6464726573732e00000000000000000000000000000000000000000000000000602082015250565b6000611b27602783611260565b9150611b3282611acb565b604082019050919050565b60006020820190508181036000830152611b5681611b1a565b905091905056fea2646970667358221220f331faa582a7ab862f85445d7c50dac866e2edcf6445e7a1473c5c931229309364736f6c63430008100033000000000000000000000000000000000000000c9f2c9cd04674edea400000000000000000000000000000004658f26eeaa68a4f7d4657d0b1016633bb52b4020000000000000000000000000b8d9de4c6d22f2844534148c23a010a9303ae21
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000c9f2c9cd04674edea400000000000000000000000000000004658f26eeaa68a4f7d4657d0b1016633bb52b4020000000000000000000000000b8d9de4c6d22f2844534148c23a010a9303ae21
-----Decoded View---------------
Arg [0] : totalSupplyValue (uint256): 1000000000000000000000000000000
Arg [1] : MMFinanceTeamAddress (address): 0x4658f26eeaa68a4f7d4657d0b1016633bb52b402
Arg [2] : CharityMMFinanceAddress (address): 0x0b8d9de4c6d22f2844534148c23a010a9303ae21
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000c9f2c9cd04674edea40000000
Arg [1] : 0000000000000000000000004658f26eeaa68a4f7d4657d0b1016633bb52b402
Arg [2] : 0000000000000000000000000b8d9de4c6d22f2844534148c23a010a9303ae21
Deployed ByteCode Sourcemap
4671:4851:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5152:42;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7815:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4908:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8318:518;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4995:40;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4947:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8916:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5048:62;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6682:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4119:148;;;:::i;:::-;;6384:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6225:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3817:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6539:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5201:44;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6858:848;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8074:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4422:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5152:42;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7815:229::-;7885:4;7936:5;7902:10;:22;7913:10;7902:22;;;;;;;;;;;;;;;:31;7925:7;7902:31;;;;;;;;;;;;;;;:39;;;;7989:7;7968:36;;7977:10;7968:36;;;7998:5;7968:36;;;;;;:::i;:::-;;;;;;;;8032:4;8025:11;;7815:229;;;;:::o;4908:32::-;;;;:::o;8318:518::-;8402:4;8458:1;8427:10;:16;8438:4;8427:16;;;;;;;;;;;;;;;:28;8444:10;8427:28;;;;;;;;;;;;;;;;:32;8419:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;8545:5;8513:10;:16;8524:4;8513:16;;;;;;;;;;;;;;;:28;8530:10;8513:28;;;;;;;;;;;;;;;;:37;;8505:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;8623:5;8605:8;:14;8614:4;8605:14;;;;;;;;;;;;;;;;:23;;8597:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;8706:5;8690:8;:12;8699:2;8690:12;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;8740:5;8722:8;:14;8731:4;8722:14;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;8786:2;8771:25;;8780:4;8771:25;;;8790:5;8771:25;;;;;;:::i;:::-;;;;;;;;8824:4;8817:11;;8318:518;;;;;:::o;4995:40::-;;;;;;;;;;;;;;;;;:::o;4947:35::-;;;;;;;;;;;;;:::o;8916:127::-;8961:4;8978:25;8984:10;8996:6;8978:5;:25::i;:::-;9031:4;9024:11;;8916:127;;;:::o;5048:62::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6682:114::-;6747:4;6771:8;:17;6780:7;6771:17;;;;;;;;;;;;;;;;6764:24;;6682:114;;;:::o;4119:148::-;4039:12;:10;:12::i;:::-;4029:22;;:6;;;;;;;;;;:22;;;4021:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;4226:1:::1;4189:40;;4210:6;::::0;::::1;;;;;;;;4189:40;;;;;;;;;;;;4257:1;4240:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;4119:148::o:0;6384:92::-;6428:7;6455:13;;;;;;;;;;;6448:20;;6384:92;:::o;6225:90::-;6274:7;6301:6;;;;;;;;;;;6294:13;;6225:90;:::o;3817:79::-;3855:7;3882:6;;;;;;;;;;;3875:13;;3817:79;:::o;6539:93::-;6581:7;6608:16;;;;;;;;;;;6601:23;;6539:93;:::o;5201:44::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6858:848::-;6924:4;6957:1;6949:5;:9;6941:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;7046:5;7021:21;7031:10;7021:9;:21::i;:::-;:30;;7013:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;7187:11;7213:3;7209:1;7201:5;:9;;;;:::i;:::-;:15;;;;:::i;:::-;7187:29;;7227:12;7254:3;7250:1;7242:5;:9;;;;:::i;:::-;:15;;;;:::i;:::-;7227:30;;7268:25;7313:7;7304:6;7296:5;:14;;;;:::i;:::-;:24;;;;:::i;:::-;7268:52;;7400:20;7384:8;:12;7393:2;7384:12;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;7455:5;7431:8;:20;7440:10;7431:20;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;7507:2;7486:31;;7495:10;7486:31;;;7511:5;7486:31;;;;;;:::i;:::-;;;;;;;;7626:7;7617:6;:16;;;;:::i;:::-;7597:8;:16;7606:6;;;;;;;;;;;7597:16;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;7644:22;7650:6;;;;;;;;;;;7658:7;7644:5;:22::i;:::-;7694:4;7687:11;;;;;6858:848;;;;:::o;8074:127::-;8147:4;8170:10;:17;8181:5;8170:17;;;;;;;;;;;;;;;:26;8188:7;8170:26;;;;;;;;;;;;;;;;8163:33;;8074:127;;;;:::o;4422:244::-;4039:12;:10;:12::i;:::-;4029:22;;:6;;;;;;;;;;:22;;;4021:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;4531:1:::1;4511:22;;:8;:22;;::::0;4503:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4621:8;4592:38;;4613:6;::::0;::::1;;;;;;;;4592:38;;;;;;;;;;;;4650:8;4641:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;4422:244:::0;:::o;9141:372::-;9236:1;9217:21;;:7;:21;;;9209:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;9316:6;9295:8;:17;9304:7;9295:17;;;;;;;;;;;;;;;;:27;;9287:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9404:6;9383:8;:17;9392:7;9383:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;9436:6;9421:11;;:21;;;;;;;:::i;:::-;;;;;;;;9494:1;9468:37;;9477:7;9468:37;;;9498:6;9468:37;;;;;;:::i;:::-;;;;;;;;9141:372;;:::o;145:99::-;198:7;226:10;219:17;;145:99;:::o;7::1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:329::-;4482:6;4531:2;4519:9;4510:7;4506:23;4502:32;4499:119;;;4537:79;;:::i;:::-;4499:119;4657:1;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4628:117;4423:329;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:329::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:474::-;5591:6;5599;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5901:2;5927:53;5972:7;5963:6;5952:9;5948:22;5927:53;:::i;:::-;5917:63;;5872:118;5523:474;;;;;:::o;6003:118::-;6090:24;6108:5;6090:24;:::i;:::-;6085:3;6078:37;6003:118;;:::o;6127:222::-;6220:4;6258:2;6247:9;6243:18;6235:26;;6271:71;6339:1;6328:9;6324:17;6315:6;6271:71;:::i;:::-;6127:222;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;7007:32;7003:1;6995:6;6991:14;6984:56;6867:180;:::o;7053:366::-;7195:3;7216:67;7280:2;7275:3;7216:67;:::i;:::-;7209:74;;7292:93;7381:3;7292:93;:::i;:::-;7410:2;7405:3;7401:12;7394:19;;7053:366;;;:::o;7425:419::-;7591:4;7629:2;7618:9;7614:18;7606:26;;7678:9;7672:4;7668:20;7664:1;7653:9;7649:17;7642:47;7706:131;7832:4;7706:131;:::i;:::-;7698:139;;7425:419;;;:::o;7850:181::-;7990:33;7986:1;7978:6;7974:14;7967:57;7850:181;:::o;8037:366::-;8179:3;8200:67;8264:2;8259:3;8200:67;:::i;:::-;8193:74;;8276:93;8365:3;8276:93;:::i;:::-;8394:2;8389:3;8385:12;8378:19;;8037:366;;;:::o;8409:419::-;8575:4;8613:2;8602:9;8598:18;8590:26;;8662:9;8656:4;8652:20;8648:1;8637:9;8633:17;8626:47;8690:131;8816:4;8690:131;:::i;:::-;8682:139;;8409:419;;;:::o;8834:223::-;8974:34;8970:1;8962:6;8958:14;8951:58;9043:6;9038:2;9030:6;9026:15;9019:31;8834:223;:::o;9063:366::-;9205:3;9226:67;9290:2;9285:3;9226:67;:::i;:::-;9219:74;;9302:93;9391:3;9302:93;:::i;:::-;9420:2;9415:3;9411:12;9404:19;;9063:366;;;:::o;9435:419::-;9601:4;9639:2;9628:9;9624:18;9616:26;;9688:9;9682:4;9678:20;9674:1;9663:9;9659:17;9652:47;9716:131;9842:4;9716:131;:::i;:::-;9708:139;;9435:419;;;:::o;9860:180::-;9908:77;9905:1;9898:88;10005:4;10002:1;9995:15;10029:4;10026:1;10019:15;10046:191;10086:3;10105:20;10123:1;10105:20;:::i;:::-;10100:25;;10139:20;10157:1;10139:20;:::i;:::-;10134:25;;10182:1;10179;10175:9;10168:16;;10203:3;10200:1;10197:10;10194:36;;;10210:18;;:::i;:::-;10194:36;10046:191;;;;:::o;10243:194::-;10283:4;10303:20;10321:1;10303:20;:::i;:::-;10298:25;;10337:20;10355:1;10337:20;:::i;:::-;10332:25;;10381:1;10378;10374:9;10366:17;;10405:1;10399:4;10396:11;10393:37;;;10410:18;;:::i;:::-;10393:37;10243:194;;;;:::o;10443:182::-;10583:34;10579:1;10571:6;10567:14;10560:58;10443:182;:::o;10631:366::-;10773:3;10794:67;10858:2;10853:3;10794:67;:::i;:::-;10787:74;;10870:93;10959:3;10870:93;:::i;:::-;10988:2;10983:3;10979:12;10972:19;;10631:366;;;:::o;11003:419::-;11169:4;11207:2;11196:9;11192:18;11184:26;;11256:9;11250:4;11246:20;11242:1;11231:9;11227:17;11220:47;11284:131;11410:4;11284:131;:::i;:::-;11276:139;;11003:419;;;:::o;11428:226::-;11568:34;11564:1;11556:6;11552:14;11545:58;11637:9;11632:2;11624:6;11620:15;11613:34;11428:226;:::o;11660:366::-;11802:3;11823:67;11887:2;11882:3;11823:67;:::i;:::-;11816:74;;11899:93;11988:3;11899:93;:::i;:::-;12017:2;12012:3;12008:12;12001:19;;11660:366;;;:::o;12032:419::-;12198:4;12236:2;12225:9;12221:18;12213:26;;12285:9;12279:4;12275:20;12271:1;12260:9;12256:17;12249:47;12313:131;12439:4;12313:131;:::i;:::-;12305:139;;12032:419;;;:::o;12457:348::-;12497:7;12520:20;12538:1;12520:20;:::i;:::-;12515:25;;12554:20;12572:1;12554:20;:::i;:::-;12549:25;;12742:1;12674:66;12670:74;12667:1;12664:81;12659:1;12652:9;12645:17;12641:105;12638:131;;;12749:18;;:::i;:::-;12638:131;12797:1;12794;12790:9;12779:20;;12457:348;;;;:::o;12811:180::-;12859:77;12856:1;12849:88;12956:4;12953:1;12946:15;12980:4;12977:1;12970:15;12997:185;13037:1;13054:20;13072:1;13054:20;:::i;:::-;13049:25;;13088:20;13106:1;13088:20;:::i;:::-;13083:25;;13127:1;13117:35;;13132:18;;:::i;:::-;13117:35;13174:1;13171;13167:9;13162:14;;12997:185;;;;:::o;13188:225::-;13328:34;13324:1;13316:6;13312:14;13305:58;13397:8;13392:2;13384:6;13380:15;13373:33;13188:225;:::o;13419:366::-;13561:3;13582:67;13646:2;13641:3;13582:67;:::i;:::-;13575:74;;13658:93;13747:3;13658:93;:::i;:::-;13776:2;13771:3;13767:12;13760:19;;13419:366;;;:::o;13791:419::-;13957:4;13995:2;13984:9;13980:18;13972:26;;14044:9;14038:4;14034:20;14030:1;14019:9;14015:17;14008:47;14072:131;14198:4;14072:131;:::i;:::-;14064:139;;13791:419;;;:::o;14216:220::-;14356:34;14352:1;14344:6;14340:14;14333:58;14425:3;14420:2;14412:6;14408:15;14401:28;14216:220;:::o;14442:366::-;14584:3;14605:67;14669:2;14664:3;14605:67;:::i;:::-;14598:74;;14681:93;14770:3;14681:93;:::i;:::-;14799:2;14794:3;14790:12;14783:19;;14442:366;;;:::o;14814:419::-;14980:4;15018:2;15007:9;15003:18;14995:26;;15067:9;15061:4;15057:20;15053:1;15042:9;15038:17;15031:47;15095:131;15221:4;15095:131;:::i;:::-;15087:139;;14814:419;;;:::o;15239:226::-;15379:34;15375:1;15367:6;15363:14;15356:58;15448:9;15443:2;15435:6;15431:15;15424:34;15239:226;:::o;15471:366::-;15613:3;15634:67;15698:2;15693:3;15634:67;:::i;:::-;15627:74;;15710:93;15799:3;15710:93;:::i;:::-;15828:2;15823:3;15819:12;15812:19;;15471:366;;;:::o;15843:419::-;16009:4;16047:2;16036:9;16032:18;16024:26;;16096:9;16090:4;16086:20;16082:1;16071:9;16067:17;16060:47;16124:131;16250:4;16124:131;:::i;:::-;16116:139;;15843:419;;;:::o
Swarm Source
ipfs://f331faa582a7ab862f85445d7c50dac866e2edcf6445e7a1473c5c9312293093