logo DERO HE BlockChain Explorer(v1) Mainnet

Tx hash: 85132089f5de0c43136afb2bb79cb85ca3f10d58e63b8bc8dd462fa0eb3962bf Type SC

Block: 84ea6333ca1f6345dbcdd427bd236f72cd99c0635444801e06e6d445e5b2c357 (VALID)
built BLID : 0a92671b16769c2b646ad1c94807821d04f8b65e4272b2ecd2e510444736e6e2
Tx RootHash: 740a0b2992bb1885c1828fbdb7a1bdf18e6c37801a4ea3b5183dc9f311f8b696 built height : 37506
Timestamp: 1646619203001 Timestamp [UTC]: 2022-03-07 02:13:23 Age [y:d:h:m:s]: 31228:54:45.374
Block: 37510 Fee: 0.22893 Tx size: 16.497 kB
Tx version: 1 No of confirmations: 5958773 Signature type: DERO_HOMOMORPHIC
Extra:
DERO : 2 inputs/outputs (RING size) Fees 0.22893 Deposited to SC 0.00000
Sender : dero1qyvqpdftj8r6005xs20rnflakmwa5pdxg9vcjzdcuywq2t8skqhvwqglt6x0g
address
dero1qyvqpdftj8r6005xs20rnflakmwa5pdxg9vcjzdcuywq2t8skqhvwqglt6x0g
dero1qy23hnjqdgslelhcta6yf53j22292haunf29ncan5y6lr9dfj6zmyqqtxe5kw
SC Balance: 0.00000 DERO
SC CODE:
  
SC Arguments: [Name:SC_ACTION Type:uint64 Value:'1' Name:SC_CODE Type:string Value:'/* DERO-ESCROW SMART CONTRACT --- desc-p2p-asset-exchange is a DERO-HE Smart contract. DERO uses a version of BASIC called DVM-BASIC This smart contract assumes two parties, a seller and a buyer This smart contract also assumes that the two parties are exchanging tokens, not DERO. For DERO-Token exchange, please see desc-p2p-dero-exchange. Theoretically, a desc can have more than two people who are exchanging assets. Additionally, a desc could have more than two assets being exchanged. A seller who wanted to make use of DERO-HE smart contracts would follow these steps to conduct a sale on the DERO network. This process is called using a desc to exchange funds. It is presupposed that the seller and the buyer are already using derod, dero-wallet-cli, and terminal. It is outside the scope of a desc to teach this, and there is lots of documentation at dero.io. It is pressumed that people need desc to do different things, but it is essentially an exchange of assets. As each desc is used for different exchanges of assets, desc assumes that you will be modifying the code before you deploy it Knowing that people will modify and change this contract to their needs, desc has been crafted with a set of steps to help users make changes. This desc has been written to aid the users in their transaction. Please follow the steps. --- Step 1: Establish Baseline Understanding The users of desc must understand that they will be depositing assets into a smart contract. The seller understands that they must seed the contract with the assets they want to pass over a desc This means that if you want a quantity of assetOne, the contract must contain any quantity of assetOne This also means that if you want assetOne, the contract must contain assetTwo There are risks to depositing assets into a deterministic, unforgiving system. The users assume all risk using and/or modifying this contract. When you are okay with this, please move to Step 2. */ Function Deposit() Uint64 20 RETURN 0 End Function /* Step 2 Establish Exchange Rate The following Function establishes the rate of exchange. In the example below, you can see that the "ASSETVALUE(incoming)" will be divided by 10 Therefore, the amount that will be going out will be a 10th of what comes in. Conversly, you could change the "/10" to be "*10". This means that you would send out 10 times what you have coming in. Take a moment to consider what you want the exchange rate to be and make that change now. */ Function Interchange(incoming String, outgoing String) Uint64 10 SEND_ASSET_TO_ADDRESS(SIGNER(),ASSETVALUE(incoming)/10, outgoing) 20 RETURN 0 End Function /* Step 3: Establish Privacy Settings This contact can either be public or private. We have made desc a private exchange, by default. The contract's code will still be public, eg the exchange rate. A private desc will not not expose the assets, eg which assets. This contract has an owner, and that owner will be stored in an obfuscated way once the contract is depoloyed It is highly recommended that you maintain ownership of the contract, you never know when you need to make ammendments If you want to eliminate the privacy of this exchange, simply delete the word private from the function below */ Function InitializePrivate() Uint64 10 STORE("owner", SIGNER()) // store in DB ["owner"] = address 40 RETURN 0 End Function /* Step 4: Deploy the contract 4.a. The seller would need to have derod running locally in this example 4.b. The seller would then need to set their wallet to rpc server mode and bind the rpc address Ex. dero-wallet-cli-linux-amd64 --rpc-server --rpc-bind=127.0.0.1:40403 4.c. And the seller of the contract creates the contract by creating and installing a desc.bas to the network: curl --request POST --data-binary @desc.bas http://127.0.0.1:40403/install_sc 4.d. The terminal would provide an output "TXID", this is the SCID of the desc. 4.e. Please provide the TXID to the buyer to review and transact Step 5: Deposit the asset you want to receive in the exchange 5.a. Where it says "Interchange-SCID" below, change it with the TXID you received in the last step. 5.b. Remember, deposit a quantity of the asset that you want from the exchange Thusly, where it says "ASSET_ONE_SCID", you must input the SCID of the asset you want 5.c. And where it says AssetOneCount, you need to put in a non-negative, whole number to the fifth decimal Ex. 1000000 is 10.0 Ex. 120000 is 1.2 Ex. 123 is 0.00123 6.d. Please make the necessary changes to the command below and enter it into the terminal. curl --silent http://127.0.0.1:40403/json_rpc -d '{"jsonrpc":"2.0","id":"0","method":"transfer","params":{"scid":"'"Interchange-SCID"'","ringsize":2, "sc_rpc":[{"name":"entrypoint","datatype":"S","value":"Deposit"}], "transfers": [ {"scid":"'"ASSET_ONE_SCID"'", "burn":AssetOneCount_DEPOSITED_TO_EXCHANGE}] }}' -H 'Content-Type: application/json' Step 6. Deposit the asset you will be giving in the exchange 6.a. Where it says "Interchange-SCID", you need to change it with the TXID you received in the last step. 6.b. Remember, you have to deposit a quantity of the asset that you'll give in the exchange Thusly, where it says "ASSET_TWO_SCID", you must input the SCID of the asset you want 6.c. And where it says AssetTwoCount, you need to put in a non-negative, whole number to the fifth decimal. See 5.c. above for examples 6.d. Please make the necessary changes to the command below and enter it into the terminal. curl --silent http://127.0.0.1:40403/json_rpc -d '{"jsonrpc":"2.0","id":"0","method":"transfer","params":{"scid":"'"Interchange-SCID"'","ringsize":2, "sc_rpc":[{"name":"entrypoint","datatype":"S","value":"Deposit"}], "transfers": [ {"scid":"'"ASSET_TWO_SCID"'", "burn":AssetTwoCount_DEPOSITED_TO_EXCHANGE}] }}' -H 'Content-Type: application/json' Step 7: Buyer's Portion of Escrow instructions 7.a. Where it says "Interchange-SCID", please replace that with the TXID from 4.d. 7.b. Where it says "ASSET_ONE_SCID", please replace with the SCID found in 5.b. 7.c. Where it says "ASSET_TWO_SCID", please replace with the SCID found in 6.b. 7.d. Where it says AssetOneCount, please replace with the amount that will be leaving the buyer's wallet 7.e. Copy the command and paste it in the Buyer's Escrow Instructions below, part D curl --silent http://127.0.0.1:40403/json_rpc -d '{"jsonrpc":"2.0","id":"0","method":"transfer","params":{"scid":"'"Interchange-SCID"'","ringsize":2, "sc_rpc":[{"name":"entrypoint","datatype":"S","value":"Interchange"},{"name":"incoming","datatype":"H","value":"'"ASSET_ONE_SCID"'"},{"name":"outgoing","datatype":"H","value":"'"ASSET_TWO_SCID"'"}], "transfers": [{"scid":"'"ASSET_ONE_SCID"'", "burn":AssetOneCount_TO_BE__Converted}] }}' -H 'Content-Type: application/json' 7.f. The buyer may confirm the exchange by typing following command balance in their wallet, followed by the SCID they exchanged Ex. balance 30b84e9ab5baeee7195e7e1ccb1f533b7402beb2d3cfa97216a6d80c01056f66 Step 8: Withdraw Asset From Exchange To-Do */ // if signer is owner, withdraw any requested funds // if everthing is okay, they will be showing in signers wallet Function Withdraw(amount Uint64, asset String) Uint64 10 IF LOAD("owner") == SIGNER() THEN GOTO 30 20 RETURN 1 30 SEND_ASSET_TO_ADDRESS(SIGNER(),amount,asset) 40 RETURN 0 End Function // everything below this is supplementary and not required // This function is used to change owner // owner is an string form of address Function TransferOwnership(newowner String) Uint64 10 IF LOAD("owner") == SIGNER() THEN GOTO 30 20 RETURN 1 30 STORE("tmpowner",ADDRESS_RAW(newowner)) 40 RETURN 0 End Function // Until the new owner claims ownership, existing owner remains owner Function ClaimOwnership() Uint64 10 IF LOAD("tmpowner") == SIGNER() THEN GOTO 30 20 RETURN 1 30 STORE("owner",SIGNER()) // ownership claim successful 40 RETURN 0 End Function // if signer is owner, provide him rights to update code anytime // make sure update is always available to SC Function UpdateCode( code String) Uint64 10 IF LOAD("owner") == SIGNER() THEN GOTO 30 20 RETURN 1 30 UPDATE_SC_CODE(code) 40 RETURN 0 End Function /* Step n: Update the contract details To update the contract, the entire contract needs to be in a single line This contract in a single line looks as follows: End Function /* Step 4: Deploy the contract 4.a. The seller would need to have derod running locally in this example 4.b. The seller would then need to set their wallet to rpc server mode and bind the rpc address Ex. dero-wallet-cli-linux-amd64 --rpc-server --rpc-bind=127.0.0.1:40403 4.c. And the seller of the contract creates the contract by creating and installing a desc.bas to the network: curl --request POST --data-binary @desc.bas http://127.0.0.1:40403/install_sc 4.d. The terminal would provide an output "TXID", this is the SCID of the desc. 4.e. Please provide the TXID to the buyer to review and transact Step 5: Deposit the asset you want to receive in the exchange 5.a. Where it says "Interchange-SCID" below, change it with the TXID you received in the last step. 5.b. Remember, deposit a quantity of the asset that you want from the exchange Thusly, where it says "ASSET_ONE_SCID", you must input the SCID of the asset you want 5.c. And where it says AssetOneCount, you need to put in a non-negative, whole number to the fifth decimal Ex. 1000000 is 10.0 Ex. 120000 is 1.2 Ex. 123 is 0.00123 6.d. Please make the necessary changes to the command below and enter it into the terminal. curl --silent http://127.0.0.1:40403/json_rpc -d '{"jsonrpc":"2.0","id":"0","method":"transfer","params":{"scid":"'"Interchange-SCID"'","ringsize":2, "sc_rpc":[{"name":"entrypoint","datatype":"S","value":"Deposit"}], "transfers": [ {"scid":"'"ASSET_ONE_SCID"'", "burn":AssetOneCount_DEPOSITED_TO_EXCHANGE}] }}' -H 'Content-Type: application/json' Step 6. Deposit the asset you will be giving in the exchange 6.a. Where it says "Interchange-SCID", you need to change it with the TXID you received in the last step. 6.b. Remember, you have to deposit a quantity of the asset that you'll give in the exchange Thusly, where it says "ASSET_TWO_SCID", you must input the SCID of the asset you want 6.c. And where it says AssetTwoCount, you need to put in a non-negative, whole number to the fifth decimal. See 5.c. above for examples 6.d. Please make the necessary changes to the command below and enter it into the terminal. curl --silent http://127.0.0.1:40403/json_rpc -d '{"jsonrpc":"2.0","id":"0","method":"transfer","params":{"scid":"'"Interchange-SCID"'","ringsize":2, "sc_rpc":[{"name":"entrypoint","datatype":"S","value":"Deposit"}], "transfers": [ {"scid":"'"ASSET_TWO_SCID"'", "burn":AssetTwoCount_DEPOSITED_TO_EXCHANGE}] }}' -H 'Content-Type: application/json' Step 7: Buyer's Portion of Escrow instructions 7.a. Where it says "Interchange-SCID", please replace that with the TXID from 4.d. 7.b. Where it says "ASSET_ONE_SCID", please replace with the SCID found in 5.b. 7.c. Where it says "ASSET_TWO_SCID", please replace with the SCID found in 6.b. 7.d. Where it says AssetOneCount, please replace with the amount that will be leaving the buyer's wallet 7.e. Copy the command and paste it in the Buyer's Escrow Instructions below, part D curl --silent http://127.0.0.1:40403/json_rpc -d '{"jsonrpc":"2.0","id":"0","method":"transfer","params":{"scid":"'"Interchange-SCID"'","ringsize":2, "sc_rpc":[{"name":"entrypoint","datatype":"S","value":"Interchange"},{"name":"incoming","datatype":"H","value":"'"ASSET_ONE_SCID"'"},{"name":"outgoing","datatype":"H","value":"'"ASSET_TWO_SCID"'"}], "transfers": [{"scid":"'"ASSET_ONE_SCID"'", "burn":AssetOneCount_TO_BE__Converted}] }}' -H 'Content-Type: application/json' 7.f. The buyer may confirm the exchange by typing following command balance in their wallet, followed by the SCID they exchanged Step 8: Withdraw Asset From Exchange To-Do */ // everything below this is supplementary and not required // This function is used to change owner // owner is an string form of address Function TransferOwnership(newowner String) Uint64 10 IF LOAD("owner") == SIGNER() THEN GOTO 30 20 RETURN 1 30 STORE("tmpowner",ADDRESS_RAW(newowner)) 40 RETURN 0 End Function // Until the new owner claims ownership, existing owner remains owner Function ClaimOwnership() Uint64 10 IF LOAD("tmpowner") == SIGNER() THEN GOTO 30 20 RETURN 1 30 STORE("owner",SIGNER()) // ownership claim successful 40 RETURN 0 End Function // if signer is owner, withdraw any requested funds // if everthing is okay, they will be showing in signers wallet Function Withdraw(amount Uint64, asset String) Uint64 10 IF LOAD("owner") == SIGNER() THEN GOTO 30 20 RETURN 1 30 SEND_ASSET_TO_ADDRESS(SIGNER(),amount,asset) 40 RETURN 0 End Function // if signer is owner, provide him rights to update code anytime // make sure update is always available to SC Function UpdateCode( code String) Uint64 10 IF LOAD("owner") == SIGNER() THEN GOTO 30 20 RETURN 1 30 UPDATE_SC_CODE(code) 40 RETURN 0 End Function /* Step n: Update the contract details To update the contract, the entire contract needs to be in a single line curl http://127.0.0.1:40403/json_rpc -d '{"jsonrpc":"2.0","id":"0","method":"scinvoke","params":{ "scid":"YourSCID", "sc_rpc":[{"name":"entrypoint","datatype":"S","value":"UpdateCode"}, {"name":"code","datatype":"S","value":"new code should be placed here" }] }}' -H 'Content-Type: application/json' */ In order to update the contracte, you would need to insert any modifications to that single line and insert it into "new code should be placed here" portion of the curl command below. curl http://127.0.0.1:40403/json_rpc -d '{"jsonrpc":"2.0","id":"0","method":"scinvoke","params":{ "scid":"YourSCID", "sc_rpc":[{"name":"entrypoint","datatype":"S","value":"UpdateCode"}, {"name":"code","datatype":"S","value":"new code should be placed here" }] }}' -H 'Content-Type: application/json' */ ']


Prove to someone that you have sent them DERO in this transaction

proof can be obtained using wallet command in dero-wallet-cli or from the statement
Note: proof is sent to the server, as the calculations are done on the server side


TX hex bytes
010000050082a5020a92671b16769c2b646ad1c94807821d04f8b65e4272b2ecd2e510444736e6e2010000000000000000000000000000000000000000000000000000000000000000000080bda7ebd5fb81d8b51d2bb8700385700baae2238b6c65bf5ccb82195998ee92e0c838ad4938d3fe61e110d9bc5109814e9da8fc85bb1fd043447a46fc34eb0b1a13920bb855aeb1793a9a2e75cf1d90a8fb1cfe743e013c13bc980819dc61c3f55166a50bc3f54a8f878101bc38351989d4c6e670e541ba375b5d0282acae31886b8c71d929edc1f65c593efd6f12c1630106edb201144b0615195b5516d7116844494aa4b4c85631843377aa68a5565e88f29dbf320013f36554818f075a7575c7ca023f1c3cd822c256dfddaf759eb9085dd10de3d75b9d0a82d0d89579d4137fb3012e68695ef71b038630750f0b59ad26e0f330354726585fdcb5b3598f42930e7a01740a0b2992bb1885c1828fbdb7a1bdf18e6c37801a4ea3b5183dc9f311f8b696ce76a26853435f434f444553793b352f2a0a2020204445524f2d455343524f5720534d41525420434f4e54524143540a2020202d2d2d0a0a202020646573632d7032702d61737365742d65786368616e67652069732061204445524f2d484520536d61727420636f6e74726163742e200a0a2020204445524f207573657320612076657273696f6e206f662042415349432063616c6c65642044564d2d4241534943202020202020202020202020202020200a0a2020205468697320736d61727420636f6e747261637420617373756d65732074776f20706172746965732c20612073656c6c657220616e6420612062757965720a0a2020205468697320736d61727420636f6e747261637420616c736f20617373756d65732074686174207468652074776f2070617274696573206172652065786368616e67696e6720746f6b656e732c206e6f74204445524f2e200a0a202020466f72204445524f2d546f6b656e2065786368616e67652c20706c656173652073656520646573632d7032702d6465726f2d65786368616e67652e0a0a2020205468656f7265746963616c6c792c206120646573632063616e2068617665206d6f7265207468616e2074776f2070656f706c652077686f206172652065786368616e67696e67206173736574732e0a0a2020204164646974696f6e616c6c792c2061206465736320636f756c642068617665206d6f7265207468616e2074776f20617373657473206265696e672065786368616e6765642e0a0a202020412073656c6c65722077686f2077616e74656420746f206d616b6520757365206f66204445524f2d484520736d61727420636f6e74726163747320776f756c6420666f6c6c6f7720746865736520737465707320746f20636f6e6475637420612073616c65206f6e20746865204445524f206e6574776f726b2e0a0a202020546869732070726f636573732069732063616c6c6564207573696e672061206465736320746f2065786368616e67652066756e64732e0a2020200a202020497420697320707265737570706f7365642074686174207468652073656c6c657220616e64207468652062757965722061726520616c7265616479207573696e67206465726f642c206465726f2d77616c6c65742d636c692c20616e64207465726d696e616c2e200a0a2020204974206973206f757473696465207468652073636f7065206f662061206465736320746f20746561636820746869732c20616e64207468657265206973206c6f7473206f6620646f63756d656e746174696f6e206174206465726f2e696f2e0a0a2020204974206973207072657373756d656420746861742070656f706c65206e656564206465736320746f20646f20646966666572656e74207468696e67732c2062757420697420697320657373656e7469616c6c7920616e2065786368616e6765206f66206173736574732e0a0a202020417320656163682064657363206973207573656420666f7220646966666572656e742065786368616e676573206f66206173736574732c206465736320617373756d6573207468617420796f752077696c6c206265206d6f64696679696e672074686520636f6465206265666f726520796f75206465706c6f792069740a0a2020204b6e6f77696e6720746861742070656f706c652077696c6c206d6f6469667920616e64206368616e6765207468697320636f6e747261637420746f207468656972206e656564732c206465736320686173206265656e20637261667465642077697468206120736574206f6620737465707320746f2068656c70207573657273206d616b65206368616e6765732e200a0a20202054686973206465736320686173206265656e207772697474656e20746f206169642074686520757365727320696e207468656972207472616e73616374696f6e2e0a0a202020506c6561736520666f6c6c6f77207468652073746570732e200a0a2020202d2d2d0a20200a2020205374657020313a2045737461626c69736820426173656c696e6520556e6465727374616e64696e670a0a202020546865207573657273206f662064657363206d75737420756e6465727374616e64207468617420746865792077696c6c206265206465706f736974696e672061737365747320696e746f206120736d61727420636f6e74726163742e0a200a2020205468652073656c6c657220756e6465727374616e647320746861742074686579206d75737420736565642074686520636f6e74726163742077697468207468652061737365747320746865792077616e7420746f2070617373206f766572206120646573630a0a20202054686973206d65616e73207468617420696620796f752077616e742061207175616e74697479206f662061737365744f6e652c2074686520636f6e7472616374206d75737420636f6e7461696e20616e79207175616e74697479206f662061737365744f6e650a0a2020205468697320616c736f206d65616e73207468617420696620796f752077616e742061737365744f6e652c2074686520636f6e7472616374206d75737420636f6e7461696e20617373657454776f0a0a202020546865726520617265207269736b7320746f206465706f736974696e672061737365747320696e746f20612064657465726d696e69737469632c20756e666f72676976696e672073797374656d2e200a0a20202054686520757365727320617373756d6520616c6c207269736b207573696e6720616e642f6f72206d6f64696679696e67207468697320636f6e74726163742e0a0a2020205768656e20796f7520617265206f6b6179207769746820746869732c20706c65617365206d6f766520746f205374657020322e200a2a2f0a0a46756e6374696f6e204465706f73697428292055696e7436340a20202020202020203230202052455455524e20300a2020202020202020456e642046756e6374696f6e0a0a2f2a0a2020205374657020322045737461626c6973682045786368616e676520526174650a0a20202054686520666f6c6c6f77696e672046756e6374696f6e2065737461626c6973686573207468652072617465206f662065786368616e67652e200a2020200a202020496e20746865206578616d706c652062656c6f772c20796f752063616e207365652074686174207468652022415353455456414c554528696e636f6d696e6729222077696c6c20626520646976696465642062792031300a0a2020205468657265666f72652c2074686520616d6f756e7420746861742077696c6c20626520676f696e67206f75742077696c6c20626520612031307468206f66207768617420636f6d657320696e2e0a0a202020436f6e766572736c792c20796f7520636f756c64206368616e67652074686520222f31302220746f20626520222a3130222e0a0a20202054686973206d65616e73207468617420796f7520776f756c642073656e64206f75742031302074696d6573207768617420796f75206861766520636f6d696e6720696e2e0a0a20202054616b652061206d6f6d656e7420746f20636f6e7369646572207768617420796f752077616e74207468652065786368616e6765207261746520746f20626520616e64206d616b652074686174206368616e6765206e6f772e0a2a2f0a0a46756e6374696f6e20496e7465726368616e676528696e636f6d696e6720537472696e672c206f7574676f696e6720537472696e67292055696e7436340a20202020202020203130202053454e445f41535345545f544f5f41444452455353285349474e455228292c415353455456414c554528696e636f6d696e67292f31302c206f7574676f696e672920200a20202020202020203230202052455455524e20300a2020202020202020456e642046756e6374696f6e0a0a2f2a0a2020205374657020333a2045737461626c69736820507269766163792053657474696e67730a0a2020205468697320636f6e746163742063616e20656974686572206265207075626c6963206f7220707269766174652e200a0a20202057652068617665206d6164652064657363206120707269766174652065786368616e67652c2062792064656661756c742e200a20200a20202054686520636f6e7472616374277320636f64652077696c6c207374696c6c206265207075626c69632c206567207468652065786368616e676520726174652e200a0a20202041207072697661746520646573632077696c6c206e6f74206e6f74206578706f736520746865206173736574732c206567207768696368206173736574732e0a0a2020205468697320636f6e74726163742068617320616e206f776e65722c20616e642074686174206f776e65722077696c6c2062652073746f72656420696e20616e206f62667573636174656420776179206f6e63652074686520636f6e7472616374206973206465706f6c6f7965640a0a202020497420697320686967686c79207265636f6d6d656e646564207468617420796f75206d61696e7461696e206f776e657273686970206f662074686520636f6e74726163742c20796f75206e65766572206b6e6f77207768656e20796f75206e65656420746f206d616b6520616d6d656e646d656e74730a0a202020496620796f752077616e7420746f20656c696d696e617465207468652070726976616379206f6620746869732065786368616e67652c2073696d706c792064656c6574652074686520776f726420707269766174652066726f6d207468652066756e6374696f6e2062656c6f770a2a2f0a0a46756e6374696f6e20496e697469616c697a655072697661746528292055696e7436340a202020202020202031302053544f524528226f776e6572222c205349474e45522829292020202f2f2073746f726520696e20444220205b226f776e6572225d203d20616464726573730a20202020202020203430202052455455524e20300a2020202020202020456e642046756e6374696f6e0a2f2a0a2020205374657020343a204465706c6f792074686520636f6e74726163740a0a202020342e612e205468652073656c6c657220776f756c64206e65656420746f2068617665206465726f642072756e6e696e67206c6f63616c6c7920696e2074686973206578616d706c650a20200a202020342e622e205468652073656c6c657220776f756c64207468656e206e65656420746f207365742074686569722077616c6c657420746f2072706320736572766572206d6f646520616e642062696e64207468652072706320616464726573730a0a202020202020202045782e206465726f2d77616c6c65742d636c692d6c696e75782d616d643634202d2d7270632d736572766572202d2d7270632d62696e643d3132372e302e302e313a34303430330a0a202020342e632e20416e64207468652073656c6c6572206f662074686520636f6e747261637420637265617465732074686520636f6e7472616374206279206372656174696e6720616e6420696e7374616c6c696e67206120646573632e62617320746f20746865206e6574776f726b3a0a20200a20202020202020206375726c20202d2d7265717565737420504f5354202d2d646174612d62696e61727920202040646573632e62617320687474703a2f2f3132372e302e302e313a34303430332f696e7374616c6c5f73630a0a202020342e642e20546865207465726d696e616c20776f756c642070726f7669646520616e206f7574707574202254584944222c2074686973206973207468652053434944206f662074686520646573632e0a0a202020342e652e20506c656173652070726f7669646520746865205458494420746f2074686520627579657220746f2072657669657720616e64207472616e736163740a0a0a2020205374657020353a204465706f7369742074686520617373657420796f752077616e7420746f207265636569766520696e207468652065786368616e67650a0a202020352e612e20576865726520697420736179732022496e7465726368616e67652d53434944222062656c6f772c206368616e6765206974207769746820746865205458494420796f7520726563656976656420696e20746865206c61737420737465702e200a0a202020352e622e2052656d656d6265722c206465706f7369742061207175616e74697479206f6620746865206173736574207468617420796f752077616e742066726f6d207468652065786368616e67650a0a2020202020202020546875736c792c2077686572652069742073617973202241535345545f4f4e455f53434944222c20796f75206d75737420696e707574207468652053434944206f662074686520617373657420796f752077616e740a0a202020352e632e20416e6420776865726520697420736179732041737365744f6e65436f756e742c20796f75206e65656420746f2070757420696e2061206e6f6e2d6e656761746976652c2077686f6c65206e756d62657220746f2074686520666966746820646563696d616c0a0a202020202020202045782e20313030303030302069732031302e30200a2020200a202020202020202045782e2031323030303020697320312e3220200a0a202020202020202045782e2031323320697320302e303031323320200a0a202020362e642e20506c65617365206d616b6520746865206e6563657373617279206368616e67657320746f2074686520636f6d6d616e642062656c6f7720616e6420656e74657220697420696e746f20746865207465726d696e616c2e0a20200a2020206375726c202d2d73696c656e7420687474703a2f2f3132372e302e302e313a34303430332f6a736f6e5f727063202d6420277b226a736f6e727063223a22322e30222c226964223a2230222c226d6574686f64223a227472616e73666572222c22706172616d73223a7b2273636964223a222722496e7465726368616e67652d534349442227222c2272696e6773697a65223a322c202273635f727063223a5b7b226e616d65223a22656e747279706f696e74222c226461746174797065223a2253222c2276616c7565223a224465706f736974227d5d2c20227472616e7366657273223a205b207b2273636964223a22272241535345545f4f4e455f534349442227222c20226275726e223a41737365744f6e65436f756e745f4445504f53495445445f544f5f45584348414e47457d5d207d7d27202d482027436f6e74656e742d547970653a206170706c69636174696f6e2f6a736f6e270a0a0a2020205374657020362e204465706f7369742074686520617373657420796f752077696c6c20626520676976696e6720696e207468652065786368616e67650a0a202020362e612e20576865726520697420736179732022496e7465726368616e67652d53434944222c20796f75206e65656420746f206368616e6765206974207769746820746865205458494420796f7520726563656976656420696e20746865206c61737420737465702e0a0a202020362e622e2052656d656d6265722c20796f75206861766520746f206465706f7369742061207175616e74697479206f6620746865206173736574207468617420796f75276c6c206769766520696e207468652065786368616e67650a0a2020202020202020546875736c792c2077686572652069742073617973202241535345545f54574f5f53434944222c20796f75206d75737420696e707574207468652053434944206f662074686520617373657420796f752077616e740a0a202020362e632e20416e64207768657265206974207361797320417373657454776f436f756e742c20796f75206e65656420746f2070757420696e2061206e6f6e2d6e656761746976652c2077686f6c65206e756d62657220746f2074686520666966746820646563696d616c2e2053656520352e632e2061626f766520666f72206578616d706c65730a0a202020362e642e20506c65617365206d616b6520746865206e6563657373617279206368616e67657320746f2074686520636f6d6d616e642062656c6f7720616e6420656e74657220697420696e746f20746865207465726d696e616c2e0a0a20206375726c202d2d73696c656e7420687474703a2f2f3132372e302e302e313a34303430332f6a736f6e5f727063202d6420277b226a736f6e727063223a22322e30222c226964223a2230222c226d6574686f64223a227472616e73666572222c22706172616d73223a7b2273636964223a222722496e7465726368616e67652d534349442227222c2272696e6773697a65223a322c202273635f727063223a5b7b226e616d65223a22656e747279706f696e74222c226461746174797065223a2253222c2276616c7565223a224465706f736974227d5d2c20227472616e7366657273223a205b207b2273636964223a22272241535345545f54574f5f534349442227222c20226275726e223a417373657454776f436f756e745f4445504f53495445445f544f5f45584348414e47457d5d207d7d27202d482027436f6e74656e742d547970653a206170706c69636174696f6e2f6a736f6e2720200a0a0a20205374657020373a204275796572277320506f7274696f6e206f6620457363726f7720696e737472756374696f6e73200a20200a2020372e612e20576865726520697420736179732022496e7465726368616e67652d53434944222c20706c65617365207265706c616365207468617420776974682074686520545849442066726f6d20342e642e0a0a2020372e622e2057686572652069742073617973202241535345545f4f4e455f53434944222c20706c65617365207265706c616365207769746820746865205343494420666f756e6420696e20352e622e0a0a2020372e632e2057686572652069742073617973202241535345545f54574f5f53434944222c20706c65617365207265706c616365207769746820746865205343494420666f756e6420696e20362e622e0a0a2020372e642e20576865726520697420736179732041737365744f6e65436f756e742c20706c65617365207265706c61636520776974682074686520616d6f756e7420746861742077696c6c206265206c656176696e672074686520627579657227732077616c6c65740a0a2020372e652e20436f70792074686520636f6d6d616e6420616e6420706173746520697420696e20746865204275796572277320457363726f7720496e737472756374696f6e732062656c6f772c207061727420440a0a20206375726c202d2d73696c656e7420687474703a2f2f3132372e302e302e313a34303430332f6a736f6e5f727063202d6420277b226a736f6e727063223a22322e30222c226964223a2230222c226d6574686f64223a227472616e73666572222c22706172616d73223a7b2273636964223a222722496e7465726368616e67652d534349442227222c2272696e6773697a65223a322c202273635f727063223a5b7b226e616d65223a22656e747279706f696e74222c226461746174797065223a2253222c2276616c7565223a22496e7465726368616e6765227d2c7b226e616d65223a22696e636f6d696e67222c226461746174797065223a2248222c2276616c7565223a22272241535345545f4f4e455f534349442227227d2c7b226e616d65223a226f7574676f696e67222c226461746174797065223a2248222c2276616c7565223a22272241535345545f54574f5f534349442227227d5d2c20227472616e7366657273223a205b7b2273636964223a22272241535345545f4f4e455f534349442227222c20226275726e223a41737365744f6e65436f756e745f544f5f42455f5f436f6e7665727465647d5d207d7d27202d482027436f6e74656e742d547970653a206170706c69636174696f6e2f6a736f6e270a20200a2020200a202020372e662e20546865206275796572206d617920636f6e6669726d207468652065786368616e676520627920747970696e6720666f6c6c6f77696e6720636f6d6d616e642062616c616e636520696e2074686569722077616c6c65742c20666f6c6c6f77656420627920746865205343494420746865792065786368616e6765640a0a20202045782e2062616c616e636520333062383465396162356261656565373139356537653163636231663533336237343032626562326433636661393732313661366438306330313035366636360a0a0a20205374657020383a2057697468647261772041737365742046726f6d2045786368616e67650a0a0909546f2d446f0a2a2f0a20202020202020202f2f206966207369676e6572206973206f776e65722c20776974686472617720616e79207265717565737465642066756e64730a20202020202020202f2f20696620657665727468696e67206973206f6b61792c20746865792077696c6c2062652073686f77696e6720696e207369676e6572732077616c6c65740a20202046756e6374696f6e20576974686472617728616d6f756e742055696e7436342c20617373657420537472696e67292055696e7436340a2020202020202020313020204946204c4f414428226f776e65722229203d3d205349474e45522829205448454e20474f544f2033300a20202020202020203230202052455455524e20310a20202020202020203330202053454e445f41535345545f544f5f41444452455353285349474e455228292c616d6f756e742c6173736574290a20202020202020203430202052455455524e20300a2020202020202020456e642046756e6374696f6e0a0a0a2f2f2065766572797468696e672062656c6f77207468697320697320737570706c656d656e7461727920616e64206e6f742072657175697265640a0a20202020202020202f2f20546869732066756e6374696f6e206973207573656420746f206368616e6765206f776e65720a20202020202020202f2f206f776e657220697320616e20737472696e6720666f726d206f6620616464726573730a202020202020202046756e6374696f6e205472616e736665724f776e657273686970286e65776f776e657220537472696e67292055696e7436340a2020202020202020313020204946204c4f414428226f776e65722229203d3d205349474e45522829205448454e20474f544f2033300a20202020202020203230202052455455524e20310a20202020202020203330202053544f52452822746d706f776e6572222c414444524553535f524157286e65776f776e657229290a20202020202020203430202052455455524e20300a2020202020202020456e642046756e6374696f6e0a0a20202020202020202f2f20556e74696c20746865206e6577206f776e657220636c61696d73206f776e6572736869702c206578697374696e67206f776e65722072656d61696e73206f776e65720a202020202020202046756e6374696f6e20436c61696d4f776e65727368697028292055696e7436340a2020202020202020313020204946204c4f41442822746d706f776e65722229203d3d205349474e45522829205448454e20474f544f2033300a20202020202020203230202052455455524e20310a20202020202020203330202053544f524528226f776e6572222c5349474e4552282929202f2f206f776e65727368697020636c61696d207375636365737366756c0a20202020202020203430202052455455524e20300a2020202020202020456e642046756e6374696f6e0a0a20202020202020202f2f206966207369676e6572206973206f776e65722c2070726f766964652068696d2072696768747320746f2075706461746520636f646520616e7974696d650a20202020202020202f2f206d616b6520737572652075706461746520697320616c7761797320617661696c61626c6520746f2053430a202020202020202046756e6374696f6e20557064617465436f64652820636f646520537472696e67292055696e7436340a2020202020202020313020204946204c4f414428226f776e65722229203d3d205349474e45522829205448454e20474f544f2033300a20202020202020203230202052455455524e20310a2020202020202020333020205550444154455f53435f434f444528636f6465290a20202020202020203430202052455455524e20300a2020202020202020456e642046756e6374696f6e0a0a2f2a0a53746570206e3a205570646174652074686520636f6e74726163742064657461696c730a0a202020546f207570646174652074686520636f6e74726163742c2074686520656e7469726520636f6e7472616374206e6565647320746f20626520696e20612073696e676c65206c696e650a0a2020205468697320636f6e747261637420696e20612073696e676c65206c696e65206c6f6f6b7320617320666f6c6c6f77733a0a0a2020202020202020456e642046756e6374696f6e202f2a202020205374657020343a204465706c6f792074686520636f6e74726163742020202020342e612e205468652073656c6c657220776f756c64206e65656420746f2068617665206465726f642072756e6e696e67206c6f63616c6c7920696e2074686973206578616d706c652020202020342e622e205468652073656c6c657220776f756c64207468656e206e65656420746f207365742074686569722077616c6c657420746f2072706320736572766572206d6f646520616e642062696e64207468652072706320616464726573732020202020202020202045782e206465726f2d77616c6c65742d636c692d6c696e75782d616d643634202d2d7270632d736572766572202d2d7270632d62696e643d3132372e302e302e313a34303430332020202020342e632e20416e64207468652073656c6c6572206f662074686520636f6e747261637420637265617465732074686520636f6e7472616374206279206372656174696e6720616e6420696e7374616c6c696e67206120646573632e62617320746f20746865206e6574776f726b3a202020202020202020206375726c20202d2d7265717565737420504f5354202d2d646174612d62696e61727920202040646573632e62617320687474703a2f2f3132372e302e302e313a34303430332f696e7374616c6c5f73632020202020342e642e20546865207465726d696e616c20776f756c642070726f7669646520616e206f7574707574202254584944222c2074686973206973207468652053434944206f662074686520646573632e2020202020342e652e20506c656173652070726f7669646520746865205458494420746f2074686520627579657220746f2072657669657720616e64207472616e736163742020202020205374657020353a204465706f7369742074686520617373657420796f752077616e7420746f207265636569766520696e207468652065786368616e67652020202020352e612e20576865726520697420736179732022496e7465726368616e67652d53434944222062656c6f772c206368616e6765206974207769746820746865205458494420796f7520726563656976656420696e20746865206c61737420737465702e2020202020352e622e2052656d656d6265722c206465706f7369742061207175616e74697479206f6620746865206173736574207468617420796f752077616e742066726f6d207468652065786368616e676520202020202020202020546875736c792c2077686572652069742073617973202241535345545f4f4e455f53434944222c20796f75206d75737420696e707574207468652053434944206f662074686520617373657420796f752077616e742020202020352e632e20416e6420776865726520697420736179732041737365744f6e65436f756e742c20796f75206e65656420746f2070757420696e2061206e6f6e2d6e656761746976652c2077686f6c65206e756d62657220746f2074686520666966746820646563696d616c2020202020202020202045782e20313030303030302069732031302e302020202020202020202045782e2031323030303020697320312e322020202020202020202045782e2031323320697320302e30303132332020202020362e642e20506c65617365206d616b6520746865206e6563657373617279206368616e67657320746f2074686520636f6d6d616e642062656c6f7720616e6420656e74657220697420696e746f20746865207465726d696e616c2e20202020206375726c202d2d73696c656e7420687474703a2f2f3132372e302e302e313a34303430332f6a736f6e5f727063202d6420277b226a736f6e727063223a22322e30222c226964223a2230222c226d6574686f64223a227472616e73666572222c22706172616d73223a7b2273636964223a222722496e7465726368616e67652d534349442227222c2272696e6773697a65223a322c202273635f727063223a5b7b226e616d65223a22656e747279706f696e74222c226461746174797065223a2253222c2276616c7565223a224465706f736974227d5d2c20227472616e7366657273223a205b207b2273636964223a22272241535345545f4f4e455f534349442227222c20226275726e223a41737365744f6e65436f756e745f4445504f53495445445f544f5f45584348414e47457d5d207d7d27202d482027436f6e74656e742d547970653a206170706c69636174696f6e2f6a736f6e272020202020205374657020362e204465706f7369742074686520617373657420796f752077696c6c20626520676976696e6720696e207468652065786368616e67652020202020362e612e20576865726520697420736179732022496e7465726368616e67652d53434944222c20796f75206e65656420746f206368616e6765206974207769746820746865205458494420796f7520726563656976656420696e20746865206c61737420737465702e2020202020362e622e2052656d656d6265722c20796f75206861766520746f206465706f7369742061207175616e74697479206f6620746865206173736574207468617420796f75276c6c206769766520696e207468652065786368616e676520202020202020202020546875736c792c2077686572652069742073617973202241535345545f54574f5f53434944222c20796f75206d75737420696e707574207468652053434944206f662074686520617373657420796f752077616e742020202020362e632e20416e64207768657265206974207361797320417373657454776f436f756e742c20796f75206e65656420746f2070757420696e2061206e6f6e2d6e656761746976652c2077686f6c65206e756d62657220746f2074686520666966746820646563696d616c2e2053656520352e632e2061626f766520666f72206578616d706c65732020202020362e642e20506c65617365206d616b6520746865206e6563657373617279206368616e67657320746f2074686520636f6d6d616e642062656c6f7720616e6420656e74657220697420696e746f20746865207465726d696e616c2e202020206375726c202d2d73696c656e7420687474703a2f2f3132372e302e302e313a34303430332f6a736f6e5f727063202d6420277b226a736f6e727063223a22322e30222c226964223a2230222c226d6574686f64223a227472616e73666572222c22706172616d73223a7b2273636964223a222722496e7465726368616e67652d534349442227222c2272696e6773697a65223a322c202273635f727063223a5b7b226e616d65223a22656e747279706f696e74222c226461746174797065223a2253222c2276616c7565223a224465706f736974227d5d2c20227472616e7366657273223a205b207b2273636964223a22272241535345545f54574f5f534349442227222c20226275726e223a417373657454776f436f756e745f4445504f53495445445f544f5f45584348414e47457d5d207d7d27202d482027436f6e74656e742d547970653a206170706c69636174696f6e2f6a736f6e2720202020205374657020373a204275796572277320506f7274696f6e206f6620457363726f7720696e737472756374696f6e7320202020372e612e20576865726520697420736179732022496e7465726368616e67652d53434944222c20706c65617365207265706c616365207468617420776974682074686520545849442066726f6d20342e642e20202020372e622e2057686572652069742073617973202241535345545f4f4e455f53434944222c20706c65617365207265706c616365207769746820746865205343494420666f756e6420696e20352e622e20202020372e632e2057686572652069742073617973202241535345545f54574f5f53434944222c20706c65617365207265706c616365207769746820746865205343494420666f756e6420696e20362e622e20202020372e642e20576865726520697420736179732041737365744f6e65436f756e742c20706c65617365207265706c61636520776974682074686520616d6f756e7420746861742077696c6c206265206c656176696e672074686520627579657227732077616c6c657420202020372e652e20436f70792074686520636f6d6d616e6420616e6420706173746520697420696e20746865204275796572277320457363726f7720496e737472756374696f6e732062656c6f772c20706172742044202020206375726c202d2d73696c656e7420687474703a2f2f3132372e302e302e313a34303430332f6a736f6e5f727063202d6420277b226a736f6e727063223a22322e30222c226964223a2230222c226d6574686f64223a227472616e73666572222c22706172616d73223a7b2273636964223a222722496e7465726368616e67652d534349442227222c2272696e6773697a65223a322c202273635f727063223a5b7b226e616d65223a22656e747279706f696e74222c226461746174797065223a2253222c2276616c7565223a22496e7465726368616e6765227d2c7b226e616d65223a22696e636f6d696e67222c226461746174797065223a2248222c2276616c7565223a22272241535345545f4f4e455f534349442227227d2c7b226e616d65223a226f7574676f696e67222c226461746174797065223a2248222c2276616c7565223a22272241535345545f54574f5f534349442227227d5d2c20227472616e7366657273223a205b7b2273636964223a22272241535345545f4f4e455f534349442227222c20226275726e223a41737365744f6e65436f756e745f544f5f42455f5f436f6e7665727465647d5d207d7d27202d482027436f6e74656e742d547970653a206170706c69636174696f6e2f6a736f6e27202020202020372e662e20546865206275796572206d617920636f6e6669726d207468652065786368616e676520627920747970696e6720666f6c6c6f77696e6720636f6d6d616e642062616c616e636520696e2074686569722077616c6c65742c20666f6c6c6f77656420627920746865205343494420746865792065786368616e67656420202020205374657020383a2057697468647261772041737365742046726f6d2045786368616e6765202020202020202020202020202020202020546f2d446f202a2f20202f2f2065766572797468696e672062656c6f77207468697320697320737570706c656d656e7461727920616e64206e6f74207265717569726564202020202020202020202f2f20546869732066756e6374696f6e206973207573656420746f206368616e6765206f776e65722020202020202020202f2f206f776e657220697320616e20737472696e6720666f726d206f66206164647265737320202020202020202046756e6374696f6e205472616e736665724f776e657273686970286e65776f776e657220537472696e67292055696e743634202020202020202020313020204946204c4f414428226f776e65722229203d3d205349474e45522829205448454e20474f544f2033302020202020202020203230202052455455524e20312020202020202020203330202053544f52452822746d706f776e6572222c414444524553535f524157286e65776f776e657229292020202020202020203430202052455455524e2030202020202020202020456e642046756e6374696f6e202020202020202020202f2f20556e74696c20746865206e6577206f776e657220636c61696d73206f776e6572736869702c206578697374696e67206f776e65722072656d61696e73206f776e657220202020202020202046756e6374696f6e20436c61696d4f776e65727368697028292055696e743634202020202020202020313020204946204c4f41442822746d706f776e65722229203d3d205349474e45522829205448454e20474f544f2033302020202020202020203230202052455455524e20312020202020202020203330202053544f524528226f776e6572222c5349474e4552282929202f2f206f776e65727368697020636c61696d207375636365737366756c2020202020202020203430202052455455524e2030202020202020202020456e642046756e6374696f6e202020202020202020202f2f206966207369676e6572206973206f776e65722c20776974686472617720616e79207265717565737465642066756e64732020202020202020202f2f20696620657665727468696e67206973206f6b61792c20746865792077696c6c2062652073686f77696e6720696e207369676e6572732077616c6c65742020202046756e6374696f6e20576974686472617728616d6f756e742055696e7436342c20617373657420537472696e67292055696e743634202020202020202020313020204946204c4f414428226f776e65722229203d3d205349474e45522829205448454e20474f544f2033302020202020202020203230202052455455524e20312020202020202020203330202053454e445f41535345545f544f5f41444452455353285349474e455228292c616d6f756e742c6173736574292020202020202020203430202052455455524e2030202020202020202020456e642046756e6374696f6e202020202020202020202f2f206966207369676e6572206973206f776e65722c2070726f766964652068696d2072696768747320746f2075706461746520636f646520616e7974696d652020202020202020202f2f206d616b6520737572652075706461746520697320616c7761797320617661696c61626c6520746f20534320202020202020202046756e6374696f6e20557064617465436f64652820636f646520537472696e67292055696e743634202020202020202020313020204946204c4f414428226f776e65722229203d3d205349474e45522829205448454e20474f544f2033302020202020202020203230202052455455524e2031202020202020202020333020205550444154455f53435f434f444528636f6465292020202020202020203430202052455455524e2030202020202020202020456e642046756e6374696f6e20202f2a2053746570206e3a205570646174652074686520636f6e74726163742064657461696c732020202020546f207570646174652074686520636f6e74726163742c2074686520656e7469726520636f6e7472616374206e6565647320746f20626520696e20612073696e676c65206c696e6520202020206375726c20687474703a2f2f3132372e302e302e313a34303430332f6a736f6e5f727063202d6420277b226a736f6e727063223a22322e30222c226964223a2230222c226d6574686f64223a227363696e766f6b65222c22706172616d73223a7b202273636964223a22596f757253434944222c202273635f727063223a5b7b226e616d65223a22656e747279706f696e74222c226461746174797065223a2253222c2276616c7565223a22557064617465436f6465227d2c207b226e616d65223a22636f6465222c226461746174797065223a2253222c2276616c7565223a226e657720636f64652073686f756c6420626520706c61636564206865726522207d5d207d7d27202d482027436f6e74656e742d547970653a206170706c69636174696f6e2f6a736f6e27202a2f202020200a2020200a20202020496e206f7264657220746f207570646174652074686520636f6e7472616374652c20796f7520776f756c64206e65656420746f20696e7365727420616e79206d6f64696669636174696f6e7320746f20746861742073696e676c65206c696e6520616e6420696e7365727420697420696e746f20226e657720636f64652073686f756c6420626520706c6163656420686572652220706f7274696f6e206f6620746865206375726c20636f6d6d616e642062656c6f772e200a0a202020206375726c20687474703a2f2f3132372e302e302e313a34303430332f6a736f6e5f727063202d6420277b226a736f6e727063223a22322e30222c226964223a2230222c226d6574686f64223a227363696e766f6b65222c22706172616d73223a7b202273636964223a22596f757253434944222c202273635f727063223a5b7b226e616d65223a22656e747279706f696e74222c226461746174797065223a2253222c2276616c7565223a22557064617465436f6465227d2c207b226e616d65223a22636f6465222c226461746174797065223a2253222c2276616c7565223a226e657720636f64652073686f756c6420626520706c61636564206865726522207d5d207d7d27202d482027436f6e74656e742d547970653a206170706c69636174696f6e2f6a736f6e270a0a2a2f0a0a0a0a6a53435f414354494f4e55012e44fbbcb53f531b30773ab32ae45d8d93018f546954a67caf07d130bb1119520012dab8233fd5f4f91d7cbddf6580fb44b476e7aebda99fc46a7a559417794bc30105b3d98a1242e64058ebf010d01300edc32634aabceda58921f95a3e4067593d010b3aa07e687ad9c4d845404e30254371127030d525fcb670c58452615198ada4000e1bbb37b7e7957921acd26e3961a691276afb73954c8f0a9ce5fd74a13883ba0117b5a48ff01f3ad5773f2aa4514389ef030490fb83570d621b7fe9388a16918e012d6bcc07bbd54e1feddd91c8abbc04137f81b9f569b1a21e93c92a378b5c9c5600214dd8776422897b9629a296194227ae851a89afe72dbb5ffc08122550db41fc002e42fce5146d6ae7e4d4f354e17eed5a0afa6a1f20c1e175c7808a758003c41c0002e86a26ff60e1bf91ca00b6fb8aef3e466e4be48b0403e7571cb603c7bda52f002b8bb2db11099c060bac92f6da90aba319e2aaf822c5bdaf35c0365f4e843344001b3208e593948f2e9478d0e3767992688b19bffd0e90abf4e5a5145abbc6071e0013f34d18aaf7fc7fa956402f4a8810e4749e4c54a12db9eb8f95f6f2aceed1a50100000000000000000000000000000000000000000000000000000000000000001d5c219dc26869879e53c5845d76df7de3b3417a05484bd9c9d76118d4f1536720fcb9ef6f26500fab6eb38788c9f0cbd1c0c2e0b8a956006187c7cb9b9e062b0107222a60d31ab4560311c0de69ef87c1637f279fb1d970d8325bf42c73873601236ff2223b8d0a48966bce099a53514cc6e780089591c13b082323e9eee3693c0118511f09d6683704942af7ac8ec103e90df21f769561448b9d198b74af3c82d13061e95c9e4e0bb71e9d93b422d1d60a8a2f1c15a3d6b0998930d6a4733ea3b21fb52b3e203c95289d0d579f819251b5fba6361699f39ff719ce7dd8baf806b207b8bb493ab656781413b55d0fe18a2a89d953bd21f289639e000a0ba849f1fe2fa87e6ffbe4b64baf0ed4a21dbc0a754e7f5f52a625f81a3e7d87a01afb85f52c50207ca37a59decb36bc7946de8d335e66b03a8f8f7cbe519a590049c2a43c0df1d2a8c35239c71661426be2d9fff845984c6dc3b5a0882abce7700fbb1617037309faed97e13545fdd6824dcf3a9749f2cfff0a4983ffcf68934a6cf21fde00527bb1960031430f5fe01f1926fc8425ae63d786bfbfc71e4583b7b65dbab90abd98bf37b300e83c69cea6a4cc79028c1a0e8a7dbf9483f72f5c8e52c558f60120c0f58b5c3bec07459ce8bc0443cf6e51f1f75aa4ce38d7825cca27e97c491a0011766c0cae57cc991da09048a51b4ad18d6b3481bd3c2f9afe0b68c23b059f430125c5b44452729ff110610fa7bbae662ef2bf4d158e335be5aa94afcb5b0eee3a010fab8e4910e9dd71ab4aa5922ce6f94875936d1eca7f02b28d3c66645a4876b601212990cf7cd93d72b62418b47f79635780cf30db304fdfa4e4e5dd6c26c2da4e0111fbf1e8007274fa7bb2f3eb9ea5a363ba51f96146b90b34686e2a8404313f00011a2d687771449b17e99d2222d51b102a17e4df8f8ef6adf1de266bc16cc0b2ab0009d39bb03c7ef186a56ea61a7fba4ca5f020c027d415b3a93106f5fa7671dafe0022e0602a004605642a992d8050c295ce9cd7e3c55e8dc34b8edce35e2da38ce9010ab669e81bf08efccf968f018fbdc366c9a7009a405c1f53db2fbfecffddf3d7002328b170b36759af76cde80b36a7b18b7fc553f1cd37653486191deacc877da00123573e50fe6b9b272b97a60d47f19943289ee24bd8370f984dbcae41be654f68000b5b4798eb30876f81c56e0556a7f2a02e23771fee671b9091939a7925271c6601
DERO explorer source code | explorer version (api): under development (1.0) | dero version: golang pre-alpha | Copyright 2017-2022 Dero Project