├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── bindata.sh ├── bindata_darwin.sh ├── config ├── gachain-db.service └── gachain.service ├── daylight.go ├── daylight.service ├── daylightdarwin.go ├── daylightlinuxfreebsd.go ├── daylightnotwindows.go ├── daylightwindows.go ├── icon.go ├── iconapp.ico ├── make_deb ├── make.sh └── sudo_make.sh ├── make_dmg ├── Egaas.app │ └── Contents │ │ ├── Frameworks │ │ ├── ThrustShell Framework.framework │ │ │ ├── Frameworks │ │ │ ├── Libraries │ │ │ ├── Resources │ │ │ ├── ThrustShell Framework │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Libraries │ │ │ │ │ ├── Libraries │ │ │ │ │ └── libchromiumcontent.dylib │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── content_shell.pak │ │ │ │ │ └── icudtl.dat │ │ │ │ ├── ThrustShell Framework │ │ │ │ ├── ThrustShell Framework.TOC │ │ │ │ └── ThrustShell Framework.tmp │ │ │ │ └── Current │ │ ├── ThrustShell Helper EH.app │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── ThrustShell Helper EH │ │ │ │ └── PkgInfo │ │ ├── ThrustShell Helper NP.app │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── ThrustShell Helper NP │ │ │ │ └── PkgInfo │ │ └── ThrustShell Helper.app │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── ThrustShell Helper │ │ │ └── PkgInfo │ │ ├── Info.plist │ │ ├── MacOS │ │ ├── ThrustShell │ │ └── starter │ │ ├── PkgInfo │ │ └── Resources │ │ ├── egaas.icns │ │ └── icudtl.dat ├── background.png ├── logo-big.icns ├── make.sh ├── make_dmg.sh └── starter.go ├── make_exe ├── build.bat └── logo.ico ├── make_freebsd_zip └── make.sh ├── packages ├── consts │ ├── consts.go │ └── structs.go ├── controllers │ ├── accounts.go │ ├── ajax.go │ ├── ajax_addresses.go │ ├── ajax_app_process.go │ ├── ajax_citizen_fields.go │ ├── ajax_citizen_info.go │ ├── ajax_contractinfo.go │ ├── ajax_encrypt_key.go │ ├── ajax_explorer.go │ ├── ajax_gen_keys.go │ ├── ajax_gen_wallet.go │ ├── ajax_get_menu.go │ ├── ajax_get_menu_html.go │ ├── ajax_getcnt.go │ ├── ajax_getuid.go │ ├── ajax_history.go │ ├── ajax_new_key.go │ ├── ajax_new_state.go │ ├── ajax_prepare_tx.go │ ├── ajax_send_tx.go │ ├── ajax_smart_fields.go │ ├── ajax_state_coords.go │ ├── ajax_states_list.go │ ├── ajax_storage.go │ ├── alert_message.go │ ├── anonym_money_transfer.go │ ├── app.go │ ├── app_catalog.go │ ├── backup.go │ ├── block_explorer.go │ ├── btcempty.go │ ├── change_node_key.go │ ├── change_state_smart_laws.go │ ├── check_citizen_status.go │ ├── common.go │ ├── content.go │ ├── contracts.go │ ├── dashboard_anonym.go │ ├── edit_column.go │ ├── edit_contract.go │ ├── edit_language.go │ ├── edit_menu.go │ ├── edit_page.go │ ├── edit_signature.go │ ├── edit_state_parameters.go │ ├── edit_table.go │ ├── edit_wallet.go │ ├── export_tpl.go │ ├── forging.go │ ├── gen_citizen.go │ ├── gen_keys.go │ ├── generate_new_node_key.go │ ├── generator.go │ ├── getWallets.go │ ├── get_server_time.go │ ├── getchain.go │ ├── history.go │ ├── home.go │ ├── index.go │ ├── install.go │ ├── install_step_0.go │ ├── install_step_1.go │ ├── interface.go │ ├── languages.go │ ├── list_of_tables.go │ ├── login_ecdsa.go │ ├── logout.go │ ├── menu.go │ ├── modal_anonym.go │ ├── new_column.go │ ├── new_contract.go │ ├── new_menu.go │ ├── new_page.go │ ├── new_state.go │ ├── new_state_parameters.go │ ├── new_table.go │ ├── refact.go │ ├── restore_access.go │ ├── row_history.go │ ├── save_queue.go │ ├── set_state.go │ ├── show_table.go │ ├── sign_in.go │ ├── signatures.go │ ├── smart_request_citizen.go │ ├── state_laws.go │ ├── state_parameters.go │ ├── synchronization_blockchain.go │ ├── system_info.go │ ├── template.go │ ├── tx_status.go │ ├── updating_blockchain.go │ ├── upgrade.go │ ├── wallet_history.go │ └── ws_blockchain.go ├── daemons │ ├── block_generator.go │ ├── blocks_collection.go │ ├── common.go │ ├── confirmations.go │ ├── creating_blockchain.go │ ├── disseminator.go │ ├── queue_parser_blocks.go │ ├── queue_parser_tx.go │ └── upd_full_nodes.go ├── daylight │ ├── common.go │ ├── daylight_start.go │ ├── daylight_stop.go │ ├── notandroid.go │ ├── unix.go │ └── windows.go ├── egcons │ ├── egcons.go │ └── requests.go ├── exchangeapi │ ├── balance.go │ ├── exchangeapi.go │ ├── history.go │ ├── newkey.go │ └── send.go ├── lib │ ├── crypto.go │ ├── crypto_test.go │ ├── keys.go │ ├── keys_test.go │ ├── lib-tmp.go │ ├── lib.go │ ├── lib_test.go │ ├── signs.go │ └── signs_test.go ├── parser │ ├── activate_contract.go │ ├── append_menu.go │ ├── append_page.go │ ├── change_node_key.go │ ├── change_node_key_dlt.go │ ├── common.go │ ├── common_auto_rollback.go │ ├── common_check_block_header.go │ ├── common_general_check.go │ ├── common_general_rollback.go │ ├── common_get_blocks.go │ ├── common_get_tx_maps.go │ ├── common_parse_block.go │ ├── common_parse_data_front.go │ ├── common_parse_data_full.go │ ├── common_parse_data_gate.go │ ├── common_parse_data_lite.go │ ├── common_parse_data_rollback.go │ ├── common_parse_transaction.go │ ├── common_rollback.go │ ├── common_rollback_aI.go │ ├── common_rollback_to_block_id.go │ ├── common_rollback_transactions.go │ ├── common_selective_logging_and_upd.go │ ├── common_selective_rollback.go │ ├── common_tx_parser.go │ ├── common_upd_block_info.go │ ├── composite_tx.go │ ├── dlt_change_host_vote.go │ ├── dlt_transfer.go │ ├── edit_column.go │ ├── edit_contract.go │ ├── edit_lang.go │ ├── edit_menu.go │ ├── edit_page.go │ ├── edit_sign.go │ ├── edit_state_paremeters.go │ ├── edit_table.go │ ├── edit_wallet.go │ ├── first_block.go │ ├── first_block_test.go │ ├── new_account.go │ ├── new_column.go │ ├── new_contract.go │ ├── new_lang.go │ ├── new_menu.go │ ├── new_page.go │ ├── new_sign.go │ ├── new_state.go │ ├── new_state_paremeters.go │ ├── new_table.go │ ├── restore_access.go │ ├── restore_access_active.go │ ├── restore_access_close.go │ ├── restore_access_request.go │ ├── smart_p.go │ └── upd_full_nodes.go ├── schema │ └── migration.go ├── script │ ├── cmds_list.go │ ├── compile.go │ ├── compile_test.go │ ├── eval.go │ ├── eval_test.go │ ├── lex.go │ ├── lex_table.go │ ├── lex_test.go │ ├── vm.go │ └── vminit.go ├── sendnotif │ └── notmobile.go ├── smart │ ├── smart.go │ └── smart_test.go ├── stopdaemons │ ├── notmobile.go │ └── stopdaemons.go ├── system │ ├── system.go │ ├── system_notwindows.go │ └── system_windows.go ├── tcpserver │ ├── tcpserver.go │ ├── type1.go │ ├── type10.go │ ├── type2.go │ ├── type4.go │ └── type7.go ├── test │ └── test.go ├── testnet │ ├── blockchain.go │ ├── testnet.go │ └── wschain.go ├── textproc │ ├── textfunc.go │ ├── textproc.go │ └── textproc_test.go └── utils │ ├── language.go │ ├── smart_u.go │ ├── sql.go │ ├── utils.go │ └── utils_test.go ├── static ├── 1block ├── Global.tpl ├── accounts.html ├── alert_success.html ├── anonym_money_transfer.html ├── app_catalog.html ├── app_template.html ├── backup.html ├── basic.tpl ├── beta.html ├── block_explorer.html ├── btc.html ├── cb_citizens.html ├── cb_citizens_new_user.html ├── cb_citizens_requests_foreigners.html ├── cb_currency_exchange.html ├── cb_delegate.html ├── cb_emission_account.html ├── cb_emission_fixed_amount.html ├── cb_emission_proportional.html ├── cb_new_representative.html ├── cb_representative_details.html ├── cb_representatives.html ├── cb_select_emission.html ├── change_node_key.html ├── change_state_smart_laws.html ├── check_citizen_status.html ├── citizen_admission_high_school.html ├── citizen_bill_payment.html ├── citizen_divorce.html ├── citizen_inheritance.html ├── citizen_marriage_contract.html ├── citizen_marriage_registration.html ├── citizen_money_transfer.html ├── citizen_new_company.html ├── citizen_political_party.html ├── citizen_property.html ├── citizen_rule_details.html ├── company_application_purchase.html ├── company_contract.html ├── company_crowdfunding.html ├── company_currency_exchange.html ├── company_customhouse.html ├── company_new_company.html ├── company_new_good.html ├── company_new_item.html ├── company_new_order.html ├── company_new_shares.html ├── company_offer_seller.html ├── company_offer_transport.html ├── company_select_transport.html ├── company_shares_exchange.html ├── company_smart_contracts.html ├── contracts.html ├── countries │ ├── countries.json │ ├── flags.png │ ├── mm.png │ └── no_citizenship.png ├── countup.html ├── css │ └── style.css ├── dashboard_anonym.html ├── dashboard_cb.html ├── dashboard_company.html ├── dashboard_gov.html ├── dashboard_health.html ├── data │ ├── entries_doctor.json │ ├── immunizations.json │ ├── medication.json │ └── patients.json ├── description.tpl ├── edit_column.html ├── edit_contract.html ├── edit_language.html ├── edit_menu.html ├── edit_page.html ├── edit_signature.html ├── edit_state_parameters.html ├── edit_table.html ├── edit_wallet.html ├── export_tpl.html ├── fonts │ ├── FontAwesome.otf │ ├── PFSquareSansPro-Bold.eot │ ├── PFSquareSansPro-Bold.svg │ ├── PFSquareSansPro-Bold.ttf │ ├── PFSquareSansPro-Bold.woff │ ├── PFSquareSansPro-Bold.woff2 │ ├── PFSquareSansPro-Light.eot │ ├── PFSquareSansPro-Light.svg │ ├── PFSquareSansPro-Light.ttf │ ├── PFSquareSansPro-Light.woff │ ├── PFSquareSansPro-Light.woff2 │ ├── PFSquareSansPro-Medium.eot │ ├── PFSquareSansPro-Medium.svg │ ├── PFSquareSansPro-Medium.ttf │ ├── PFSquareSansPro-Medium.woff │ ├── PFSquareSansPro-Medium.woff2 │ ├── PFSquareSansPro-Regular.eot │ ├── PFSquareSansPro-Regular.svg │ ├── PFSquareSansPro-Regular.ttf │ ├── PFSquareSansPro-Regular.woff │ ├── PFSquareSansPro-Regular.woff2 │ ├── Simple-Line-Icons.eot │ ├── Simple-Line-Icons.svg │ ├── Simple-Line-Icons.ttf │ ├── Simple-Line-Icons.woff │ ├── Simple-Line-Icons.woff2 │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-filetypes-regular.eot │ ├── glyphicons-filetypes-regular.svg │ ├── glyphicons-filetypes-regular.ttf │ ├── glyphicons-filetypes-regular.woff │ ├── glyphicons-filetypes-regular.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ ├── glyphicons-regular.eot │ ├── glyphicons-regular.svg │ ├── glyphicons-regular.ttf │ ├── glyphicons-regular.woff │ ├── glyphicons-regular.woff2 │ ├── glyphicons-social-regular.eot │ ├── glyphicons-social-regular.svg │ ├── glyphicons-social-regular.ttf │ ├── glyphicons-social-regular.woff │ └── glyphicons-social-regular.woff2 ├── forging.html ├── gen_citizen.html ├── gen_keys.html ├── gen_wallets.html ├── generator.html ├── generator │ ├── ckeditor │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── content.css │ │ ├── contents.css │ │ ├── core │ │ │ ├── _bootstrap.js │ │ │ ├── ckeditor.js │ │ │ ├── ckeditor_base.js │ │ │ ├── ckeditor_basic.js │ │ │ ├── command.js │ │ │ ├── commanddefinition.js │ │ │ ├── config.js │ │ │ ├── creators │ │ │ │ ├── inline.js │ │ │ │ └── themedui.js │ │ │ ├── dataprocessor.js │ │ │ ├── dom.js │ │ │ ├── dom │ │ │ │ ├── comment.js │ │ │ │ ├── document.js │ │ │ │ ├── documentfragment.js │ │ │ │ ├── domobject.js │ │ │ │ ├── element.js │ │ │ │ ├── elementpath.js │ │ │ │ ├── event.js │ │ │ │ ├── iterator.js │ │ │ │ ├── node.js │ │ │ │ ├── nodelist.js │ │ │ │ ├── range.js │ │ │ │ ├── rangelist.js │ │ │ │ ├── text.js │ │ │ │ ├── walker.js │ │ │ │ └── window.js │ │ │ ├── dtd.js │ │ │ ├── editable.js │ │ │ ├── editor.js │ │ │ ├── editor_basic.js │ │ │ ├── env.js │ │ │ ├── event.js │ │ │ ├── eventInfo.js │ │ │ ├── filter.js │ │ │ ├── focusmanager.js │ │ │ ├── htmldataprocessor.js │ │ │ ├── htmlparser.js │ │ │ ├── htmlparser │ │ │ │ ├── basicwriter.js │ │ │ │ ├── cdata.js │ │ │ │ ├── comment.js │ │ │ │ ├── element.js │ │ │ │ ├── filter.js │ │ │ │ ├── fragment.js │ │ │ │ ├── node.js │ │ │ │ └── text.js │ │ │ ├── keystrokehandler.js │ │ │ ├── lang.js │ │ │ ├── loader.js │ │ │ ├── log.js │ │ │ ├── plugindefinition.js │ │ │ ├── plugins.js │ │ │ ├── resourcemanager.js │ │ │ ├── scriptloader.js │ │ │ ├── selection.js │ │ │ ├── skin.js │ │ │ ├── style.js │ │ │ ├── template.js │ │ │ ├── tools.js │ │ │ └── ui.js │ │ ├── lang │ │ │ ├── _translationstatus.txt │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── oc.js │ │ │ ├── pl.js │ │ │ ├── plugins │ │ │ │ └── a11yhelp │ │ │ │ │ └── dialogos │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ └── _translationstatus.txt │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sr.latn.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ ├── zh.js │ │ │ └── zn-ch.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ ├── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── about │ │ │ │ ├── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ ├── icons │ │ │ │ │ ├── about.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── about.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── basicstyles │ │ │ │ ├── icons │ │ │ │ │ ├── bold.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── bold.png │ │ │ │ │ │ ├── italic.png │ │ │ │ │ │ ├── strike.png │ │ │ │ │ │ ├── subscript.png │ │ │ │ │ │ ├── superscript.png │ │ │ │ │ │ └── underline.png │ │ │ │ │ ├── italic.png │ │ │ │ │ ├── strike.png │ │ │ │ │ ├── subscript.png │ │ │ │ │ ├── superscript.png │ │ │ │ │ └── underline.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── bidi │ │ │ │ ├── icons │ │ │ │ │ ├── bidiltr.png │ │ │ │ │ ├── bidirtl.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ ├── bidiltr.png │ │ │ │ │ │ └── bidirtl.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── blockquote │ │ │ │ ├── icons │ │ │ │ │ ├── blockquote.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── blockquote.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── button │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── ckawesome │ │ │ │ ├── dialogs │ │ │ │ │ ├── ckawesome.css │ │ │ │ │ └── ckawesome.js │ │ │ │ ├── icons │ │ │ │ │ └── ckawesome.png │ │ │ │ ├── plugin.js │ │ │ │ └── resources │ │ │ │ │ └── select2 │ │ │ │ │ ├── select2.full.min.css │ │ │ │ │ └── select2.full.min.js │ │ │ ├── clipboard │ │ │ │ ├── dev │ │ │ │ │ ├── clipboard.html │ │ │ │ │ ├── console.js │ │ │ │ │ └── dnd.html │ │ │ │ ├── dialogs │ │ │ │ │ └── paste.js │ │ │ │ ├── icons │ │ │ │ │ ├── copy-rtl.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── cut-rtl.png │ │ │ │ │ ├── cut.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── copy-rtl.png │ │ │ │ │ │ ├── copy.png │ │ │ │ │ │ ├── cut-rtl.png │ │ │ │ │ │ ├── cut.png │ │ │ │ │ │ ├── paste-rtl.png │ │ │ │ │ │ └── paste.png │ │ │ │ │ ├── paste-rtl.png │ │ │ │ │ └── paste.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── colorbutton │ │ │ │ ├── icons │ │ │ │ │ ├── bgcolor.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── bgcolor.png │ │ │ │ │ │ └── textcolor.png │ │ │ │ │ └── textcolor.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── colordialog │ │ │ │ ├── dialogs │ │ │ │ │ ├── colordialog.css │ │ │ │ │ └── colordialog.js │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── contextmenu │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── copyformatting │ │ │ │ ├── cursors │ │ │ │ │ ├── cursor-disabled.svg │ │ │ │ │ └── cursor.svg │ │ │ │ ├── icons │ │ │ │ │ ├── copyformatting.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── copyformatting.png │ │ │ │ ├── lang │ │ │ │ │ └── en.js │ │ │ │ ├── plugin.js │ │ │ │ └── styles │ │ │ │ │ └── copyformatting.css │ │ │ ├── dialog │ │ │ │ ├── dialogDefinition.js │ │ │ │ ├── plugin.js │ │ │ │ └── samples │ │ │ │ │ ├── assets │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ ├── dialogadvtab │ │ │ │ └── plugin.js │ │ │ ├── dialogui │ │ │ │ └── plugin.js │ │ │ ├── div │ │ │ │ ├── dialogs │ │ │ │ │ └── div.js │ │ │ │ ├── icons │ │ │ │ │ ├── creatediv.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── creatediv.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── elementspath │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── enterkey │ │ │ │ ├── plugin.js │ │ │ │ └── samples │ │ │ │ │ └── enterkey.html │ │ │ ├── entities │ │ │ │ └── plugin.js │ │ │ ├── fakeobjects │ │ │ │ ├── images │ │ │ │ │ └── spacer.gif │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── filebrowser │ │ │ │ └── plugin.js │ │ │ ├── find │ │ │ │ ├── dialogs │ │ │ │ │ └── find.js │ │ │ │ ├── icons │ │ │ │ │ ├── find-rtl.png │ │ │ │ │ ├── find.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── find-rtl.png │ │ │ │ │ │ ├── find.png │ │ │ │ │ │ └── replace.png │ │ │ │ │ └── replace.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── flash │ │ │ │ ├── dialogs │ │ │ │ │ └── flash.js │ │ │ │ ├── icons │ │ │ │ │ ├── flash.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── flash.png │ │ │ │ ├── images │ │ │ │ │ └── placeholder.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── floatingspace │ │ │ │ └── plugin.js │ │ │ ├── floatpanel │ │ │ │ └── plugin.js │ │ │ ├── font │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── fontawesome │ │ │ │ ├── dialogs │ │ │ │ │ ├── fontawesome.js │ │ │ │ │ └── index.html │ │ │ │ ├── font-awesome │ │ │ │ │ ├── css │ │ │ │ │ │ ├── font-awesome.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ │ │ └── index.html │ │ │ │ │ └── index.html │ │ │ │ ├── icons │ │ │ │ │ ├── fontawesome.png │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ └── plugin.js │ │ │ ├── format │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ ├── icons │ │ │ │ │ ├── button.png │ │ │ │ │ ├── checkbox.png │ │ │ │ │ ├── form.png │ │ │ │ │ ├── hiddenfield.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── button.png │ │ │ │ │ │ ├── checkbox.png │ │ │ │ │ │ ├── form.png │ │ │ │ │ │ ├── hiddenfield.png │ │ │ │ │ │ ├── imagebutton.png │ │ │ │ │ │ ├── radio.png │ │ │ │ │ │ ├── select-rtl.png │ │ │ │ │ │ ├── select.png │ │ │ │ │ │ ├── textarea-rtl.png │ │ │ │ │ │ ├── textarea.png │ │ │ │ │ │ ├── textfield-rtl.png │ │ │ │ │ │ └── textfield.png │ │ │ │ │ ├── imagebutton.png │ │ │ │ │ ├── radio.png │ │ │ │ │ ├── select-rtl.png │ │ │ │ │ ├── select.png │ │ │ │ │ ├── textarea-rtl.png │ │ │ │ │ ├── textarea.png │ │ │ │ │ ├── textfield-rtl.png │ │ │ │ │ └── textfield.png │ │ │ │ ├── images │ │ │ │ │ └── hiddenfield.gif │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── glyphicons │ │ │ │ ├── css │ │ │ │ │ ├── config.json │ │ │ │ │ ├── css │ │ │ │ │ │ └── bootstrap.css │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ ├── js │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ └── bootstrap.min.js │ │ │ │ │ └── style.css │ │ │ │ └── dialogs │ │ │ │ │ └── glyphicons.js │ │ │ ├── horizontalrule │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── horizontalrule.png │ │ │ │ │ └── horizontalrule.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── htmlwriter │ │ │ │ ├── plugin.js │ │ │ │ └── samples │ │ │ │ │ ├── assets │ │ │ │ │ └── outputforflash │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── iframe │ │ │ │ ├── dialogs │ │ │ │ │ └── iframe.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── iframe.png │ │ │ │ │ └── iframe.png │ │ │ │ ├── images │ │ │ │ │ └── placeholder.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── image.png │ │ │ │ │ └── image.png │ │ │ │ ├── images │ │ │ │ │ └── noimage.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── indent │ │ │ │ ├── dev │ │ │ │ │ └── indent.html │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── indent-rtl.png │ │ │ │ │ │ ├── indent.png │ │ │ │ │ │ ├── outdent-rtl.png │ │ │ │ │ │ └── outdent.png │ │ │ │ │ ├── indent-rtl.png │ │ │ │ │ ├── indent.png │ │ │ │ │ ├── outdent-rtl.png │ │ │ │ │ └── outdent.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── indentblock │ │ │ │ └── plugin.js │ │ │ ├── indentlist │ │ │ │ └── plugin.js │ │ │ ├── justify │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── justifyblock.png │ │ │ │ │ │ ├── justifycenter.png │ │ │ │ │ │ ├── justifyleft.png │ │ │ │ │ │ └── justifyright.png │ │ │ │ │ ├── justifyblock.png │ │ │ │ │ ├── justifycenter.png │ │ │ │ │ ├── justifyleft.png │ │ │ │ │ └── justifyright.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── language │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── language.png │ │ │ │ │ └── language.png │ │ │ │ ├── lang │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ ├── icons │ │ │ │ │ ├── anchor-rtl.png │ │ │ │ │ ├── anchor.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── anchor-rtl.png │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ ├── link.png │ │ │ │ │ │ └── unlink.png │ │ │ │ │ ├── link.png │ │ │ │ │ └── unlink.png │ │ │ │ ├── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── list │ │ │ │ ├── icons │ │ │ │ │ ├── bulletedlist-rtl.png │ │ │ │ │ ├── bulletedlist.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── bulletedlist-rtl.png │ │ │ │ │ │ ├── bulletedlist.png │ │ │ │ │ │ ├── numberedlist-rtl.png │ │ │ │ │ │ └── numberedlist.png │ │ │ │ │ ├── numberedlist-rtl.png │ │ │ │ │ └── numberedlist.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── listblock │ │ │ │ └── plugin.js │ │ │ ├── liststyle │ │ │ │ ├── dialogs │ │ │ │ │ └── liststyle.js │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── magicline │ │ │ │ ├── dev │ │ │ │ │ └── magicline.html │ │ │ │ ├── images │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ └── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── samples │ │ │ │ │ └── magicline.html │ │ │ ├── maximize │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── maximize.png │ │ │ │ │ └── maximize.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── menu │ │ │ │ └── plugin.js │ │ │ ├── menubutton │ │ │ │ └── plugin.js │ │ │ ├── newpage │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── newpage-rtl.png │ │ │ │ │ │ └── newpage.png │ │ │ │ │ ├── newpage-rtl.png │ │ │ │ │ └── newpage.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── pagebreak │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── pagebreak-rtl.png │ │ │ │ │ │ └── pagebreak.png │ │ │ │ │ ├── pagebreak-rtl.png │ │ │ │ │ └── pagebreak.png │ │ │ │ ├── images │ │ │ │ │ └── pagebreak.gif │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── panel │ │ │ │ └── plugin.js │ │ │ ├── panelbutton │ │ │ │ └── plugin.js │ │ │ ├── pastefromword │ │ │ │ ├── filter │ │ │ │ │ └── default.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── pastefromword-rtl.png │ │ │ │ │ │ └── pastefromword.png │ │ │ │ │ ├── pastefromword-rtl.png │ │ │ │ │ └── pastefromword.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── pastetext │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── pastetext-rtl.png │ │ │ │ │ │ └── pastetext.png │ │ │ │ │ ├── pastetext-rtl.png │ │ │ │ │ └── pastetext.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── popup │ │ │ │ └── plugin.js │ │ │ ├── preview │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── preview-rtl.png │ │ │ │ │ │ └── preview.png │ │ │ │ │ ├── preview-rtl.png │ │ │ │ │ └── preview.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── preview.html │ │ │ ├── print │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── print.png │ │ │ │ │ └── print.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── removeformat │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── removeformat.png │ │ │ │ │ └── removeformat.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── resize │ │ │ │ └── plugin.js │ │ │ ├── richcombo │ │ │ │ └── plugin.js │ │ │ ├── save │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── save.png │ │ │ │ │ └── save.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── scayt │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── scayt.png │ │ │ │ │ └── scayt.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── skins │ │ │ │ │ └── moono-lisa │ │ │ │ │ └── scayt.css │ │ │ ├── selectall │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── selectall.png │ │ │ │ │ └── selectall.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── showblocks │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── showblocks-rtl.png │ │ │ │ │ │ └── showblocks.png │ │ │ │ │ ├── showblocks-rtl.png │ │ │ │ │ └── showblocks.png │ │ │ │ ├── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── showborders │ │ │ │ └── plugin.js │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── smiley.png │ │ │ │ │ └── smiley.png │ │ │ │ ├── images │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── envelope.png │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── kiss.png │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ └── wink_smile.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── sourcearea │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── source-rtl.png │ │ │ │ │ │ └── source.png │ │ │ │ │ ├── source-rtl.png │ │ │ │ │ └── source.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── specialchar │ │ │ │ ├── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── specialchar.png │ │ │ │ │ └── specialchar.png │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── stylescombo │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── tab │ │ │ │ └── plugin.js │ │ │ ├── table │ │ │ │ ├── dialogs │ │ │ │ │ └── table.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── table.png │ │ │ │ │ └── table.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── tabletools │ │ │ │ ├── dialogs │ │ │ │ │ └── tableCell.js │ │ │ │ └── plugin.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ ├── templates.css │ │ │ │ │ └── templates.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── templates-rtl.png │ │ │ │ │ │ └── templates.png │ │ │ │ │ ├── templates-rtl.png │ │ │ │ │ └── templates.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── templates │ │ │ │ │ ├── default.js │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ ├── toolbar │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── samples │ │ │ │ │ └── toolbar.html │ │ │ ├── undo │ │ │ │ ├── dev │ │ │ │ │ └── snapshot.html │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── redo-rtl.png │ │ │ │ │ │ ├── redo.png │ │ │ │ │ │ ├── undo-rtl.png │ │ │ │ │ │ └── undo.png │ │ │ │ │ ├── redo-rtl.png │ │ │ │ │ ├── redo.png │ │ │ │ │ ├── undo-rtl.png │ │ │ │ │ └── undo.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── widget │ │ │ │ └── images │ │ │ │ │ └── handle.png │ │ │ ├── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.js │ │ │ │ ├── README.md │ │ │ │ ├── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmp.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ ├── wsc.js │ │ │ │ │ └── wsc_ie.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── spellchecker.png │ │ │ │ │ └── spellchecker.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin.js │ │ │ │ └── skins │ │ │ │ │ └── moono-lisa │ │ │ │ │ └── wsc.css │ │ │ └── wysiwygarea │ │ │ │ ├── plugin.js │ │ │ │ └── samples │ │ │ │ └── fullpage.html │ │ ├── samples │ │ │ ├── ajax.html │ │ │ ├── api.html │ │ │ ├── appendto.html │ │ │ ├── assets │ │ │ │ ├── inlineall │ │ │ │ │ └── logo.png │ │ │ │ ├── outputxhtml │ │ │ │ │ └── outputxhtml.css │ │ │ │ ├── posteddata.php │ │ │ │ ├── sample.css │ │ │ │ ├── sample.jpg │ │ │ │ └── uilanguages │ │ │ │ │ └── languages.js │ │ │ ├── css │ │ │ │ └── samples.css │ │ │ ├── datafiltering.html │ │ │ ├── debug.log │ │ │ ├── divreplace.html │ │ │ ├── img │ │ │ │ ├── github-top.png │ │ │ │ ├── header-bg.png │ │ │ │ ├── header-separator.png │ │ │ │ ├── logo.png │ │ │ │ └── navigation-tip.png │ │ │ ├── index.html │ │ │ ├── inlineall.html │ │ │ ├── inlinebycode.html │ │ │ ├── inlinetextarea.html │ │ │ ├── jquery.html │ │ │ ├── js │ │ │ │ ├── sample.js │ │ │ │ └── sf.js │ │ │ ├── old │ │ │ │ ├── ajax.html │ │ │ │ ├── api.html │ │ │ │ ├── appendto.html │ │ │ │ ├── assets │ │ │ │ │ ├── inlineall │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ ├── posteddata.php │ │ │ │ │ ├── sample.jpg │ │ │ │ │ └── uilanguages │ │ │ │ │ │ └── languages.js │ │ │ │ ├── datafiltering.html │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── divreplace.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── index.html │ │ │ │ ├── inlineall.html │ │ │ │ ├── inlinebycode.html │ │ │ │ ├── inlinetextarea.html │ │ │ │ ├── jquery.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── readonly.html │ │ │ │ ├── replacebyclass.html │ │ │ │ ├── replacebycode.html │ │ │ │ ├── sample.css │ │ │ │ ├── sample.js │ │ │ │ ├── sample_posteddata.php │ │ │ │ ├── tabindex.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ ├── uicolor.html │ │ │ │ ├── uilanguages.html │ │ │ │ ├── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ │ └── xhtmlstyle.html │ │ │ ├── plugins │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ └── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ ├── readonly.html │ │ │ ├── replacebyclass.html │ │ │ ├── replacebycode.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── sample_posteddata.php │ │ │ ├── tabindex.html │ │ │ ├── toolbarconfigurator │ │ │ │ ├── bender.js │ │ │ │ ├── css │ │ │ │ │ └── fontello.css │ │ │ │ ├── font │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── config.json │ │ │ │ │ ├── fontello.eot │ │ │ │ │ ├── fontello.svg │ │ │ │ │ ├── fontello.ttf │ │ │ │ │ └── fontello.woff │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── abstracttoolbarmodifier.js │ │ │ │ │ ├── fulltoolbareditor.js │ │ │ │ │ ├── toolbarmodifier.js │ │ │ │ │ └── toolbartextmodifier.js │ │ │ │ ├── less │ │ │ │ │ ├── base.less │ │ │ │ │ └── toolbarmodifier.less │ │ │ │ ├── lib │ │ │ │ │ └── codemirror │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── codemirror.css │ │ │ │ │ │ ├── codemirror.js │ │ │ │ │ │ ├── javascript.js │ │ │ │ │ │ ├── neo.css │ │ │ │ │ │ ├── show-hint.css │ │ │ │ │ │ └── show-hint.js │ │ │ │ ├── package.json │ │ │ │ └── tests │ │ │ │ │ └── one.js │ │ │ ├── uicolor.html │ │ │ ├── uilanguages.html │ │ │ └── xhtmlstyle.html │ │ ├── skins │ │ │ ├── bootstrapck │ │ │ │ ├── .temp │ │ │ │ │ └── css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ │ ├── dialog_opera.css │ │ │ │ │ │ ├── editor.css │ │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ │ └── editor_iequirks.css │ │ │ │ ├── dev │ │ │ │ │ ├── icons16.svg │ │ │ │ │ ├── icons32.svg │ │ │ │ │ └── locations.json │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── dialog_opera.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── readme.md │ │ │ │ ├── sample │ │ │ │ │ ├── bootstrapck-sample.html │ │ │ │ │ ├── css │ │ │ │ │ │ └── bootstrapck-sample.css │ │ │ │ │ └── js │ │ │ │ │ │ ├── analytics.js │ │ │ │ │ │ └── jquery-1.11.0.min.js │ │ │ │ ├── scss │ │ │ │ │ ├── browser-specific │ │ │ │ │ │ ├── gecko │ │ │ │ │ │ │ └── editor_gecko.scss │ │ │ │ │ │ ├── ie │ │ │ │ │ │ │ ├── dialog_ie.scss │ │ │ │ │ │ │ └── editor_ie.scss │ │ │ │ │ │ ├── ie7 │ │ │ │ │ │ │ ├── dialog_ie7.scss │ │ │ │ │ │ │ └── editor_ie7.scss │ │ │ │ │ │ ├── ie8 │ │ │ │ │ │ │ ├── dialog_ie8.scss │ │ │ │ │ │ │ └── editor_ie8.scss │ │ │ │ │ │ ├── iequirks │ │ │ │ │ │ │ ├── dialog_iequirks.scss │ │ │ │ │ │ │ └── editor_iequirks.scss │ │ │ │ │ │ └── opera │ │ │ │ │ │ │ └── dialog_opera.scss │ │ │ │ │ ├── components │ │ │ │ │ │ ├── _colorpanel.scss │ │ │ │ │ │ ├── _elementspath.scss │ │ │ │ │ │ ├── _mainui.scss │ │ │ │ │ │ ├── _menu.scss │ │ │ │ │ │ ├── _panel.scss │ │ │ │ │ │ ├── _presets.scss │ │ │ │ │ │ ├── _reset.scss │ │ │ │ │ │ ├── _richcombo.scss │ │ │ │ │ │ ├── _toolbar.scss │ │ │ │ │ │ └── editor.scss │ │ │ │ │ ├── config │ │ │ │ │ │ ├── _colors.scss │ │ │ │ │ │ ├── _config.scss │ │ │ │ │ │ └── _defaults.scss │ │ │ │ │ └── dialog │ │ │ │ │ │ └── dialog.scss │ │ │ │ └── skin.js │ │ │ ├── moono-lisa │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ └── spinner.gif │ │ │ │ └── readme.md │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── dialog_opera.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ │ └── readme.md │ │ └── styles.js │ ├── css │ │ ├── bootstrap-combined.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── docs.css │ │ ├── docs.min.css │ │ ├── editor.css │ │ ├── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── bebas-neue │ │ │ │ ├── BebasNeue-webfont.eot │ │ │ │ ├── BebasNeue-webfont.svg │ │ │ │ ├── BebasNeue-webfont.ttf │ │ │ │ ├── BebasNeue-webfont.woff │ │ │ │ ├── Dharma Type Font License.txt │ │ │ │ └── stylesheet.css │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ ├── layoutit.css │ │ ├── pick-a-color-1.2.0.min.css │ │ └── toolbox.css │ ├── img │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── a.jpg │ │ ├── a_002.jpg │ │ ├── city.jpg │ │ ├── favicon.png │ │ ├── people.jpg │ │ └── sports.jpg │ ├── js │ │ ├── FileSaver.js │ │ ├── blob.js │ │ ├── canvas-toBlob.js │ │ ├── docs.min.js │ │ ├── html5shiv.js │ │ ├── jquery-ui.js │ │ ├── jquery.htmlClean.js │ │ ├── jquery.ui.touch-punch.min.js │ │ ├── pick-a-color-1.2.2.min.js │ │ ├── scripts.js │ │ ├── scripts_new.js │ │ ├── tinycolor-0.9.15.min.js │ │ └── vendor │ │ │ ├── blob.js │ │ │ ├── filesaver.js │ │ │ ├── holder.js │ │ │ ├── jszip.min.js │ │ │ ├── less.min.js │ │ │ └── uglify.min.js │ └── scss │ │ ├── editor.scss │ │ └── partials │ │ ├── _combined.scss │ │ ├── _legacy.scss │ │ └── _overwrites.scss ├── gov_birth_statement.html ├── gov_citizens.html ├── gov_create_budget.html ├── gov_currency_exchange.html ├── gov_date_death.html ├── gov_register_citizen.html ├── gov_register_property.html ├── gov_settings.html ├── gov_shares_exchange.html ├── gov_taxes.html ├── health_buy_medicament.html ├── health_entries_clinic.html ├── health_facility.html ├── health_immunization_records.html ├── health_medical_record.html ├── health_medication_records.html ├── health_patient.html ├── health_procedure.html ├── health_symptom.html ├── health_vital_signs.html ├── history.html ├── html_elements.html ├── img │ ├── US.svg │ ├── apps │ │ ├── ava.png │ │ ├── business.png │ │ ├── elections.jpg │ │ ├── euro.jpg │ │ ├── forex.jpg │ │ ├── forex.png │ │ ├── messenger.png │ │ ├── money.jpg │ │ ├── money.png │ │ └── property.jpg │ ├── avatar.svg │ ├── back.svg │ ├── bg.jpg │ ├── bg.png │ ├── bg1.jpg │ ├── bg10.jpg │ ├── bg2.jpg │ ├── bg3.jpg │ ├── bg4.jpg │ ├── bg5.jpg │ ├── bg6.jpg │ ├── bg7.jpg │ ├── bg8.jpg │ ├── bg9.jpg │ ├── clear.png │ ├── dummy.png │ ├── favicon.ico │ ├── iconapp.ico │ ├── installed.png │ ├── loading.gif │ ├── lock-bg.jpg │ ├── logo.png │ ├── logo.svg │ ├── logo_menu.png │ ├── logo_null.svg │ ├── logo_ok.svg │ ├── main_loader.gif │ ├── map │ │ ├── msmarker.shadow.png │ │ ├── red-dot.png │ │ └── square.png │ ├── marker_red.png │ ├── mb-sample.jpg │ ├── mockup.png │ ├── no_map.png │ ├── noflag.svg │ ├── profile-bg.jpg │ ├── radio_icon.png │ ├── sort_asc.png │ ├── sort_asc_disabled.png │ ├── sort_both.png │ ├── sort_desc.png │ ├── sort_desc_disabled.png │ ├── spacer.gif │ ├── squares.gif │ └── user │ │ ├── 01.jpg │ │ ├── 02.jpg │ │ ├── 03.jpg │ │ ├── 04.jpg │ │ ├── 05.jpg │ │ ├── 06.jpg │ │ ├── 07.jpg │ │ ├── 08.jpg │ │ ├── 09.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ └── 13.jpg ├── index.html ├── install_step_0.html ├── install_step_1.html ├── interface.html ├── js │ ├── BMapLib.js │ ├── app.js │ ├── elliptic.min.js │ ├── index.js │ ├── keys.js │ ├── map.js │ ├── photoEditor │ │ └── editor.js │ └── triangles.js ├── lang │ ├── flags │ │ └── flags.png │ ├── gb.js │ ├── hk.js │ └── zh.js ├── languages.html ├── list_of_tables.html ├── login.html ├── menu.html ├── modal_anonym.html ├── modal_avatar.html ├── modal_block_detail.html ├── modal_map.html ├── modal_signature.html ├── new_state.html ├── new_table.html ├── page_template.html ├── pass.html ├── psw.html ├── restore_access.html ├── restore_access_active.html ├── row_history.html ├── schema.sql ├── show_table.html ├── signatures.html ├── signatures_list.html ├── signatures_new.html ├── smart_request_citizen.html ├── state_laws.html ├── state_parameters.html ├── system_info.html ├── test.html ├── testnet.html ├── testnet_register.html ├── tx_btncont.html ├── tx_button.html ├── tx_form.html ├── updating_blockchain.html ├── upgrade.html ├── wallet_history.html └── widgets.html ├── tools ├── copyright │ ├── copyright.go │ └── copyright.txt ├── genkeys │ ├── genkeys.go │ ├── genkeys_test.go │ └── seed.txt ├── lextable │ └── lextable.go ├── nosqlcomment │ └── nosqlcomment.go └── updatejson │ ├── Public.txt │ ├── crypt.go │ ├── updatejson.go │ └── updatejson.json └── vendor ├── github.com ├── astaxie │ └── beego │ │ ├── config │ │ ├── config.go │ │ ├── fake.go │ │ ├── ini.go │ │ ├── ini_test.go │ │ ├── json.go │ │ ├── json_test.go │ │ ├── xml │ │ │ ├── xml.go │ │ │ └── xml_test.go │ │ └── yaml │ │ │ ├── yaml.go │ │ │ └── yaml_test.go │ │ ├── session │ │ ├── README.md │ │ ├── couchbase │ │ │ └── sess_couchbase.go │ │ ├── ledis │ │ │ └── ledis_session.go │ │ ├── memcache │ │ │ └── sess_memcache.go │ │ ├── mysql │ │ │ └── sess_mysql.go │ │ ├── postgres │ │ │ └── sess_postgresql.go │ │ ├── redis │ │ │ └── sess_redis.go │ │ ├── sess_cookie.go │ │ ├── sess_cookie_test.go │ │ ├── sess_file.go │ │ ├── sess_mem.go │ │ ├── sess_mem_test.go │ │ ├── sess_test.go │ │ ├── sess_utils.go │ │ └── session.go │ │ └── utils │ │ ├── caller.go │ │ ├── caller_test.go │ │ ├── captcha │ │ ├── LICENSE │ │ ├── README.md │ │ ├── captcha.go │ │ ├── image.go │ │ ├── image_test.go │ │ ├── siprng.go │ │ └── siprng_test.go │ │ ├── debug.go │ │ ├── debug_test.go │ │ ├── file.go │ │ ├── file_test.go │ │ ├── mail.go │ │ ├── mail_test.go │ │ ├── pagination │ │ ├── controller.go │ │ ├── doc.go │ │ ├── paginator.go │ │ └── utils.go │ │ ├── rand.go │ │ ├── safemap.go │ │ ├── safemap_test.go │ │ ├── slice.go │ │ └── slice_test.go ├── boltdb │ └── bolt │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── bolt_386.go │ │ ├── bolt_amd64.go │ │ ├── bolt_arm.go │ │ ├── bolt_arm64.go │ │ ├── bolt_linux.go │ │ ├── bolt_openbsd.go │ │ ├── bolt_ppc.go │ │ ├── bolt_ppc64.go │ │ ├── bolt_ppc64le.go │ │ ├── bolt_s390x.go │ │ ├── bolt_unix.go │ │ ├── bolt_unix_solaris.go │ │ ├── bolt_windows.go │ │ ├── boltsync_unix.go │ │ ├── bucket.go │ │ ├── bucket_test.go │ │ ├── cmd │ │ └── bolt │ │ │ ├── main.go │ │ │ └── main_test.go │ │ ├── cursor.go │ │ ├── cursor_test.go │ │ ├── db.go │ │ ├── db_test.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── freelist.go │ │ ├── freelist_test.go │ │ ├── node.go │ │ ├── node_test.go │ │ ├── page.go │ │ ├── page_test.go │ │ ├── quick_test.go │ │ ├── simulation_test.go │ │ ├── tx.go │ │ └── tx_test.go ├── go-bindata-assetfs │ ├── LICENSE │ ├── README.md │ ├── assetfs.go │ ├── doc.go │ └── go-bindata-assetfs │ │ └── main.go ├── go-sql-driver │ └── mysql │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appengine.go │ │ ├── benchmark_test.go │ │ ├── buffer.go │ │ ├── collations.go │ │ ├── connection.go │ │ ├── const.go │ │ ├── driver.go │ │ ├── driver_test.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── infile.go │ │ ├── packets.go │ │ ├── result.go │ │ ├── rows.go │ │ ├── statement.go │ │ ├── transaction.go │ │ ├── utils.go │ │ └── utils_test.go ├── go-thrust │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── Gomfile │ ├── LICENSE │ ├── README.md │ ├── TODO.md │ ├── lib │ │ ├── bindings │ │ │ ├── menu │ │ │ │ ├── menu.go │ │ │ │ ├── menu_sync.go │ │ │ │ └── menuitem.go │ │ │ ├── session │ │ │ │ ├── dummy_session.go │ │ │ │ ├── session.go │ │ │ │ ├── session_cookie.go │ │ │ │ └── session_invokable.go │ │ │ └── window │ │ │ │ └── window.go │ │ ├── commands │ │ │ └── commands.go │ │ ├── common │ │ │ └── common.go │ │ ├── connection │ │ │ └── connection.go │ │ ├── dispatcher │ │ │ └── dispatcher.go │ │ ├── events │ │ │ └── eventhandler.go │ │ └── spawn │ │ │ ├── download.go │ │ │ ├── helper_darwin.go │ │ │ ├── helper_unix.go │ │ │ ├── helper_windows.go │ │ │ ├── provisioner.go │ │ │ ├── spawn_process.go │ │ │ └── unzip.go │ ├── main.go │ └── thrust │ │ ├── thrust.go │ │ └── thrust_test.go ├── go-yaml │ └── yaml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── suite_test.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go ├── golang │ └── freetype │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README │ │ ├── cmd │ │ └── print-glyph-points │ │ │ └── main.c │ │ ├── example │ │ ├── drawer │ │ │ └── main.go │ │ ├── freetype │ │ │ └── main.go │ │ ├── gamma │ │ │ └── main.go │ │ ├── raster │ │ │ └── main.go │ │ ├── round │ │ │ └── main.go │ │ └── truetype │ │ │ └── main.go │ │ ├── freetype.go │ │ ├── freetype_test.go │ │ ├── licenses │ │ ├── ftl.txt │ │ └── gpl.txt │ │ ├── raster │ │ ├── geom.go │ │ ├── paint.go │ │ ├── raster.go │ │ └── stroke.go │ │ ├── testdata │ │ ├── COPYING │ │ ├── README │ │ ├── luximr.ttf │ │ ├── luximr.ttx │ │ ├── luxirr.ttf │ │ ├── luxirr.ttx │ │ ├── luxisr-12pt-sans-hinting.txt │ │ ├── luxisr-12pt-with-hinting.txt │ │ ├── luxisr.ttf │ │ ├── luxisr.ttx │ │ └── make-other-hinting-txts.sh │ │ └── truetype │ │ ├── face.go │ │ ├── face_test.go │ │ ├── glyph.go │ │ ├── hint.go │ │ ├── hint_test.go │ │ ├── opcodes.go │ │ ├── truetype.go │ │ └── truetype_test.go ├── gorilla │ └── websocket │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── client_clone.go │ │ ├── client_clone_legacy.go │ │ ├── client_server_test.go │ │ ├── client_test.go │ │ ├── compression.go │ │ ├── compression_test.go │ │ ├── conn.go │ │ ├── conn_broadcast_test.go │ │ ├── conn_read.go │ │ ├── conn_read_legacy.go │ │ ├── conn_test.go │ │ ├── doc.go │ │ ├── example_test.go │ │ ├── examples │ │ ├── autobahn │ │ │ ├── README.md │ │ │ ├── fuzzingclient.json │ │ │ └── server.go │ │ ├── chat │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── home.html │ │ │ ├── hub.go │ │ │ └── main.go │ │ ├── command │ │ │ ├── README.md │ │ │ ├── home.html │ │ │ └── main.go │ │ ├── echo │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ └── server.go │ │ └── filewatch │ │ │ ├── README.md │ │ │ └── main.go │ │ ├── json.go │ │ ├── json_test.go │ │ ├── mask.go │ │ ├── mask_safe.go │ │ ├── mask_test.go │ │ ├── prepared.go │ │ ├── prepared_test.go │ │ ├── server.go │ │ ├── server_test.go │ │ ├── util.go │ │ └── util_test.go ├── jbenet │ └── go-base58 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── base58.go │ │ ├── base58_test.go │ │ └── doc.go ├── kardianos │ └── osext │ │ ├── LICENSE │ │ ├── README.md │ │ ├── osext.go │ │ ├── osext_plan9.go │ │ ├── osext_procfs.go │ │ ├── osext_sysctl.go │ │ ├── osext_test.go │ │ └── osext_windows.go ├── lib │ └── pq │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bench_test.go │ │ ├── buf.go │ │ ├── certs │ │ ├── README │ │ ├── postgresql.crt │ │ ├── postgresql.key │ │ ├── root.crt │ │ ├── server.crt │ │ └── server.key │ │ ├── conn.go │ │ ├── conn_test.go │ │ ├── copy.go │ │ ├── copy_test.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── error.go │ │ ├── hstore │ │ ├── hstore.go │ │ └── hstore_test.go │ │ ├── listen_example │ │ └── doc.go │ │ ├── notify.go │ │ ├── notify_test.go │ │ ├── oid │ │ ├── doc.go │ │ ├── gen.go │ │ └── types.go │ │ ├── ssl_test.go │ │ ├── url.go │ │ ├── url_test.go │ │ ├── user_posix.go │ │ └── user_windows.go ├── mcuadros │ └── go-version │ │ ├── LICENSE │ │ ├── README.md │ │ ├── compare.go │ │ ├── compare_test.go │ │ ├── constraint.go │ │ ├── constraint_test.go │ │ ├── doc.go │ │ ├── group.go │ │ ├── group_test.go │ │ ├── normalize.go │ │ ├── normalize_test.go │ │ ├── sort.go │ │ ├── sort_test.go │ │ ├── stability.go │ │ └── stability_test.go ├── olekukonko │ └── ts │ │ ├── LICENCE │ │ ├── README.md │ │ ├── doc.go │ │ ├── ts.go │ │ ├── ts_darwin.go │ │ ├── ts_linux.go │ │ ├── ts_other.go │ │ ├── ts_test.go │ │ ├── ts_unix.go │ │ ├── ts_windows.go │ │ └── ts_x.go ├── op │ └── go-logging │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backend.go │ │ ├── example_test.go │ │ ├── examples │ │ ├── example.go │ │ └── example.png │ │ ├── format.go │ │ ├── format_test.go │ │ ├── level.go │ │ ├── level_test.go │ │ ├── log_nix.go │ │ ├── log_test.go │ │ ├── log_windows.go │ │ ├── logger.go │ │ ├── logger_test.go │ │ ├── memory.go │ │ ├── memory_test.go │ │ ├── multi.go │ │ ├── multi_test.go │ │ ├── syslog.go │ │ └── syslog_fallback.go ├── pb │ ├── LICENSE │ ├── README.md │ ├── example_copy_test.go │ ├── example_multiple_test.go │ ├── example_test.go │ ├── format.go │ ├── format_test.go │ ├── pb.go │ ├── pb_nix.go │ ├── pb_solaris.go │ ├── pb_test.go │ ├── pb_win.go │ ├── pb_x.go │ ├── pool.go │ ├── reader.go │ ├── runecount.go │ └── runecount_test.go ├── russross │ └── blackfriday │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── block.go │ │ ├── block_test.go │ │ ├── html.go │ │ ├── inline.go │ │ ├── inline_test.go │ │ ├── latex.go │ │ ├── markdown.go │ │ ├── ref_test.go │ │ ├── smartypants.go │ │ └── testdata │ │ ├── Amps and angle encoding.html │ │ ├── Amps and angle encoding.text │ │ ├── Auto links.html │ │ ├── Auto links.text │ │ ├── Backslash escapes.html │ │ ├── Backslash escapes.text │ │ ├── Blockquotes with code blocks.html │ │ ├── Blockquotes with code blocks.text │ │ ├── Code Blocks.html │ │ ├── Code Blocks.text │ │ ├── Code Spans.html │ │ ├── Code Spans.text │ │ ├── Hard-wrapped paragraphs with list-like lines no empty line before block.html │ │ ├── Hard-wrapped paragraphs with list-like lines no empty line before block.text │ │ ├── Hard-wrapped paragraphs with list-like lines.html │ │ ├── Hard-wrapped paragraphs with list-like lines.text │ │ ├── Horizontal rules.html │ │ ├── Horizontal rules.text │ │ ├── Inline HTML (Advanced).html │ │ ├── Inline HTML (Advanced).text │ │ ├── Inline HTML (Simple).html │ │ ├── Inline HTML (Simple).text │ │ ├── Inline HTML comments.html │ │ ├── Inline HTML comments.text │ │ ├── Links, inline style.html │ │ ├── Links, inline style.text │ │ ├── Links, reference style.html │ │ ├── Links, reference style.text │ │ ├── Links, shortcut references.html │ │ ├── Links, shortcut references.text │ │ ├── Literal quotes in titles.html │ │ ├── Literal quotes in titles.text │ │ ├── Markdown Documentation - Basics.html │ │ ├── Markdown Documentation - Basics.text │ │ ├── Markdown Documentation - Syntax.html │ │ ├── Markdown Documentation - Syntax.text │ │ ├── Nested blockquotes.html │ │ ├── Nested blockquotes.text │ │ ├── Ordered and unordered lists.html │ │ ├── Ordered and unordered lists.text │ │ ├── Strong and em together.html │ │ ├── Strong and em together.text │ │ ├── Tabs.html │ │ ├── Tabs.text │ │ ├── Tidyness.html │ │ └── Tidyness.text ├── shopspring │ └── decimal │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decimal.go │ │ └── decimal_test.go ├── shurcooL │ └── sanitized_anchor_name │ │ ├── LICENSE │ │ ├── README.md │ │ ├── main.go │ │ └── main_test.go ├── skip2 │ └── go-qrcode │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bitset │ │ ├── bitset.go │ │ └── bitset_test.go │ │ ├── encoder.go │ │ ├── encoder_test.go │ │ ├── example_test.go │ │ ├── qrcode.go │ │ ├── qrcode_decode_test.go │ │ ├── qrcode_test.go │ │ ├── reedsolomon │ │ ├── gf2_8.go │ │ ├── gf2_8_test.go │ │ ├── gf_poly.go │ │ ├── gf_poly_test.go │ │ ├── reed_solomon.go │ │ └── reed_solomon_test.go │ │ ├── regular_symbol.go │ │ ├── regular_symbol_test.go │ │ ├── symbol.go │ │ ├── symbol_test.go │ │ ├── version.go │ │ └── version_test.go ├── stoppableListener │ ├── LICENSE │ ├── README.md │ └── listener.go ├── trayhost │ ├── LICENSE │ ├── README.md │ ├── example_test.go │ ├── make_icon.bat │ ├── make_icon.sh │ ├── platform │ │ ├── darwin │ │ │ └── dock.m │ │ ├── linux │ │ │ └── tray.c │ │ ├── platform.h │ │ └── windows │ │ │ └── tray.c │ └── trayhost.go └── vsergeev │ └── btckeygenie │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── btckey │ ├── btckey.go │ ├── btckey_test.go │ ├── elliptic.go │ └── elliptic_test.go │ └── main.go └── golang.org └── x ├── crypto └── ripemd160 │ ├── ripemd160.go │ ├── ripemd160_test.go │ └── ripemd160block.go └── image ├── font ├── basicfont │ ├── basicfont.go │ ├── data.go │ └── gen.go ├── font.go ├── plan9font │ ├── example_test.go │ └── plan9font.go └── testdata │ └── fixed │ ├── 7x13.0000 │ ├── 7x13.0100 │ ├── 7x13.0200 │ ├── 7x13.0300 │ ├── 7x13.0400 │ ├── 7x13.0500 │ ├── 7x13.0E00 │ ├── 7x13.1000 │ ├── 7x13.1600 │ ├── 7x13.1E00 │ ├── 7x13.1F00 │ ├── 7x13.2000 │ ├── 7x13.2100 │ ├── 7x13.2200 │ ├── 7x13.2300 │ ├── 7x13.2400 │ ├── 7x13.2500 │ ├── 7x13.2600 │ ├── 7x13.2700 │ ├── 7x13.2800 │ ├── 7x13.2A00 │ ├── 7x13.3000 │ ├── 7x13.FB00 │ ├── 7x13.FE00 │ ├── 7x13.FF00 │ ├── README │ └── unicode.7x13.font └── math └── fixed ├── fixed.go └── fixed_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/README.md -------------------------------------------------------------------------------- /bindata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/bindata.sh -------------------------------------------------------------------------------- /bindata_darwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/bindata_darwin.sh -------------------------------------------------------------------------------- /config/gachain-db.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/config/gachain-db.service -------------------------------------------------------------------------------- /config/gachain.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/config/gachain.service -------------------------------------------------------------------------------- /daylight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/daylight.go -------------------------------------------------------------------------------- /daylight.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/daylight.service -------------------------------------------------------------------------------- /daylightdarwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/daylightdarwin.go -------------------------------------------------------------------------------- /daylightlinuxfreebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/daylightlinuxfreebsd.go -------------------------------------------------------------------------------- /daylightnotwindows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/daylightnotwindows.go -------------------------------------------------------------------------------- /daylightwindows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/daylightwindows.go -------------------------------------------------------------------------------- /icon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/icon.go -------------------------------------------------------------------------------- /iconapp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/iconapp.ico -------------------------------------------------------------------------------- /make_deb/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/make_deb/make.sh -------------------------------------------------------------------------------- /make_deb/sudo_make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/make_deb/sudo_make.sh -------------------------------------------------------------------------------- /make_dmg/Egaas.app/Contents/Frameworks/ThrustShell Framework.framework/Frameworks: -------------------------------------------------------------------------------- 1 | Versions/Current/Frameworks -------------------------------------------------------------------------------- /make_dmg/Egaas.app/Contents/Frameworks/ThrustShell Framework.framework/Libraries: -------------------------------------------------------------------------------- 1 | Versions/Current/Libraries -------------------------------------------------------------------------------- /make_dmg/Egaas.app/Contents/Frameworks/ThrustShell Framework.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /make_dmg/Egaas.app/Contents/Frameworks/ThrustShell Framework.framework/ThrustShell Framework: -------------------------------------------------------------------------------- 1 | Versions/Current/ThrustShell Framework -------------------------------------------------------------------------------- /make_dmg/Egaas.app/Contents/Frameworks/ThrustShell Framework.framework/Versions/A/Libraries/Libraries: -------------------------------------------------------------------------------- 1 | Versions/Current/Libraries -------------------------------------------------------------------------------- /make_dmg/Egaas.app/Contents/Frameworks/ThrustShell Framework.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /make_dmg/Egaas.app/Contents/Frameworks/ThrustShell Helper EH.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /make_dmg/Egaas.app/Contents/Frameworks/ThrustShell Helper NP.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /make_dmg/Egaas.app/Contents/Frameworks/ThrustShell Helper.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /make_dmg/Egaas.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/make_dmg/Egaas.app/Contents/Info.plist -------------------------------------------------------------------------------- /make_dmg/Egaas.app/Contents/MacOS/ThrustShell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/make_dmg/Egaas.app/Contents/MacOS/ThrustShell -------------------------------------------------------------------------------- /make_dmg/Egaas.app/Contents/MacOS/starter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/make_dmg/Egaas.app/Contents/MacOS/starter -------------------------------------------------------------------------------- /make_dmg/Egaas.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /make_dmg/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/make_dmg/background.png -------------------------------------------------------------------------------- /make_dmg/logo-big.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/make_dmg/logo-big.icns -------------------------------------------------------------------------------- /make_dmg/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/make_dmg/make.sh -------------------------------------------------------------------------------- /make_dmg/make_dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/make_dmg/make_dmg.sh -------------------------------------------------------------------------------- /make_dmg/starter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/make_dmg/starter.go -------------------------------------------------------------------------------- /make_exe/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/make_exe/build.bat -------------------------------------------------------------------------------- /make_exe/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/make_exe/logo.ico -------------------------------------------------------------------------------- /make_freebsd_zip/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/make_freebsd_zip/make.sh -------------------------------------------------------------------------------- /packages/consts/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/consts/consts.go -------------------------------------------------------------------------------- /packages/consts/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/consts/structs.go -------------------------------------------------------------------------------- /packages/controllers/accounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/accounts.go -------------------------------------------------------------------------------- /packages/controllers/ajax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax.go -------------------------------------------------------------------------------- /packages/controllers/ajax_addresses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax_addresses.go -------------------------------------------------------------------------------- /packages/controllers/ajax_app_process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax_app_process.go -------------------------------------------------------------------------------- /packages/controllers/ajax_citizen_fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax_citizen_fields.go -------------------------------------------------------------------------------- /packages/controllers/ajax_citizen_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax_citizen_info.go -------------------------------------------------------------------------------- /packages/controllers/ajax_contractinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax_contractinfo.go -------------------------------------------------------------------------------- /packages/controllers/ajax_encrypt_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax_encrypt_key.go -------------------------------------------------------------------------------- /packages/controllers/ajax_explorer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax_explorer.go -------------------------------------------------------------------------------- /packages/controllers/ajax_gen_keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax_gen_keys.go -------------------------------------------------------------------------------- /packages/controllers/ajax_gen_wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax_gen_wallet.go -------------------------------------------------------------------------------- /packages/controllers/ajax_get_menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax_get_menu.go -------------------------------------------------------------------------------- /packages/controllers/ajax_get_menu_html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax_get_menu_html.go -------------------------------------------------------------------------------- /packages/controllers/ajax_getcnt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax_getcnt.go -------------------------------------------------------------------------------- /packages/controllers/ajax_getuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax_getuid.go -------------------------------------------------------------------------------- /packages/controllers/ajax_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax_history.go -------------------------------------------------------------------------------- /packages/controllers/ajax_new_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax_new_key.go -------------------------------------------------------------------------------- /packages/controllers/ajax_new_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax_new_state.go -------------------------------------------------------------------------------- /packages/controllers/ajax_prepare_tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax_prepare_tx.go -------------------------------------------------------------------------------- /packages/controllers/ajax_send_tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax_send_tx.go -------------------------------------------------------------------------------- /packages/controllers/ajax_smart_fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax_smart_fields.go -------------------------------------------------------------------------------- /packages/controllers/ajax_state_coords.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax_state_coords.go -------------------------------------------------------------------------------- /packages/controllers/ajax_states_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax_states_list.go -------------------------------------------------------------------------------- /packages/controllers/ajax_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ajax_storage.go -------------------------------------------------------------------------------- /packages/controllers/alert_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/alert_message.go -------------------------------------------------------------------------------- /packages/controllers/anonym_money_transfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/anonym_money_transfer.go -------------------------------------------------------------------------------- /packages/controllers/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/app.go -------------------------------------------------------------------------------- /packages/controllers/app_catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/app_catalog.go -------------------------------------------------------------------------------- /packages/controllers/backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/backup.go -------------------------------------------------------------------------------- /packages/controllers/block_explorer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/block_explorer.go -------------------------------------------------------------------------------- /packages/controllers/btcempty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/btcempty.go -------------------------------------------------------------------------------- /packages/controllers/change_node_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/change_node_key.go -------------------------------------------------------------------------------- /packages/controllers/check_citizen_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/check_citizen_status.go -------------------------------------------------------------------------------- /packages/controllers/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/common.go -------------------------------------------------------------------------------- /packages/controllers/content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/content.go -------------------------------------------------------------------------------- /packages/controllers/contracts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/contracts.go -------------------------------------------------------------------------------- /packages/controllers/dashboard_anonym.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/dashboard_anonym.go -------------------------------------------------------------------------------- /packages/controllers/edit_column.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/edit_column.go -------------------------------------------------------------------------------- /packages/controllers/edit_contract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/edit_contract.go -------------------------------------------------------------------------------- /packages/controllers/edit_language.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/edit_language.go -------------------------------------------------------------------------------- /packages/controllers/edit_menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/edit_menu.go -------------------------------------------------------------------------------- /packages/controllers/edit_page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/edit_page.go -------------------------------------------------------------------------------- /packages/controllers/edit_signature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/edit_signature.go -------------------------------------------------------------------------------- /packages/controllers/edit_state_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/edit_state_parameters.go -------------------------------------------------------------------------------- /packages/controllers/edit_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/edit_table.go -------------------------------------------------------------------------------- /packages/controllers/edit_wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/edit_wallet.go -------------------------------------------------------------------------------- /packages/controllers/export_tpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/export_tpl.go -------------------------------------------------------------------------------- /packages/controllers/forging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/forging.go -------------------------------------------------------------------------------- /packages/controllers/gen_citizen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/gen_citizen.go -------------------------------------------------------------------------------- /packages/controllers/gen_keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/gen_keys.go -------------------------------------------------------------------------------- /packages/controllers/generate_new_node_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/generate_new_node_key.go -------------------------------------------------------------------------------- /packages/controllers/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/generator.go -------------------------------------------------------------------------------- /packages/controllers/getWallets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/getWallets.go -------------------------------------------------------------------------------- /packages/controllers/get_server_time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/get_server_time.go -------------------------------------------------------------------------------- /packages/controllers/getchain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/getchain.go -------------------------------------------------------------------------------- /packages/controllers/history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/history.go -------------------------------------------------------------------------------- /packages/controllers/home.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/home.go -------------------------------------------------------------------------------- /packages/controllers/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/index.go -------------------------------------------------------------------------------- /packages/controllers/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/install.go -------------------------------------------------------------------------------- /packages/controllers/install_step_0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/install_step_0.go -------------------------------------------------------------------------------- /packages/controllers/install_step_1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/install_step_1.go -------------------------------------------------------------------------------- /packages/controllers/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/interface.go -------------------------------------------------------------------------------- /packages/controllers/languages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/languages.go -------------------------------------------------------------------------------- /packages/controllers/list_of_tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/list_of_tables.go -------------------------------------------------------------------------------- /packages/controllers/login_ecdsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/login_ecdsa.go -------------------------------------------------------------------------------- /packages/controllers/logout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/logout.go -------------------------------------------------------------------------------- /packages/controllers/menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/menu.go -------------------------------------------------------------------------------- /packages/controllers/modal_anonym.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/modal_anonym.go -------------------------------------------------------------------------------- /packages/controllers/new_column.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/new_column.go -------------------------------------------------------------------------------- /packages/controllers/new_contract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/new_contract.go -------------------------------------------------------------------------------- /packages/controllers/new_menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/new_menu.go -------------------------------------------------------------------------------- /packages/controllers/new_page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/new_page.go -------------------------------------------------------------------------------- /packages/controllers/new_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/new_state.go -------------------------------------------------------------------------------- /packages/controllers/new_state_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/new_state_parameters.go -------------------------------------------------------------------------------- /packages/controllers/new_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/new_table.go -------------------------------------------------------------------------------- /packages/controllers/refact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/refact.go -------------------------------------------------------------------------------- /packages/controllers/restore_access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/restore_access.go -------------------------------------------------------------------------------- /packages/controllers/row_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/row_history.go -------------------------------------------------------------------------------- /packages/controllers/save_queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/save_queue.go -------------------------------------------------------------------------------- /packages/controllers/set_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/set_state.go -------------------------------------------------------------------------------- /packages/controllers/show_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/show_table.go -------------------------------------------------------------------------------- /packages/controllers/sign_in.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/sign_in.go -------------------------------------------------------------------------------- /packages/controllers/signatures.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/signatures.go -------------------------------------------------------------------------------- /packages/controllers/smart_request_citizen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/smart_request_citizen.go -------------------------------------------------------------------------------- /packages/controllers/state_laws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/state_laws.go -------------------------------------------------------------------------------- /packages/controllers/state_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/state_parameters.go -------------------------------------------------------------------------------- /packages/controllers/system_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/system_info.go -------------------------------------------------------------------------------- /packages/controllers/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/template.go -------------------------------------------------------------------------------- /packages/controllers/tx_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/tx_status.go -------------------------------------------------------------------------------- /packages/controllers/updating_blockchain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/updating_blockchain.go -------------------------------------------------------------------------------- /packages/controllers/upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/upgrade.go -------------------------------------------------------------------------------- /packages/controllers/wallet_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/wallet_history.go -------------------------------------------------------------------------------- /packages/controllers/ws_blockchain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/controllers/ws_blockchain.go -------------------------------------------------------------------------------- /packages/daemons/block_generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/daemons/block_generator.go -------------------------------------------------------------------------------- /packages/daemons/blocks_collection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/daemons/blocks_collection.go -------------------------------------------------------------------------------- /packages/daemons/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/daemons/common.go -------------------------------------------------------------------------------- /packages/daemons/confirmations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/daemons/confirmations.go -------------------------------------------------------------------------------- /packages/daemons/creating_blockchain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/daemons/creating_blockchain.go -------------------------------------------------------------------------------- /packages/daemons/disseminator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/daemons/disseminator.go -------------------------------------------------------------------------------- /packages/daemons/queue_parser_blocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/daemons/queue_parser_blocks.go -------------------------------------------------------------------------------- /packages/daemons/queue_parser_tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/daemons/queue_parser_tx.go -------------------------------------------------------------------------------- /packages/daemons/upd_full_nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/daemons/upd_full_nodes.go -------------------------------------------------------------------------------- /packages/daylight/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/daylight/common.go -------------------------------------------------------------------------------- /packages/daylight/daylight_start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/daylight/daylight_start.go -------------------------------------------------------------------------------- /packages/daylight/daylight_stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/daylight/daylight_stop.go -------------------------------------------------------------------------------- /packages/daylight/notandroid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/daylight/notandroid.go -------------------------------------------------------------------------------- /packages/daylight/unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/daylight/unix.go -------------------------------------------------------------------------------- /packages/daylight/windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/daylight/windows.go -------------------------------------------------------------------------------- /packages/egcons/egcons.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/egcons/egcons.go -------------------------------------------------------------------------------- /packages/egcons/requests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/egcons/requests.go -------------------------------------------------------------------------------- /packages/exchangeapi/balance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/exchangeapi/balance.go -------------------------------------------------------------------------------- /packages/exchangeapi/exchangeapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/exchangeapi/exchangeapi.go -------------------------------------------------------------------------------- /packages/exchangeapi/history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/exchangeapi/history.go -------------------------------------------------------------------------------- /packages/exchangeapi/newkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/exchangeapi/newkey.go -------------------------------------------------------------------------------- /packages/exchangeapi/send.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/exchangeapi/send.go -------------------------------------------------------------------------------- /packages/lib/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/lib/crypto.go -------------------------------------------------------------------------------- /packages/lib/crypto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/lib/crypto_test.go -------------------------------------------------------------------------------- /packages/lib/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/lib/keys.go -------------------------------------------------------------------------------- /packages/lib/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/lib/keys_test.go -------------------------------------------------------------------------------- /packages/lib/lib-tmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/lib/lib-tmp.go -------------------------------------------------------------------------------- /packages/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/lib/lib.go -------------------------------------------------------------------------------- /packages/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/lib/lib_test.go -------------------------------------------------------------------------------- /packages/lib/signs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/lib/signs.go -------------------------------------------------------------------------------- /packages/lib/signs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/lib/signs_test.go -------------------------------------------------------------------------------- /packages/parser/activate_contract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/activate_contract.go -------------------------------------------------------------------------------- /packages/parser/append_menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/append_menu.go -------------------------------------------------------------------------------- /packages/parser/append_page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/append_page.go -------------------------------------------------------------------------------- /packages/parser/change_node_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/change_node_key.go -------------------------------------------------------------------------------- /packages/parser/change_node_key_dlt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/change_node_key_dlt.go -------------------------------------------------------------------------------- /packages/parser/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/common.go -------------------------------------------------------------------------------- /packages/parser/common_auto_rollback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/common_auto_rollback.go -------------------------------------------------------------------------------- /packages/parser/common_check_block_header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/common_check_block_header.go -------------------------------------------------------------------------------- /packages/parser/common_general_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/common_general_check.go -------------------------------------------------------------------------------- /packages/parser/common_general_rollback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/common_general_rollback.go -------------------------------------------------------------------------------- /packages/parser/common_get_blocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/common_get_blocks.go -------------------------------------------------------------------------------- /packages/parser/common_get_tx_maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/common_get_tx_maps.go -------------------------------------------------------------------------------- /packages/parser/common_parse_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/common_parse_block.go -------------------------------------------------------------------------------- /packages/parser/common_parse_data_front.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/common_parse_data_front.go -------------------------------------------------------------------------------- /packages/parser/common_parse_data_full.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/common_parse_data_full.go -------------------------------------------------------------------------------- /packages/parser/common_parse_data_gate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/common_parse_data_gate.go -------------------------------------------------------------------------------- /packages/parser/common_parse_data_lite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/common_parse_data_lite.go -------------------------------------------------------------------------------- /packages/parser/common_parse_data_rollback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/common_parse_data_rollback.go -------------------------------------------------------------------------------- /packages/parser/common_parse_transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/common_parse_transaction.go -------------------------------------------------------------------------------- /packages/parser/common_rollback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/common_rollback.go -------------------------------------------------------------------------------- /packages/parser/common_rollback_aI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/common_rollback_aI.go -------------------------------------------------------------------------------- /packages/parser/common_selective_rollback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/common_selective_rollback.go -------------------------------------------------------------------------------- /packages/parser/common_tx_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/common_tx_parser.go -------------------------------------------------------------------------------- /packages/parser/common_upd_block_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/common_upd_block_info.go -------------------------------------------------------------------------------- /packages/parser/composite_tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/composite_tx.go -------------------------------------------------------------------------------- /packages/parser/dlt_change_host_vote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/dlt_change_host_vote.go -------------------------------------------------------------------------------- /packages/parser/dlt_transfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/dlt_transfer.go -------------------------------------------------------------------------------- /packages/parser/edit_column.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/edit_column.go -------------------------------------------------------------------------------- /packages/parser/edit_contract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/edit_contract.go -------------------------------------------------------------------------------- /packages/parser/edit_lang.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/edit_lang.go -------------------------------------------------------------------------------- /packages/parser/edit_menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/edit_menu.go -------------------------------------------------------------------------------- /packages/parser/edit_page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/edit_page.go -------------------------------------------------------------------------------- /packages/parser/edit_sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/edit_sign.go -------------------------------------------------------------------------------- /packages/parser/edit_state_paremeters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/edit_state_paremeters.go -------------------------------------------------------------------------------- /packages/parser/edit_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/edit_table.go -------------------------------------------------------------------------------- /packages/parser/edit_wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/edit_wallet.go -------------------------------------------------------------------------------- /packages/parser/first_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/first_block.go -------------------------------------------------------------------------------- /packages/parser/first_block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/first_block_test.go -------------------------------------------------------------------------------- /packages/parser/new_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/new_account.go -------------------------------------------------------------------------------- /packages/parser/new_column.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/new_column.go -------------------------------------------------------------------------------- /packages/parser/new_contract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/new_contract.go -------------------------------------------------------------------------------- /packages/parser/new_lang.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/new_lang.go -------------------------------------------------------------------------------- /packages/parser/new_menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/new_menu.go -------------------------------------------------------------------------------- /packages/parser/new_page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/new_page.go -------------------------------------------------------------------------------- /packages/parser/new_sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/new_sign.go -------------------------------------------------------------------------------- /packages/parser/new_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/new_state.go -------------------------------------------------------------------------------- /packages/parser/new_state_paremeters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/new_state_paremeters.go -------------------------------------------------------------------------------- /packages/parser/new_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/new_table.go -------------------------------------------------------------------------------- /packages/parser/restore_access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/restore_access.go -------------------------------------------------------------------------------- /packages/parser/restore_access_active.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/restore_access_active.go -------------------------------------------------------------------------------- /packages/parser/restore_access_close.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/restore_access_close.go -------------------------------------------------------------------------------- /packages/parser/restore_access_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/restore_access_request.go -------------------------------------------------------------------------------- /packages/parser/smart_p.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/smart_p.go -------------------------------------------------------------------------------- /packages/parser/upd_full_nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/parser/upd_full_nodes.go -------------------------------------------------------------------------------- /packages/schema/migration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/schema/migration.go -------------------------------------------------------------------------------- /packages/script/cmds_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/script/cmds_list.go -------------------------------------------------------------------------------- /packages/script/compile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/script/compile.go -------------------------------------------------------------------------------- /packages/script/compile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/script/compile_test.go -------------------------------------------------------------------------------- /packages/script/eval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/script/eval.go -------------------------------------------------------------------------------- /packages/script/eval_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/script/eval_test.go -------------------------------------------------------------------------------- /packages/script/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/script/lex.go -------------------------------------------------------------------------------- /packages/script/lex_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/script/lex_table.go -------------------------------------------------------------------------------- /packages/script/lex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/script/lex_test.go -------------------------------------------------------------------------------- /packages/script/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/script/vm.go -------------------------------------------------------------------------------- /packages/script/vminit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/script/vminit.go -------------------------------------------------------------------------------- /packages/sendnotif/notmobile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/sendnotif/notmobile.go -------------------------------------------------------------------------------- /packages/smart/smart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/smart/smart.go -------------------------------------------------------------------------------- /packages/smart/smart_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/smart/smart_test.go -------------------------------------------------------------------------------- /packages/stopdaemons/notmobile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/stopdaemons/notmobile.go -------------------------------------------------------------------------------- /packages/stopdaemons/stopdaemons.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/stopdaemons/stopdaemons.go -------------------------------------------------------------------------------- /packages/system/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/system/system.go -------------------------------------------------------------------------------- /packages/system/system_notwindows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/system/system_notwindows.go -------------------------------------------------------------------------------- /packages/system/system_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/system/system_windows.go -------------------------------------------------------------------------------- /packages/tcpserver/tcpserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/tcpserver/tcpserver.go -------------------------------------------------------------------------------- /packages/tcpserver/type1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/tcpserver/type1.go -------------------------------------------------------------------------------- /packages/tcpserver/type10.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/tcpserver/type10.go -------------------------------------------------------------------------------- /packages/tcpserver/type2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/tcpserver/type2.go -------------------------------------------------------------------------------- /packages/tcpserver/type4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/tcpserver/type4.go -------------------------------------------------------------------------------- /packages/tcpserver/type7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/tcpserver/type7.go -------------------------------------------------------------------------------- /packages/test/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/test/test.go -------------------------------------------------------------------------------- /packages/testnet/blockchain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/testnet/blockchain.go -------------------------------------------------------------------------------- /packages/testnet/testnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/testnet/testnet.go -------------------------------------------------------------------------------- /packages/testnet/wschain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/testnet/wschain.go -------------------------------------------------------------------------------- /packages/textproc/textfunc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/textproc/textfunc.go -------------------------------------------------------------------------------- /packages/textproc/textproc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/textproc/textproc.go -------------------------------------------------------------------------------- /packages/textproc/textproc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/textproc/textproc_test.go -------------------------------------------------------------------------------- /packages/utils/language.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/utils/language.go -------------------------------------------------------------------------------- /packages/utils/smart_u.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/utils/smart_u.go -------------------------------------------------------------------------------- /packages/utils/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/utils/sql.go -------------------------------------------------------------------------------- /packages/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/utils/utils.go -------------------------------------------------------------------------------- /packages/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/packages/utils/utils_test.go -------------------------------------------------------------------------------- /static/1block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/1block -------------------------------------------------------------------------------- /static/Global.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/Global.tpl -------------------------------------------------------------------------------- /static/accounts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/accounts.html -------------------------------------------------------------------------------- /static/alert_success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/alert_success.html -------------------------------------------------------------------------------- /static/anonym_money_transfer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/anonym_money_transfer.html -------------------------------------------------------------------------------- /static/app_catalog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/app_catalog.html -------------------------------------------------------------------------------- /static/app_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/app_template.html -------------------------------------------------------------------------------- /static/backup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/backup.html -------------------------------------------------------------------------------- /static/basic.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/basic.tpl -------------------------------------------------------------------------------- /static/beta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/beta.html -------------------------------------------------------------------------------- /static/block_explorer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/block_explorer.html -------------------------------------------------------------------------------- /static/btc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/btc.html -------------------------------------------------------------------------------- /static/cb_citizens.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/cb_citizens.html -------------------------------------------------------------------------------- /static/cb_citizens_new_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/cb_citizens_new_user.html -------------------------------------------------------------------------------- /static/cb_citizens_requests_foreigners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/cb_citizens_requests_foreigners.html -------------------------------------------------------------------------------- /static/cb_currency_exchange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/cb_currency_exchange.html -------------------------------------------------------------------------------- /static/cb_delegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/cb_delegate.html -------------------------------------------------------------------------------- /static/cb_emission_account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/cb_emission_account.html -------------------------------------------------------------------------------- /static/cb_emission_fixed_amount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/cb_emission_fixed_amount.html -------------------------------------------------------------------------------- /static/cb_emission_proportional.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/cb_emission_proportional.html -------------------------------------------------------------------------------- /static/cb_new_representative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/cb_new_representative.html -------------------------------------------------------------------------------- /static/cb_representative_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/cb_representative_details.html -------------------------------------------------------------------------------- /static/cb_representatives.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/cb_representatives.html -------------------------------------------------------------------------------- /static/cb_select_emission.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/cb_select_emission.html -------------------------------------------------------------------------------- /static/change_node_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/change_node_key.html -------------------------------------------------------------------------------- /static/change_state_smart_laws.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/change_state_smart_laws.html -------------------------------------------------------------------------------- /static/check_citizen_status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/check_citizen_status.html -------------------------------------------------------------------------------- /static/citizen_admission_high_school.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/citizen_admission_high_school.html -------------------------------------------------------------------------------- /static/citizen_bill_payment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/citizen_bill_payment.html -------------------------------------------------------------------------------- /static/citizen_divorce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/citizen_divorce.html -------------------------------------------------------------------------------- /static/citizen_inheritance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/citizen_inheritance.html -------------------------------------------------------------------------------- /static/citizen_marriage_contract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/citizen_marriage_contract.html -------------------------------------------------------------------------------- /static/citizen_marriage_registration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/citizen_marriage_registration.html -------------------------------------------------------------------------------- /static/citizen_money_transfer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/citizen_money_transfer.html -------------------------------------------------------------------------------- /static/citizen_new_company.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/citizen_new_company.html -------------------------------------------------------------------------------- /static/citizen_political_party.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/citizen_political_party.html -------------------------------------------------------------------------------- /static/citizen_property.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/citizen_property.html -------------------------------------------------------------------------------- /static/citizen_rule_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/citizen_rule_details.html -------------------------------------------------------------------------------- /static/company_application_purchase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/company_application_purchase.html -------------------------------------------------------------------------------- /static/company_contract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/company_contract.html -------------------------------------------------------------------------------- /static/company_crowdfunding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/company_crowdfunding.html -------------------------------------------------------------------------------- /static/company_currency_exchange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/company_currency_exchange.html -------------------------------------------------------------------------------- /static/company_customhouse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/company_customhouse.html -------------------------------------------------------------------------------- /static/company_new_company.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/company_new_company.html -------------------------------------------------------------------------------- /static/company_new_good.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/company_new_good.html -------------------------------------------------------------------------------- /static/company_new_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/company_new_item.html -------------------------------------------------------------------------------- /static/company_new_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/company_new_order.html -------------------------------------------------------------------------------- /static/company_new_shares.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/company_new_shares.html -------------------------------------------------------------------------------- /static/company_offer_seller.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/company_offer_seller.html -------------------------------------------------------------------------------- /static/company_offer_transport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/company_offer_transport.html -------------------------------------------------------------------------------- /static/company_select_transport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/company_select_transport.html -------------------------------------------------------------------------------- /static/company_shares_exchange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/company_shares_exchange.html -------------------------------------------------------------------------------- /static/company_smart_contracts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/company_smart_contracts.html -------------------------------------------------------------------------------- /static/contracts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/contracts.html -------------------------------------------------------------------------------- /static/countries/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/countries/countries.json -------------------------------------------------------------------------------- /static/countries/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/countries/flags.png -------------------------------------------------------------------------------- /static/countries/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/countries/mm.png -------------------------------------------------------------------------------- /static/countries/no_citizenship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/countries/no_citizenship.png -------------------------------------------------------------------------------- /static/countup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/countup.html -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/dashboard_anonym.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/dashboard_anonym.html -------------------------------------------------------------------------------- /static/dashboard_cb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/dashboard_cb.html -------------------------------------------------------------------------------- /static/dashboard_company.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/dashboard_company.html -------------------------------------------------------------------------------- /static/dashboard_gov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/dashboard_gov.html -------------------------------------------------------------------------------- /static/dashboard_health.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/dashboard_health.html -------------------------------------------------------------------------------- /static/data/entries_doctor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/data/entries_doctor.json -------------------------------------------------------------------------------- /static/data/immunizations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/data/immunizations.json -------------------------------------------------------------------------------- /static/data/medication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/data/medication.json -------------------------------------------------------------------------------- /static/data/patients.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/data/patients.json -------------------------------------------------------------------------------- /static/description.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/description.tpl -------------------------------------------------------------------------------- /static/edit_column.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/edit_column.html -------------------------------------------------------------------------------- /static/edit_contract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/edit_contract.html -------------------------------------------------------------------------------- /static/edit_language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/edit_language.html -------------------------------------------------------------------------------- /static/edit_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/edit_menu.html -------------------------------------------------------------------------------- /static/edit_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/edit_page.html -------------------------------------------------------------------------------- /static/edit_signature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/edit_signature.html -------------------------------------------------------------------------------- /static/edit_state_parameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/edit_state_parameters.html -------------------------------------------------------------------------------- /static/edit_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/edit_table.html -------------------------------------------------------------------------------- /static/edit_wallet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/edit_wallet.html -------------------------------------------------------------------------------- /static/export_tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/export_tpl.html -------------------------------------------------------------------------------- /static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/fonts/PFSquareSansPro-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/PFSquareSansPro-Bold.eot -------------------------------------------------------------------------------- /static/fonts/PFSquareSansPro-Bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/PFSquareSansPro-Bold.svg -------------------------------------------------------------------------------- /static/fonts/PFSquareSansPro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/PFSquareSansPro-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/PFSquareSansPro-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/PFSquareSansPro-Bold.woff -------------------------------------------------------------------------------- /static/fonts/PFSquareSansPro-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/PFSquareSansPro-Bold.woff2 -------------------------------------------------------------------------------- /static/fonts/PFSquareSansPro-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/PFSquareSansPro-Light.eot -------------------------------------------------------------------------------- /static/fonts/PFSquareSansPro-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/PFSquareSansPro-Light.svg -------------------------------------------------------------------------------- /static/fonts/PFSquareSansPro-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/PFSquareSansPro-Light.ttf -------------------------------------------------------------------------------- /static/fonts/PFSquareSansPro-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/PFSquareSansPro-Light.woff -------------------------------------------------------------------------------- /static/fonts/PFSquareSansPro-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/PFSquareSansPro-Light.woff2 -------------------------------------------------------------------------------- /static/fonts/PFSquareSansPro-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/PFSquareSansPro-Medium.eot -------------------------------------------------------------------------------- /static/fonts/PFSquareSansPro-Medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/PFSquareSansPro-Medium.svg -------------------------------------------------------------------------------- /static/fonts/PFSquareSansPro-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/PFSquareSansPro-Medium.ttf -------------------------------------------------------------------------------- /static/fonts/PFSquareSansPro-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/PFSquareSansPro-Medium.woff -------------------------------------------------------------------------------- /static/fonts/PFSquareSansPro-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/PFSquareSansPro-Medium.woff2 -------------------------------------------------------------------------------- /static/fonts/PFSquareSansPro-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/PFSquareSansPro-Regular.eot -------------------------------------------------------------------------------- /static/fonts/PFSquareSansPro-Regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/PFSquareSansPro-Regular.svg -------------------------------------------------------------------------------- /static/fonts/PFSquareSansPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/PFSquareSansPro-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/PFSquareSansPro-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/PFSquareSansPro-Regular.woff -------------------------------------------------------------------------------- /static/fonts/PFSquareSansPro-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/PFSquareSansPro-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/Simple-Line-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/Simple-Line-Icons.eot -------------------------------------------------------------------------------- /static/fonts/Simple-Line-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/Simple-Line-Icons.svg -------------------------------------------------------------------------------- /static/fonts/Simple-Line-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/Simple-Line-Icons.ttf -------------------------------------------------------------------------------- /static/fonts/Simple-Line-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/Simple-Line-Icons.woff -------------------------------------------------------------------------------- /static/fonts/Simple-Line-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/Simple-Line-Icons.woff2 -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/fonts/glyphicons-filetypes-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/glyphicons-filetypes-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-filetypes-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/glyphicons-filetypes-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-filetypes-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/glyphicons-filetypes-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/glyphicons-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/glyphicons-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/glyphicons-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/glyphicons-regular.woff -------------------------------------------------------------------------------- /static/fonts/glyphicons-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/glyphicons-regular.woff2 -------------------------------------------------------------------------------- /static/fonts/glyphicons-social-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/glyphicons-social-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-social-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/glyphicons-social-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-social-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/glyphicons-social-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-social-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/glyphicons-social-regular.woff -------------------------------------------------------------------------------- /static/fonts/glyphicons-social-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/fonts/glyphicons-social-regular.woff2 -------------------------------------------------------------------------------- /static/forging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/forging.html -------------------------------------------------------------------------------- /static/gen_citizen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/gen_citizen.html -------------------------------------------------------------------------------- /static/gen_keys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/gen_keys.html -------------------------------------------------------------------------------- /static/gen_wallets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/gen_wallets.html -------------------------------------------------------------------------------- /static/generator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator.html -------------------------------------------------------------------------------- /static/generator/ckeditor/adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/adapters/jquery.js -------------------------------------------------------------------------------- /static/generator/ckeditor/build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/build-config.js -------------------------------------------------------------------------------- /static/generator/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /static/generator/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/config.js -------------------------------------------------------------------------------- /static/generator/ckeditor/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/content.css -------------------------------------------------------------------------------- /static/generator/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/contents.css -------------------------------------------------------------------------------- /static/generator/ckeditor/core/_bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/_bootstrap.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/ckeditor.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/command.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/config.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/dom.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/dom/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/dom/comment.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/dom/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/dom/element.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/dom/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/dom/event.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/dom/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/dom/node.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/dom/range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/dom/range.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/dom/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/dom/text.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/dom/walker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/dom/walker.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/dom/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/dom/window.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/dtd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/dtd.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/editable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/editable.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/editor.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/env.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/event.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/eventInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/eventInfo.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/filter.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/htmlparser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/htmlparser.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/lang.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/loader.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/log.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/plugins.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/selection.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/skin.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/style.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/template.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/tools.js -------------------------------------------------------------------------------- /static/generator/ckeditor/core/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/core/ui.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/af.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/az.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/da.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/de-ch.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/de.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/el.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/en-au.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/en-ca.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/en-gb.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/en.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/es.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/et.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/fr-ca.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/he.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/id.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/is.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/it.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/km.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/ku.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/mk.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/no.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/oc.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/pt-br.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/si.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/sq.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/sr-latn.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/sr.latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/sr.latn.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/th.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/tt.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/ug.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/zh-cn.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /static/generator/ckeditor/lang/zn-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/lang/zn-ch.js -------------------------------------------------------------------------------- /static/generator/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /static/generator/ckeditor/samples/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/samples/ajax.html -------------------------------------------------------------------------------- /static/generator/ckeditor/samples/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/samples/api.html -------------------------------------------------------------------------------- /static/generator/ckeditor/samples/assets/sample.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Required by tests (dom/document.html). 3 | */ 4 | -------------------------------------------------------------------------------- /static/generator/ckeditor/samples/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/samples/debug.log -------------------------------------------------------------------------------- /static/generator/ckeditor/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/samples/index.html -------------------------------------------------------------------------------- /static/generator/ckeditor/samples/jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/samples/jquery.html -------------------------------------------------------------------------------- /static/generator/ckeditor/samples/js/sf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/samples/js/sf.js -------------------------------------------------------------------------------- /static/generator/ckeditor/samples/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/samples/sample.css -------------------------------------------------------------------------------- /static/generator/ckeditor/samples/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/samples/sample.js -------------------------------------------------------------------------------- /static/generator/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/ckeditor/styles.js -------------------------------------------------------------------------------- /static/generator/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/css/bootstrap.css -------------------------------------------------------------------------------- /static/generator/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/generator/css/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/css/docs.css -------------------------------------------------------------------------------- /static/generator/css/docs.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/css/docs.min.css -------------------------------------------------------------------------------- /static/generator/css/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/css/editor.css -------------------------------------------------------------------------------- /static/generator/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/css/font-awesome.min.css -------------------------------------------------------------------------------- /static/generator/css/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/css/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/generator/css/layoutit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/css/layoutit.css -------------------------------------------------------------------------------- /static/generator/css/toolbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/css/toolbox.css -------------------------------------------------------------------------------- /static/generator/img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/img/1.jpg -------------------------------------------------------------------------------- /static/generator/img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/img/2.jpg -------------------------------------------------------------------------------- /static/generator/img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/img/3.jpg -------------------------------------------------------------------------------- /static/generator/img/a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/img/a.jpg -------------------------------------------------------------------------------- /static/generator/img/a_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/img/a_002.jpg -------------------------------------------------------------------------------- /static/generator/img/city.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/img/city.jpg -------------------------------------------------------------------------------- /static/generator/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/img/favicon.png -------------------------------------------------------------------------------- /static/generator/img/people.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/img/people.jpg -------------------------------------------------------------------------------- /static/generator/img/sports.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/img/sports.jpg -------------------------------------------------------------------------------- /static/generator/js/FileSaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/js/FileSaver.js -------------------------------------------------------------------------------- /static/generator/js/blob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/js/blob.js -------------------------------------------------------------------------------- /static/generator/js/canvas-toBlob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/js/canvas-toBlob.js -------------------------------------------------------------------------------- /static/generator/js/docs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/js/docs.min.js -------------------------------------------------------------------------------- /static/generator/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/js/html5shiv.js -------------------------------------------------------------------------------- /static/generator/js/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/js/jquery-ui.js -------------------------------------------------------------------------------- /static/generator/js/jquery.htmlClean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/js/jquery.htmlClean.js -------------------------------------------------------------------------------- /static/generator/js/pick-a-color-1.2.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/js/pick-a-color-1.2.2.min.js -------------------------------------------------------------------------------- /static/generator/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/js/scripts.js -------------------------------------------------------------------------------- /static/generator/js/scripts_new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/js/scripts_new.js -------------------------------------------------------------------------------- /static/generator/js/tinycolor-0.9.15.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/js/tinycolor-0.9.15.min.js -------------------------------------------------------------------------------- /static/generator/js/vendor/blob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/js/vendor/blob.js -------------------------------------------------------------------------------- /static/generator/js/vendor/filesaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/js/vendor/filesaver.js -------------------------------------------------------------------------------- /static/generator/js/vendor/holder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/js/vendor/holder.js -------------------------------------------------------------------------------- /static/generator/js/vendor/jszip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/js/vendor/jszip.min.js -------------------------------------------------------------------------------- /static/generator/js/vendor/less.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/js/vendor/less.min.js -------------------------------------------------------------------------------- /static/generator/js/vendor/uglify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/js/vendor/uglify.min.js -------------------------------------------------------------------------------- /static/generator/scss/editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/scss/editor.scss -------------------------------------------------------------------------------- /static/generator/scss/partials/_combined.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/scss/partials/_combined.scss -------------------------------------------------------------------------------- /static/generator/scss/partials/_legacy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/generator/scss/partials/_legacy.scss -------------------------------------------------------------------------------- /static/gov_birth_statement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/gov_birth_statement.html -------------------------------------------------------------------------------- /static/gov_citizens.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/gov_citizens.html -------------------------------------------------------------------------------- /static/gov_create_budget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/gov_create_budget.html -------------------------------------------------------------------------------- /static/gov_currency_exchange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/gov_currency_exchange.html -------------------------------------------------------------------------------- /static/gov_date_death.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/gov_date_death.html -------------------------------------------------------------------------------- /static/gov_register_citizen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/gov_register_citizen.html -------------------------------------------------------------------------------- /static/gov_register_property.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/gov_register_property.html -------------------------------------------------------------------------------- /static/gov_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/gov_settings.html -------------------------------------------------------------------------------- /static/gov_shares_exchange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/gov_shares_exchange.html -------------------------------------------------------------------------------- /static/gov_taxes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/gov_taxes.html -------------------------------------------------------------------------------- /static/health_buy_medicament.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/health_buy_medicament.html -------------------------------------------------------------------------------- /static/health_entries_clinic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/health_entries_clinic.html -------------------------------------------------------------------------------- /static/health_facility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/health_facility.html -------------------------------------------------------------------------------- /static/health_immunization_records.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/health_immunization_records.html -------------------------------------------------------------------------------- /static/health_medical_record.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/health_medical_record.html -------------------------------------------------------------------------------- /static/health_medication_records.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/health_medication_records.html -------------------------------------------------------------------------------- /static/health_patient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/health_patient.html -------------------------------------------------------------------------------- /static/health_procedure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/health_procedure.html -------------------------------------------------------------------------------- /static/health_symptom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/health_symptom.html -------------------------------------------------------------------------------- /static/health_vital_signs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/health_vital_signs.html -------------------------------------------------------------------------------- /static/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/history.html -------------------------------------------------------------------------------- /static/html_elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/html_elements.html -------------------------------------------------------------------------------- /static/img/US.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/US.svg -------------------------------------------------------------------------------- /static/img/apps/ava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/apps/ava.png -------------------------------------------------------------------------------- /static/img/apps/business.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/apps/business.png -------------------------------------------------------------------------------- /static/img/apps/elections.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/apps/elections.jpg -------------------------------------------------------------------------------- /static/img/apps/euro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/apps/euro.jpg -------------------------------------------------------------------------------- /static/img/apps/forex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/apps/forex.jpg -------------------------------------------------------------------------------- /static/img/apps/forex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/apps/forex.png -------------------------------------------------------------------------------- /static/img/apps/messenger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/apps/messenger.png -------------------------------------------------------------------------------- /static/img/apps/money.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/apps/money.jpg -------------------------------------------------------------------------------- /static/img/apps/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/apps/money.png -------------------------------------------------------------------------------- /static/img/apps/property.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/apps/property.jpg -------------------------------------------------------------------------------- /static/img/avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/avatar.svg -------------------------------------------------------------------------------- /static/img/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/back.svg -------------------------------------------------------------------------------- /static/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/bg.jpg -------------------------------------------------------------------------------- /static/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/bg.png -------------------------------------------------------------------------------- /static/img/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/bg1.jpg -------------------------------------------------------------------------------- /static/img/bg10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/bg10.jpg -------------------------------------------------------------------------------- /static/img/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/bg2.jpg -------------------------------------------------------------------------------- /static/img/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/bg3.jpg -------------------------------------------------------------------------------- /static/img/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/bg4.jpg -------------------------------------------------------------------------------- /static/img/bg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/bg5.jpg -------------------------------------------------------------------------------- /static/img/bg6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/bg6.jpg -------------------------------------------------------------------------------- /static/img/bg7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/bg7.jpg -------------------------------------------------------------------------------- /static/img/bg8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/bg8.jpg -------------------------------------------------------------------------------- /static/img/bg9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/bg9.jpg -------------------------------------------------------------------------------- /static/img/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/clear.png -------------------------------------------------------------------------------- /static/img/dummy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/dummy.png -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/iconapp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/iconapp.ico -------------------------------------------------------------------------------- /static/img/installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/installed.png -------------------------------------------------------------------------------- /static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/loading.gif -------------------------------------------------------------------------------- /static/img/lock-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/lock-bg.jpg -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/logo.png -------------------------------------------------------------------------------- /static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/logo.svg -------------------------------------------------------------------------------- /static/img/logo_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/logo_menu.png -------------------------------------------------------------------------------- /static/img/logo_null.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/logo_null.svg -------------------------------------------------------------------------------- /static/img/logo_ok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/logo_ok.svg -------------------------------------------------------------------------------- /static/img/main_loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/main_loader.gif -------------------------------------------------------------------------------- /static/img/map/msmarker.shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/map/msmarker.shadow.png -------------------------------------------------------------------------------- /static/img/map/red-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/map/red-dot.png -------------------------------------------------------------------------------- /static/img/map/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/map/square.png -------------------------------------------------------------------------------- /static/img/marker_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/marker_red.png -------------------------------------------------------------------------------- /static/img/mb-sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/mb-sample.jpg -------------------------------------------------------------------------------- /static/img/mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/mockup.png -------------------------------------------------------------------------------- /static/img/no_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/no_map.png -------------------------------------------------------------------------------- /static/img/noflag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/noflag.svg -------------------------------------------------------------------------------- /static/img/profile-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/profile-bg.jpg -------------------------------------------------------------------------------- /static/img/radio_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/radio_icon.png -------------------------------------------------------------------------------- /static/img/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/sort_asc.png -------------------------------------------------------------------------------- /static/img/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/sort_asc_disabled.png -------------------------------------------------------------------------------- /static/img/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/sort_both.png -------------------------------------------------------------------------------- /static/img/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/sort_desc.png -------------------------------------------------------------------------------- /static/img/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/sort_desc_disabled.png -------------------------------------------------------------------------------- /static/img/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/spacer.gif -------------------------------------------------------------------------------- /static/img/squares.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/squares.gif -------------------------------------------------------------------------------- /static/img/user/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/user/01.jpg -------------------------------------------------------------------------------- /static/img/user/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/user/02.jpg -------------------------------------------------------------------------------- /static/img/user/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/user/03.jpg -------------------------------------------------------------------------------- /static/img/user/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/user/04.jpg -------------------------------------------------------------------------------- /static/img/user/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/user/05.jpg -------------------------------------------------------------------------------- /static/img/user/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/user/06.jpg -------------------------------------------------------------------------------- /static/img/user/07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/user/07.jpg -------------------------------------------------------------------------------- /static/img/user/08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/user/08.jpg -------------------------------------------------------------------------------- /static/img/user/09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/user/09.jpg -------------------------------------------------------------------------------- /static/img/user/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/user/10.jpg -------------------------------------------------------------------------------- /static/img/user/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/user/11.jpg -------------------------------------------------------------------------------- /static/img/user/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/user/12.jpg -------------------------------------------------------------------------------- /static/img/user/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/img/user/13.jpg -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/index.html -------------------------------------------------------------------------------- /static/install_step_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/install_step_0.html -------------------------------------------------------------------------------- /static/install_step_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/install_step_1.html -------------------------------------------------------------------------------- /static/interface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/interface.html -------------------------------------------------------------------------------- /static/js/BMapLib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/js/BMapLib.js -------------------------------------------------------------------------------- /static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/js/app.js -------------------------------------------------------------------------------- /static/js/elliptic.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/js/elliptic.min.js -------------------------------------------------------------------------------- /static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/js/index.js -------------------------------------------------------------------------------- /static/js/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/js/keys.js -------------------------------------------------------------------------------- /static/js/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/js/map.js -------------------------------------------------------------------------------- /static/js/photoEditor/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/js/photoEditor/editor.js -------------------------------------------------------------------------------- /static/js/triangles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/js/triangles.js -------------------------------------------------------------------------------- /static/lang/flags/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/lang/flags/flags.png -------------------------------------------------------------------------------- /static/lang/gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/lang/gb.js -------------------------------------------------------------------------------- /static/lang/hk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/lang/hk.js -------------------------------------------------------------------------------- /static/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/lang/zh.js -------------------------------------------------------------------------------- /static/languages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/languages.html -------------------------------------------------------------------------------- /static/list_of_tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/list_of_tables.html -------------------------------------------------------------------------------- /static/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/login.html -------------------------------------------------------------------------------- /static/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/menu.html -------------------------------------------------------------------------------- /static/modal_anonym.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/modal_anonym.html -------------------------------------------------------------------------------- /static/modal_avatar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/modal_avatar.html -------------------------------------------------------------------------------- /static/modal_block_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/modal_block_detail.html -------------------------------------------------------------------------------- /static/modal_map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/modal_map.html -------------------------------------------------------------------------------- /static/modal_signature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/modal_signature.html -------------------------------------------------------------------------------- /static/new_state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/new_state.html -------------------------------------------------------------------------------- /static/new_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/new_table.html -------------------------------------------------------------------------------- /static/page_template.html: -------------------------------------------------------------------------------- 1 | {{noescape .Template}} 2 | 3 | -------------------------------------------------------------------------------- /static/pass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/pass.html -------------------------------------------------------------------------------- /static/psw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/psw.html -------------------------------------------------------------------------------- /static/restore_access.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/restore_access.html -------------------------------------------------------------------------------- /static/restore_access_active.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/restore_access_active.html -------------------------------------------------------------------------------- /static/row_history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/row_history.html -------------------------------------------------------------------------------- /static/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/schema.sql -------------------------------------------------------------------------------- /static/show_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/show_table.html -------------------------------------------------------------------------------- /static/signatures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/signatures.html -------------------------------------------------------------------------------- /static/signatures_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/signatures_list.html -------------------------------------------------------------------------------- /static/signatures_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/signatures_new.html -------------------------------------------------------------------------------- /static/smart_request_citizen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/smart_request_citizen.html -------------------------------------------------------------------------------- /static/state_laws.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/state_laws.html -------------------------------------------------------------------------------- /static/state_parameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/state_parameters.html -------------------------------------------------------------------------------- /static/system_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/system_info.html -------------------------------------------------------------------------------- /static/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/test.html -------------------------------------------------------------------------------- /static/testnet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/testnet.html -------------------------------------------------------------------------------- /static/testnet_register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/testnet_register.html -------------------------------------------------------------------------------- /static/tx_btncont.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/tx_btncont.html -------------------------------------------------------------------------------- /static/tx_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/tx_button.html -------------------------------------------------------------------------------- /static/tx_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/tx_form.html -------------------------------------------------------------------------------- /static/updating_blockchain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/updating_blockchain.html -------------------------------------------------------------------------------- /static/upgrade.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/upgrade.html -------------------------------------------------------------------------------- /static/wallet_history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/wallet_history.html -------------------------------------------------------------------------------- /static/widgets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/static/widgets.html -------------------------------------------------------------------------------- /tools/copyright/copyright.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/tools/copyright/copyright.go -------------------------------------------------------------------------------- /tools/copyright/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/tools/copyright/copyright.txt -------------------------------------------------------------------------------- /tools/genkeys/genkeys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/tools/genkeys/genkeys.go -------------------------------------------------------------------------------- /tools/genkeys/genkeys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/tools/genkeys/genkeys_test.go -------------------------------------------------------------------------------- /tools/genkeys/seed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/tools/genkeys/seed.txt -------------------------------------------------------------------------------- /tools/lextable/lextable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/tools/lextable/lextable.go -------------------------------------------------------------------------------- /tools/nosqlcomment/nosqlcomment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/tools/nosqlcomment/nosqlcomment.go -------------------------------------------------------------------------------- /tools/updatejson/Public.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/tools/updatejson/Public.txt -------------------------------------------------------------------------------- /tools/updatejson/crypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/tools/updatejson/crypt.go -------------------------------------------------------------------------------- /tools/updatejson/updatejson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/tools/updatejson/updatejson.go -------------------------------------------------------------------------------- /tools/updatejson/updatejson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/tools/updatejson/updatejson.json -------------------------------------------------------------------------------- /vendor/github.com/astaxie/beego/config/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/astaxie/beego/config/ini.go -------------------------------------------------------------------------------- /vendor/github.com/astaxie/beego/utils/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/astaxie/beego/utils/file.go -------------------------------------------------------------------------------- /vendor/github.com/astaxie/beego/utils/mail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/astaxie/beego/utils/mail.go -------------------------------------------------------------------------------- /vendor/github.com/astaxie/beego/utils/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/astaxie/beego/utils/rand.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/.gitignore: -------------------------------------------------------------------------------- 1 | *.prof 2 | *.test 3 | *.swp 4 | /bin/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/Makefile -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/README.md -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/bolt_386.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/bolt_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/bolt_arm.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/bolt_arm64.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/bolt_linux.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/bolt_openbsd.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/bolt_ppc.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/bolt_ppc64.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/bolt_ppc64le.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/bolt_s390x.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/bolt_unix.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bolt_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/bolt_windows.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/bucket.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/bucket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/bucket_test.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/cursor.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/cursor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/cursor_test.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/db.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/db_test.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/doc.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/errors.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/freelist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/freelist.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/node.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/node_test.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/page.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/page_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/page_test.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/quick_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/quick_test.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/tx.go -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/boltdb/bolt/tx_test.go -------------------------------------------------------------------------------- /vendor/github.com/go-bindata-assetfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-bindata-assetfs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-bindata-assetfs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-bindata-assetfs/doc.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-sql-driver/mysql/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-sql-driver/mysql/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-sql-driver/mysql/rows.go -------------------------------------------------------------------------------- /vendor/github.com/go-thrust/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-thrust/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/go-thrust/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-thrust/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/go-thrust/Gomfile: -------------------------------------------------------------------------------- 1 | gom 'github.com/go-thrust' 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-thrust/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-thrust/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-thrust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-thrust/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-thrust/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-thrust/TODO.md -------------------------------------------------------------------------------- /vendor/github.com/go-thrust/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-thrust/main.go -------------------------------------------------------------------------------- /vendor/github.com/go-thrust/thrust/thrust.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-thrust/thrust/thrust.go -------------------------------------------------------------------------------- /vendor/github.com/go-yaml/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-yaml/yaml/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/go-yaml/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-yaml/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-yaml/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-yaml/yaml/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-yaml/yaml/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-yaml/yaml/apic.go -------------------------------------------------------------------------------- /vendor/github.com/go-yaml/yaml/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-yaml/yaml/decode.go -------------------------------------------------------------------------------- /vendor/github.com/go-yaml/yaml/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-yaml/yaml/emitterc.go -------------------------------------------------------------------------------- /vendor/github.com/go-yaml/yaml/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-yaml/yaml/encode.go -------------------------------------------------------------------------------- /vendor/github.com/go-yaml/yaml/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-yaml/yaml/parserc.go -------------------------------------------------------------------------------- /vendor/github.com/go-yaml/yaml/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-yaml/yaml/readerc.go -------------------------------------------------------------------------------- /vendor/github.com/go-yaml/yaml/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-yaml/yaml/resolve.go -------------------------------------------------------------------------------- /vendor/github.com/go-yaml/yaml/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-yaml/yaml/scannerc.go -------------------------------------------------------------------------------- /vendor/github.com/go-yaml/yaml/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-yaml/yaml/sorter.go -------------------------------------------------------------------------------- /vendor/github.com/go-yaml/yaml/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-yaml/yaml/writerc.go -------------------------------------------------------------------------------- /vendor/github.com/go-yaml/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-yaml/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/go-yaml/yaml/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/go-yaml/yaml/yamlh.go -------------------------------------------------------------------------------- /vendor/github.com/golang/freetype/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/golang/freetype/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/freetype/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/golang/freetype/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/freetype/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/golang/freetype/README -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/gorilla/websocket/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jbenet/go-base58/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/jbenet/go-base58/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jbenet/go-base58/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/jbenet/go-base58/doc.go -------------------------------------------------------------------------------- /vendor/github.com/kardianos/osext/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/kardianos/osext/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/kardianos/osext/osext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/kardianos/osext/osext.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/README.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/bench_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/buf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/buf.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/certs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/certs/README -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/certs/root.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/certs/root.crt -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/certs/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/certs/server.crt -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/certs/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/certs/server.key -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/conn.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/conn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/conn_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/copy.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/copy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/copy_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/doc.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/encode.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/encode_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/error.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/hstore/hstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/hstore/hstore.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/notify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/notify.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/notify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/notify_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/oid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/oid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/oid/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/oid/gen.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/oid/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/oid/types.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/ssl_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/url.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/url_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/url_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/user_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/user_posix.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/user_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/lib/pq/user_windows.go -------------------------------------------------------------------------------- /vendor/github.com/olekukonko/ts/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/olekukonko/ts/LICENCE -------------------------------------------------------------------------------- /vendor/github.com/olekukonko/ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/olekukonko/ts/README.md -------------------------------------------------------------------------------- /vendor/github.com/olekukonko/ts/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/olekukonko/ts/doc.go -------------------------------------------------------------------------------- /vendor/github.com/olekukonko/ts/ts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/olekukonko/ts/ts.go -------------------------------------------------------------------------------- /vendor/github.com/olekukonko/ts/ts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/olekukonko/ts/ts_test.go -------------------------------------------------------------------------------- /vendor/github.com/olekukonko/ts/ts_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/olekukonko/ts/ts_unix.go -------------------------------------------------------------------------------- /vendor/github.com/olekukonko/ts/ts_x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/olekukonko/ts/ts_x.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/op/go-logging/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/op/go-logging/README.md -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/op/go-logging/backend.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/op/go-logging/format.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/op/go-logging/level.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/log_nix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/op/go-logging/log_nix.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/op/go-logging/logger.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/op/go-logging/memory.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/multi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/op/go-logging/multi.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/syslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/op/go-logging/syslog.go -------------------------------------------------------------------------------- /vendor/github.com/pb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/pb/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/pb/README.md -------------------------------------------------------------------------------- /vendor/github.com/pb/example_copy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/pb/example_copy_test.go -------------------------------------------------------------------------------- /vendor/github.com/pb/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/pb/example_test.go -------------------------------------------------------------------------------- /vendor/github.com/pb/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/pb/format.go -------------------------------------------------------------------------------- /vendor/github.com/pb/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/pb/format_test.go -------------------------------------------------------------------------------- /vendor/github.com/pb/pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/pb/pb.go -------------------------------------------------------------------------------- /vendor/github.com/pb/pb_nix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/pb/pb_nix.go -------------------------------------------------------------------------------- /vendor/github.com/pb/pb_solaris.go: -------------------------------------------------------------------------------- 1 | // +build solaris 2 | 3 | package pb 4 | 5 | const sys_ioctl = 54 6 | -------------------------------------------------------------------------------- /vendor/github.com/pb/pb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/pb/pb_test.go -------------------------------------------------------------------------------- /vendor/github.com/pb/pb_win.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/pb/pb_win.go -------------------------------------------------------------------------------- /vendor/github.com/pb/pb_x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/pb/pb_x.go -------------------------------------------------------------------------------- /vendor/github.com/pb/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/pb/pool.go -------------------------------------------------------------------------------- /vendor/github.com/pb/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/pb/reader.go -------------------------------------------------------------------------------- /vendor/github.com/pb/runecount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/pb/runecount.go -------------------------------------------------------------------------------- /vendor/github.com/pb/runecount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/pb/runecount_test.go -------------------------------------------------------------------------------- /vendor/github.com/shopspring/decimal/.gitignore: -------------------------------------------------------------------------------- 1 | .git 2 | *.swp 3 | -------------------------------------------------------------------------------- /vendor/github.com/skip2/go-qrcode/.gitignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | *.png 3 | -------------------------------------------------------------------------------- /vendor/github.com/skip2/go-qrcode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/skip2/go-qrcode/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/trayhost/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/trayhost/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/trayhost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/trayhost/README.md -------------------------------------------------------------------------------- /vendor/github.com/trayhost/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/trayhost/example_test.go -------------------------------------------------------------------------------- /vendor/github.com/trayhost/make_icon.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/trayhost/make_icon.bat -------------------------------------------------------------------------------- /vendor/github.com/trayhost/make_icon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/trayhost/make_icon.sh -------------------------------------------------------------------------------- /vendor/github.com/trayhost/trayhost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/github.com/trayhost/trayhost.go -------------------------------------------------------------------------------- /vendor/github.com/vsergeev/btckeygenie/ChangeLog.md: -------------------------------------------------------------------------------- 1 | * v1.0.0 - 12/24/2014 2 | * Initial release. 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/image/font/font.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GACHAIN/go-gachain-mvp/HEAD/vendor/golang.org/x/image/font/font.go --------------------------------------------------------------------------------