assistance-engine/construct_map.yaml

4975 lines
205 KiB
YAML

meta:
description: 'Auto-generated by construct_prior.py. Weights derived from real GitHub codebases via Python AST analysis.
DO NOT EDIT MANUALLY — regenerate with: python construct_prior.py --generate-map'
generated_at: '2026-03-26T11:00:54.338542+00:00'
generator_version: '2.0'
avap_node_count: 38
avap_node_names:
- addParam
- addResult
- addVar
- _status
- getListLen
- getQueryParamList
- itemFromList
- replace
- randomString
- if_mode1
- if_mode2
- else
- end
- startLoop
- endLoop
- try
- exception
- return
- go
- gather
- avapConnector
- ormCheckTable
- ormDirect
- ormAccessSelect
- ormAccessInsert
- ormAccessUpdate
- variableFromJSON
- AddVariableToJSON
- encodeSHA256
- encodeMD5
- getTimeStamp
- getDateTime
- stampToDatetime
- RequestGet
- RequestPost
- function
- import
- include
source_stats:
github_files_analyzed: 100
github_files_fetched: 100
total_pair_cooccurrences: 441
total_trio_cooccurrences: 3821
language_mappings:
ormAccessSelect:
description: ORM read/query operation — SELECT semantics
python_ast_calls:
- .fetchall
- .fetchone
- .fetchmany
- .query
- .filter
- .filter_by
- .all
- .first
- .execute
- .select
go_keywords:
- db.Query(
- rows.Scan(
sql_keywords:
- 'SELECT '
- 'JOIN '
- 'WHERE '
ormAccessInsert:
description: ORM write operation — INSERT semantics
python_ast_calls:
- .add
- .insert
- .bulk_insert_mappings
- .create
go_keywords:
- db.Exec("INSERT
sql_keywords:
- INSERT INTO
ormAccessUpdate:
description: ORM update/delete operation — UPDATE/DELETE semantics
python_ast_calls:
- .update
- .merge
- .save
- .commit
go_keywords:
- db.Exec("UPDATE
sql_keywords:
- 'UPDATE '
- DELETE FROM
ormCheckTable:
description: Check if a table exists before operating on it
python_ast_calls:
- inspect.has_table
- engine.dialect.has_table
- inspector.get_table_names
go_keywords:
- db.QueryRow("SELECT EXISTS
sql_keywords:
- SHOW TABLES
- information_schema.tables
ormDirect:
description: Raw/direct SQL execution — bypasses ORM abstraction
python_ast_calls:
- cursor.execute
- connection.execute
- db.execute
- session.execute
go_keywords:
- db.Exec(
- db.QueryRow(
sql_keywords:
- 'EXECUTE '
- 'CALL '
RequestGet:
description: HTTP GET request
python_ast_calls:
- requests.get
- httpx.get
- session.get
- client.get
- aiohttp.ClientSession.get
go_keywords:
- http.Get(
- client.Get(
sql_keywords: []
RequestPost:
description: HTTP POST request
python_ast_calls:
- requests.post
- httpx.post
- session.post
- client.post
- aiohttp.ClientSession.post
go_keywords:
- http.Post(
- client.Post(
sql_keywords: []
try:
description: Exception handling block — try
python_ast_node: ast.Try
go_keywords:
- if err != nil
sql_keywords:
- BEGIN TRY
exception:
description: Exception handler — except/catch clause
python_ast_node: ast.ExceptHandler
go_keywords:
- if err != nil
sql_keywords:
- BEGIN CATCH
startLoop:
description: Loop / iteration construct
python_ast_node: ast.For / ast.AsyncFor
go_keywords:
- for _, v := range
- 'for i, '
sql_keywords:
- CURSOR LOOP
endLoop:
description: End of loop block (AVAP explicit close)
python_ast_node: end of ast.For scope
go_keywords: []
sql_keywords: []
function:
description: Function definition
python_ast_node: ast.FunctionDef / ast.AsyncFunctionDef
go_keywords:
- 'func '
sql_keywords:
- CREATE FUNCTION
- CREATE PROCEDURE
return:
description: Return statement
python_ast_node: ast.Return
go_keywords:
- 'return '
sql_keywords:
- 'RETURN '
if_mode1:
description: Conditional — if(var, comparison, operator) form
python_ast_node: ast.If
go_keywords:
- 'if '
sql_keywords:
- 'IF '
- CASE WHEN
if_mode2:
description: Conditional — if(None, None, expression) form
python_ast_node: ast.If (complex condition)
go_keywords: []
sql_keywords: []
else:
description: Else branch of a conditional
python_ast_node: ast.If.orelse
go_keywords:
- '} else {'
sql_keywords:
- ELSE
end:
description: Block terminator (AVAP explicit close)
python_ast_node: end of ast.If scope
go_keywords: []
sql_keywords:
- END IF
- END
go:
description: Async/concurrent task launch
python_ast_calls:
- asyncio.create_task
- asyncio.ensure_future
- ThreadPoolExecutor
- executor.submit
go_keywords:
- go func(
- 'go '
sql_keywords: []
gather:
description: Wait for concurrent tasks to complete
python_ast_calls:
- asyncio.gather
- asyncio.wait
- executor.map
- wg.Wait
go_keywords:
- sync.WaitGroup
- wg.Wait()
sql_keywords: []
avapConnector:
description: AVAP connector — external service integration point
python_ast_calls: []
go_keywords: []
sql_keywords: []
note: No direct mainstream language equivalent. Rare in co-occurrence.
encodeSHA256:
description: SHA-256 hashing
python_ast_calls:
- hashlib.sha256
- sha256
- .hexdigest
go_keywords:
- sha256.New()
- sha256.Sum256(
sql_keywords:
- SHA2(
- HASHBYTES('SHA2_256'
encodeMD5:
description: MD5 hashing
python_ast_calls:
- hashlib.md5
- md5
- .hexdigest
go_keywords:
- md5.New()
- md5.Sum(
sql_keywords:
- MD5(
- HASHBYTES('MD5'
variableFromJSON:
description: Parse JSON string into variable
python_ast_calls:
- json.loads
- json.load
- orjson.loads
- ujson.loads
go_keywords:
- json.Unmarshal(
sql_keywords:
- JSON_VALUE(
- JSON_EXTRACT(
AddVariableToJSON:
description: Serialize variable to JSON string
python_ast_calls:
- json.dumps
- json.dump
- orjson.dumps
- ujson.dumps
go_keywords:
- json.Marshal(
sql_keywords:
- JSON_OBJECT(
- FOR JSON
getDateTime:
description: Get current date and time
python_ast_calls:
- datetime.now
- datetime.utcnow
- datetime.today
- date.today
go_keywords:
- time.Now()
sql_keywords:
- NOW()
- GETDATE()
- CURRENT_TIMESTAMP
getTimeStamp:
description: Get current Unix timestamp
python_ast_calls:
- time.time
- time.monotonic
go_keywords:
- time.Now().Unix()
sql_keywords:
- UNIX_TIMESTAMP()
- EXTRACT(EPOCH
stampToDatetime:
description: Convert Unix timestamp to datetime
python_ast_calls:
- datetime.fromtimestamp
- datetime.utcfromtimestamp
go_keywords:
- time.Unix(
sql_keywords:
- FROM_UNIXTIME(
- DATEADD
randomString:
description: Generate random string or token
python_ast_calls:
- secrets.token_hex
- secrets.token_urlsafe
- uuid.uuid4
- uuid.uuid1
- random.choices
- random.randbytes
go_keywords:
- rand.Read(
- uuid.New(
sql_keywords:
- NEWID()
- UUID()
replace:
description: String replacement operation
python_ast_calls:
- .replace
- re.sub
- str.replace
go_keywords:
- strings.Replace(
- strings.ReplaceAll(
sql_keywords:
- REPLACE(
addParam:
description: Declare/receive input parameter
python_ast_node: function argument / request.args.get
go_keywords:
- r.URL.Query().Get(
sql_keywords: []
addResult:
description: Declare output/result variable
python_ast_node: variable assignment for return value
go_keywords: []
sql_keywords: []
addVar:
description: Declare intermediate variable
python_ast_node: ast.Assign
go_keywords:
- :=
- 'var '
sql_keywords:
- 'DECLARE '
_status:
description: HTTP status code variable
python_ast_calls:
- response.status_code
- .status
go_keywords:
- resp.StatusCode
- w.WriteHeader(
sql_keywords: []
getListLen:
description: Get length of a list
python_ast_calls:
- len(
go_keywords:
- len(
sql_keywords:
- COUNT(
getQueryParamList:
description: Get multiple values for a query parameter (list form)
python_ast_calls:
- request.args.getlist
- request.GET.getlist
go_keywords:
- r.URL.Query()
sql_keywords: []
itemFromList:
description: Get item by index from a list
python_ast_calls: []
python_ast_node: ast.Subscript on list
go_keywords: []
sql_keywords: []
import:
description: Module/package import
python_ast_node: ast.Import / ast.ImportFrom
go_keywords:
- import (
- import "
sql_keywords: []
include:
description: Include another AVAP file/module
python_ast_calls:
- importlib.import_module
go_keywords: []
sql_keywords: []
fetch_log:
- repo: AutoForgeAI/autoforge
path: api/database.py
url: https://raw.githubusercontent.com/AutoForgeAI/autoforge/cfcba65de2c8eae56216ed1ce98fccd229cc8a21/api/database.py
- repo: mandatoryprogrammer/xsshunter
path: api/apiserver.py
url: https://raw.githubusercontent.com/mandatoryprogrammer/xsshunter/e94d4ae389943db9a30901a6efc4d18c42c79732/api/apiserver.py
- repo: YFGaia/dify-plus
path: api/libs/oauth.py
url: https://raw.githubusercontent.com/YFGaia/dify-plus/ce82b5f776870cfb703b3891125571d6d921c668/api/libs/oauth.py
- repo: discord/access
path: api/manage.py
url: https://raw.githubusercontent.com/discord/access/fbe568dd7ad89c62af40e2f3477757fcdec7b32d/api/manage.py
- repo: amicks/Speculator
path: api/helpers.py
url: https://raw.githubusercontent.com/amicks/Speculator/f7d6590aded20b1e1b5df16a4b27228ee821c4ab/api/helpers.py
- repo: corpus-christi/corpus-christi
path: api/src/i18n/api.py
url: https://raw.githubusercontent.com/corpus-christi/corpus-christi/288d95c4efc5516ff7dbaf159efa94c64cfdcab4/api/src/i18n/api.py
- repo: xuwei95/ezdata
path: api/utils/auth.py
url: https://raw.githubusercontent.com/xuwei95/ezdata/17efca4f4237f3bb0cf29e0eee3b39fb73cd0392/api/utils/auth.py
- repo: elisa-tech/BASIL
path: api/testrun.py
url: https://raw.githubusercontent.com/elisa-tech/BASIL/c54f830dcb9fa24ba67c4357c0dc06bb859d86b5/api/testrun.py
- repo: hngprojects/hng_boilerplate_python_fastapi_web
path: api/db/Storage.py
url: https://raw.githubusercontent.com/hngprojects/hng_boilerplate_python_fastapi_web/91afb2ee72cd681d61bf6a46842e1c8bdefd49f1/api/db/Storage.py
- repo: makerspace/makeradmin
path: api/src/init_db.py
url: https://raw.githubusercontent.com/makerspace/makeradmin/6a17cbba6612b81a11c71742b4eb5d583284cb20/api/src/init_db.py
- repo: herosdigitalnetwork-collab/transw
path: routes/users.py
url: https://raw.githubusercontent.com/herosdigitalnetwork-collab/transw/176d0861916935d6d8668131c4b22cc6c904800a/routes/users.py
- repo: miedan/Blog
path: routes/posts.py
url: https://raw.githubusercontent.com/miedan/Blog/1b65c0f56b17e75b81ccc2e7002e95a6ff37e2f3/routes/posts.py
- repo: WLRDataHub/datahub_services
path: routes/dataset_collection.py
url: https://raw.githubusercontent.com/WLRDataHub/datahub_services/c54a8d4fa469b7079e2f652657d5668f4a30a1ab/routes/dataset_collection.py
- repo: embedded-final-project-group-A/CCTV_BE
path: routes/store.py
url: https://raw.githubusercontent.com/embedded-final-project-group-A/CCTV_BE/2349e19cd61d4e5036aeb18d41fe8a260e7a5dd8/routes/store.py
- repo: acmutd/meteormate-backend
path: routes/cron.py
url: https://raw.githubusercontent.com/acmutd/meteormate-backend/725ecfc007b0fa4576164cebacbaaf713a374868/routes/cron.py
- repo: muKaustav/sync-feature
path: routes/user.py
url: https://raw.githubusercontent.com/muKaustav/sync-feature/3faf017bd036c9cd6e6291df630f17ad56a0773f/routes/user.py
- repo: AmishChawla/saas_cms_fastapi
path: routes/user_management_routes.py
url: https://raw.githubusercontent.com/AmishChawla/saas_cms_fastapi/40a964c9d7c2cb1083860dc2dbfb00f6a681f5cd/routes/user_management_routes.py
- repo: 0xletuss/pasugo
path: routes/ratings.py
url: https://raw.githubusercontent.com/0xletuss/pasugo/e7002af72b1c3fdc2f8bb18021f010fe6ce7f6fe/routes/ratings.py
- repo: kaushalkrgupta02/fastapi_backend_nightly
path: routes/admin.py
url: https://raw.githubusercontent.com/kaushalkrgupta02/fastapi_backend_nightly/9f0aad0ab36f06dbb995128fbc7c32d67dcf0667/routes/admin.py
- repo: AlexSeisler/DevbotKernelBackend
path: routes/db_write.py
url: https://raw.githubusercontent.com/AlexSeisler/DevbotKernelBackend/ae8832a21f3390df0d8a4451ff2ff84f30cdf0c3/routes/db_write.py
- repo: olajowon/loggrove
path: handlers/user.py
url: https://raw.githubusercontent.com/olajowon/loggrove/9046c220ef46cac3016c37dd1f4e862588f2bc82/handlers/user.py
- repo: eggpi/citationhunt
path: handlers/stats.py
url: https://raw.githubusercontent.com/eggpi/citationhunt/0047376acd541fe4f523961a15be3c150e9a9bb5/handlers/stats.py
- repo: farhaan444/Telegram-Bot
path: handlers/admin.py
url: https://raw.githubusercontent.com/farhaan444/Telegram-Bot/8ba56f3122c42de1c97a72319176185045350a83/handlers/admin.py
- repo: dimaplel/telegram-suggestions-bot
path: handlers/main_handler.py
url: https://raw.githubusercontent.com/dimaplel/telegram-suggestions-bot/d7a2fd4a24c89d8118350ff696df5f079f32c6c6/handlers/main_handler.py
- repo: woxane/Vortex
path: handlers/events.py
url: https://raw.githubusercontent.com/woxane/Vortex/cc5a9cbf743752c56159b931e1f958ba1025a654/handlers/events.py
- repo: zoidberg-xgd/TeleSubmit-v2
path: handlers/callback_handlers.py
url: https://raw.githubusercontent.com/zoidberg-xgd/TeleSubmit-v2/94ca3f504e858d407a52b9682d12060bdfe6c2b2/handlers/callback_handlers.py
- repo: piscium-proj/piscium
path: handlers/__init__.py
url: https://raw.githubusercontent.com/piscium-proj/piscium/dc55d2160498ac73bbac1257177b9dc9267f1c12/handlers/__init__.py
- repo: yashkinSun/bot_store_new
path: handlers/menu.py
url: https://raw.githubusercontent.com/yashkinSun/bot_store_new/4737e9ea918386d4c56b9f6061cf188ea83ff7fb/handlers/menu.py
- repo: C32-SoundTech/SoundTech
path: handlers/database.py
url: https://raw.githubusercontent.com/C32-SoundTech/SoundTech/7033140bf7830cbae69a3ba625f1f2352b063484/handlers/database.py
- repo: MAymanKH/ShinBot
path: handlers/admin/usage.py
url: https://raw.githubusercontent.com/MAymanKH/ShinBot/63efd0eea10cefa9804c0314ffb24da8e52c49c4/handlers/admin/usage.py
- repo: TencentBlueKing/bk-sops
path: api/http.py
url: https://raw.githubusercontent.com/TencentBlueKing/bk-sops/98c00d23ac4188b7f9cc77f8aba88bfb8aa696b3/api/http.py
- repo: flipkart-incubator/Astra
path: API/api.py
url: https://raw.githubusercontent.com/flipkart-incubator/Astra/092804a9f9abb3e019c60479e2968b01a76f4ea3/API/api.py
- repo: guydavis/machinaris
path: api/utils.py
url: https://raw.githubusercontent.com/guydavis/machinaris/fe50138f6a6c2b7822b9dc8a2207a65ece05a40b/api/utils.py
- repo: jiuhunwl/short_videos
path: api/wyy.py
url: https://raw.githubusercontent.com/jiuhunwl/short_videos/e3fa00ac9895de313f06ced39667b1e228eef981/api/wyy.py
- repo: othreecodes/MY-RIDE
path: api/views.py
url: https://raw.githubusercontent.com/othreecodes/MY-RIDE/6bd777fde477e976f1a683742b39fd4e0390d764/api/views.py
- repo: duhow/xiaoai-patch
path: api/main.py
url: https://raw.githubusercontent.com/duhow/xiaoai-patch/a99ab6ab8e3d37b8ed23256db5cf0a9386d3e042/api/main.py
- repo: DD-MASTERT/AI-Girlfriend-Desktop-Pet
path: api/kimi.py
url: https://raw.githubusercontent.com/DD-MASTERT/AI-Girlfriend-Desktop-Pet/3a5e04e5928a13b223729fbfbcf2554191fb1bd2/api/kimi.py
- repo: zaoldyeck/telegram-innovation-chatbot
path: api/kkbox.py
url: https://raw.githubusercontent.com/zaoldyeck/telegram-innovation-chatbot/e4e744643612fb56b1f0b67d3af1ff3300d30d6a/api/kkbox.py
- repo: Weiney/douyin
path: api/baidu.py
url: https://raw.githubusercontent.com/Weiney/douyin/f96981454d4f7711bbd0e62de1c42c6f0d801970/api/baidu.py
- repo: zhheo/work-weixin-msg-sever-api
path: api/index.py
url: https://raw.githubusercontent.com/zhheo/work-weixin-msg-sever-api/1546daa00540a7b2b2c511adbd58cca7a868f5c1/api/index.py
- repo: langgenius/dify
path: api/libs/oauth.py
url: https://raw.githubusercontent.com/langgenius/dify/69c2b422dedb1cd7ce548c49eca00641b7ff2419/api/libs/oauth.py
- repo: langgenius/dify
path: api/core/helper/marketplace.py
url: https://raw.githubusercontent.com/langgenius/dify/69c2b422dedb1cd7ce548c49eca00641b7ff2419/api/core/helper/marketplace.py
- repo: Qingyon-AI/Revornix
path: api/common/tp_auth/wechat_utils.py
url: https://raw.githubusercontent.com/Qingyon-AI/Revornix/17204b6585ab6581415ef9b0e8efbf6fcdb00ae8/api/common/tp_auth/wechat_utils.py
- repo: guoxinxin20252025/workflowagent
path: api/services/website_service.py
url: https://raw.githubusercontent.com/guoxinxin20252025/workflowagent/47420255c7302e3ab929652178279bf0c380369a/api/services/website_service.py
- repo: Pixerrift/Discord-image-logger
path: api/Pixerrift.py
url: https://raw.githubusercontent.com/Pixerrift/Discord-image-logger/c2e953c1fe78cdc9100ad8e9b9e995030336f72e/api/Pixerrift.py
- repo: dice-group/embeddings.cc
path: api/embeddings_cc_public_examples.py
url: https://raw.githubusercontent.com/dice-group/embeddings.cc/022d201116b8c6402b191e4d47e28e6ffdb4b09a/api/embeddings_cc_public_examples.py
- repo: Saishhhhhh/CodeLyft
path: API/youtube_search_httpx_patch.py
url: https://raw.githubusercontent.com/Saishhhhhh/CodeLyft/1de0177f7c88e51819ccb41da7bf62e1a1424e3c/API/youtube_search_httpx_patch.py
- repo: GAG37194818/1
path: api/image.py
url: https://raw.githubusercontent.com/GAG37194818/1/1c8a40b113bf8298bcc8729823147a66bfcb795b/api/image.py
- repo: Sepehrmasihpour/seshat
path: API/bot_actions.py
url: https://raw.githubusercontent.com/Sepehrmasihpour/seshat/eb79491f7067aeaa68b8702ee2a9a0ed43328e62/API/bot_actions.py
- repo: Cayyus/mixmatch-spotify-cli
path: api/request.py
url: https://raw.githubusercontent.com/Cayyus/mixmatch-spotify-cli/6c7092c5379541d26c49b1cb1dcafacbff5480be/api/request.py
- repo: Nezreka/SoulSync
path: api/auth.py
url: https://raw.githubusercontent.com/Nezreka/SoulSync/f6709c7cc3c61bbed1dd0c43c5826210dbfb88d8/api/auth.py
- repo: icepage/AutoUpdateJdCookie
path: api/send.py
url: https://raw.githubusercontent.com/icepage/AutoUpdateJdCookie/fb9e1269ba12036d0db5ea63c3838182922243b8/api/send.py
- repo: MinneapolisStarTribune/agate-ai
path: api/app.py
url: https://raw.githubusercontent.com/MinneapolisStarTribune/agate-ai/ba975aff1eb148a1569a1ff6430fb2acb6e754b3/api/app.py
- repo: mnemox-ai/idea-reality-mcp
path: api/main.py
url: https://raw.githubusercontent.com/mnemox-ai/idea-reality-mcp/c9840d9c1db073f504a7588ba40ffc2e05d6b279/api/main.py
- repo: gk11-ru/leninblog
path: api/sx.py
url: https://raw.githubusercontent.com/gk11-ru/leninblog/6e5513ed52e9f3a026962ed8208ad441c065f02e/api/sx.py
- repo: U413/defunct-u413-python
path: api/user.py
url: https://raw.githubusercontent.com/U413/defunct-u413-python/dfd12f21b0b4ef6db9c2ef27d91b8741e473e87a/api/user.py
- repo: mochar/wgcna
path: api/cache.py
url: https://raw.githubusercontent.com/mochar/wgcna/63a74d4a84e39e421f60ecbd9dfcdcbec289db3f/api/cache.py
- repo: Usagi-org/ai-code-review-helper
path: api/utils.py
url: https://raw.githubusercontent.com/Usagi-org/ai-code-review-helper/d5fe002184e934d39c5032a584f23015cbc33919/api/utils.py
- repo: windows98SE/ccaa
path: api/binance.py
url: https://raw.githubusercontent.com/windows98SE/ccaa/6c11da06aba098c970d58d0d4b658d335bc89c1f/api/binance.py
- repo: mluedke2/ultra-motivator
path: api/signin.py
url: https://raw.githubusercontent.com/mluedke2/ultra-motivator/e8a7f845c504f64a46fe67433994fc63c92f2c01/api/signin.py
- repo: Jun-code19/yolo-demo
path: api/routes.py
url: https://raw.githubusercontent.com/Jun-code19/yolo-demo/eca2b7b4f2eecba09b3806313f6b5eda38ff1a9e/api/routes.py
- repo: EDEAI/NexusAI
path: api/auth/token.py
url: https://raw.githubusercontent.com/EDEAI/NexusAI/760d6555af3a4625ef440a5d072229c96ea93e43/api/auth/token.py
- repo: langgenius/dify
path: api/core/plugin/impl/model_runtime.py
url: https://raw.githubusercontent.com/langgenius/dify/69c2b422dedb1cd7ce548c49eca00641b7ff2419/api/core/plugin/impl/model_runtime.py
- repo: infiniflow/ragflow
path: api/db/db_models.py
url: https://raw.githubusercontent.com/infiniflow/ragflow/ff92b5575b7570cb52d98dd0bbc96fe77849beeb/api/db/db_models.py
- repo: anubissbe/knowledgehub
path: api/utils/token_optimizer.py
url: https://raw.githubusercontent.com/anubissbe/knowledgehub/aa7f7bd6c30097f9c611d446c4c256baa725b0fc/api/utils/token_optimizer.py
- repo: SuanmoSuanyangTechnology/MemoryBear
path: api/app/controllers/public_share_controller.py
url: https://raw.githubusercontent.com/SuanmoSuanyangTechnology/MemoryBear/60569529365b6d47cd7780c1c815991800d5160c/api/app/controllers/public_share_controller.py
- repo: erigones/esdc-ce
path: api/permissions.py
url: https://raw.githubusercontent.com/erigones/esdc-ce/7e3dedddbe821283d909393f333eed4acd452953/api/permissions.py
- repo: vladjdk/SocialKit
path: API/instagram_private_api/client.py
url: https://raw.githubusercontent.com/vladjdk/SocialKit/3dc2f3d5ef880b5d4b5e3428d1f59e3adf85c0a7/API/instagram_private_api/client.py
- repo: xfgryujk/blivechat
path: api/open_live.py
url: https://raw.githubusercontent.com/xfgryujk/blivechat/f8ac6c2335b37499850f67be25d3903c6e637d8b/api/open_live.py
- repo: infiniflow/ragflow
path: api/utils/api_utils.py
url: https://raw.githubusercontent.com/infiniflow/ragflow/ff92b5575b7570cb52d98dd0bbc96fe77849beeb/api/utils/api_utils.py
- repo: gnachman/iTerm2
path: api/library/python/iterm2/iterm2/lifecycle.py
url: https://raw.githubusercontent.com/gnachman/iTerm2/b38468e8533b03843b73d47b1eefb7701fe896c3/api/library/python/iterm2/iterm2/lifecycle.py
- repo: bitcart/bitcart
path: api/services/payment_processor.py
url: https://raw.githubusercontent.com/bitcart/bitcart/852f6897c32bcaa2162932a9ba9169155c4d6719/api/services/payment_processor.py
- repo: Soul-AILab/SoulX-Podcast
path: api/tasks.py
url: https://raw.githubusercontent.com/Soul-AILab/SoulX-Podcast/5ac9c0e1cfe596396200c7d38e3fd53b7b3fbf4b/api/tasks.py
- repo: I-am-PUID-0/DUMB
path: api/connection_manager.py
url: https://raw.githubusercontent.com/I-am-PUID-0/DUMB/8b4a7a9ec9dd48b965ebf816157d6dea90fb973e/api/connection_manager.py
- repo: Opentrons/opentrons
path: api/src/opentrons/hardware_control/poller.py
url: https://raw.githubusercontent.com/Opentrons/opentrons/eb5c6ddf99fde10bc4f11539bb75150387415541/api/src/opentrons/hardware_control/poller.py
- repo: sethjuarez/sustineo
path: api/main.py
url: https://raw.githubusercontent.com/sethjuarez/sustineo/31fff07db485afbd2361014712cdd8bd1e446b09/api/main.py
- repo: transformerlab/transformerlab-app
path: api/transformerlab/services/sweep_status_service.py
url: https://raw.githubusercontent.com/transformerlab/transformerlab-app/cd1c38b8c91705c005b6601c1898080d5e01aed5/api/transformerlab/services/sweep_status_service.py
- repo: nottherealsanta/ganimede
path: api/ganimede/managers/Comms.py
url: https://raw.githubusercontent.com/nottherealsanta/ganimede/993deab2be80ddb51d0b923b85dbe68cb2b552ef/api/ganimede/managers/Comms.py
- repo: SuanmoSuanyangTechnology/MemoryBear
path: api/app/services/multi_agent_orchestrator.py
url: https://raw.githubusercontent.com/SuanmoSuanyangTechnology/MemoryBear/60569529365b6d47cd7780c1c815991800d5160c/api/app/services/multi_agent_orchestrator.py
- repo: andyruto/ShiftPLAN
path: API/release-script/pyversion/python394_windows/Lib/concurrent/futures/thread.py
url: https://raw.githubusercontent.com/andyruto/ShiftPLAN/1e03ee5693bf566d736e304e9733ccfdf4dddb7e/API/release-script/pyversion/python394_windows/Lib/concurrent/futures/thread.py
- repo: langgenius/dify
path: api/core/base/tts/app_generator_tts_publisher.py
url: https://raw.githubusercontent.com/langgenius/dify/69c2b422dedb1cd7ce548c49eca00641b7ff2419/api/core/base/tts/app_generator_tts_publisher.py
- repo: janhq/ichigo
path: api/benchmark.py
url: https://raw.githubusercontent.com/janhq/ichigo/21c5ad7caa288226ecee3e5f81868c365b7710bb/api/benchmark.py
- repo: Soul-AILab/SoulX-Podcast
path: api/service.py
url: https://raw.githubusercontent.com/Soul-AILab/SoulX-Podcast/5ac9c0e1cfe596396200c7d38e3fd53b7b3fbf4b/api/service.py
- repo: GoogleChrome/chromium-dashboard
path: api/origin_trials_api.py
url: https://raw.githubusercontent.com/GoogleChrome/chromium-dashboard/64de51611c890fbc9cb20ff7007ea2d1aed87a29/api/origin_trials_api.py
- repo: SuanmoSuanyangTechnology/MemoryBear
path: api/app/tasks.py
url: https://raw.githubusercontent.com/SuanmoSuanyangTechnology/MemoryBear/60569529365b6d47cd7780c1c815991800d5160c/api/app/tasks.py
- repo: xuwei95/ezdata
path: api/mindsdb/api/http/gui.py
url: https://raw.githubusercontent.com/xuwei95/ezdata/17efca4f4237f3bb0cf29e0eee3b39fb73cd0392/api/mindsdb/api/http/gui.py
- repo: NVIDIA/NeMo-Retriever
path: api/src/nv_ingest_api/util/dataloader/dataloader.py
url: https://raw.githubusercontent.com/NVIDIA/NeMo-Retriever/dafeac02d21503ccbe69c0402d5738059a99ad9d/api/src/nv_ingest_api/util/dataloader/dataloader.py
- repo: Flagsmith/flagsmith
path: api/features/features_service.py
url: https://raw.githubusercontent.com/Flagsmith/flagsmith/3f71f16206056f378915651baa29337f403ff777/api/features/features_service.py
- repo: tomasonjo/diffbot-kg-chatbot
path: api/app/main.py
url: https://raw.githubusercontent.com/tomasonjo/diffbot-kg-chatbot/dbb4da6efa12499943628a31ae66427087c3a394/api/app/main.py
- repo: pushshift/api
path: api/Helpers.py
url: https://raw.githubusercontent.com/pushshift/api/ded75fadbc4bf4a3ea4b5cf4518b5bd4e2d7ca1e/api/Helpers.py
- repo: stas-demydiuk/domoticz-zigbee2mqtt-plugin
path: api/api.py
url: https://raw.githubusercontent.com/stas-demydiuk/domoticz-zigbee2mqtt-plugin/660db3f68ae48fedce9b17727db4617ec5f721c8/api/api.py
- repo: Cicada000/VV
path: api/bot.py
url: https://raw.githubusercontent.com/Cicada000/VV/255c87f1e891baea0118a9518c5eb5c1f19c7406/api/bot.py
- repo: xfgryujk/blivechat
path: api/chat.py
url: https://raw.githubusercontent.com/xfgryujk/blivechat/f8ac6c2335b37499850f67be25d3903c6e637d8b/api/chat.py
- repo: Denon/syncPlaylist
path: api/wy.py
url: https://raw.githubusercontent.com/Denon/syncPlaylist/9896e32c5b2181398a19752069a3fc94c75210d4/api/wy.py
- repo: zk1tty/rebrowse-app
path: api/cli.py
url: https://raw.githubusercontent.com/zk1tty/rebrowse-app/708bda967ff3421ff013ca93b59898412e74266f/api/cli.py
- repo: msei99/pbgui
path: api/auth.py
url: https://raw.githubusercontent.com/msei99/pbgui/167584be0330d20ef04fcdd855a48e4f19d1922c/api/auth.py
- repo: jpadilla/black-playground
path: api/app.py
url: https://raw.githubusercontent.com/jpadilla/black-playground/3648282c3fb066028fa309644ec91efd173393a1/api/app.py
- repo: langgenius/dify
path: api/libs/helper.py
url: https://raw.githubusercontent.com/langgenius/dify/69c2b422dedb1cd7ce548c49eca00641b7ff2419/api/libs/helper.py
- repo: desec-io/desec-stack
path: api/desecapi/models/mfa.py
url: https://raw.githubusercontent.com/desec-io/desec-stack/479fa077458afa2c45d772aa72a3fb54785337f0/api/desecapi/models/mfa.py
- repo: Syslifters/sysreptor
path: api/src/sysreptor/pentests/querysets.py
url: https://raw.githubusercontent.com/Syslifters/sysreptor/d4c389c26208b651b3c390ea789ee0e7a2aaebdf/api/src/sysreptor/pentests/querysets.py
pair_weights:
function+import: 1.0
addVar+import: 0.989899
addVar+function: 0.979798
addParam+addVar: 0.959596
addParam+function: 0.959596
addParam+import: 0.959596
if_mode1+import: 0.959596
function+if_mode1: 0.949495
addVar+if_mode1: 0.939394
function+return: 0.939394
import+return: 0.939394
addVar+return: 0.919192
addParam+if_mode1: 0.909091
if_mode1+return: 0.909091
addParam+return: 0.89899
addVar+itemFromList: 0.89899
import+itemFromList: 0.89899
addParam+itemFromList: 0.888889
function+itemFromList: 0.888889
if_mode1+itemFromList: 0.858586
itemFromList+return: 0.838384
exception+function: 0.767677
exception+import: 0.767677
exception+try: 0.767677
function+try: 0.767677
import+try: 0.767677
addParam+exception: 0.747475
addParam+try: 0.747475
addVar+exception: 0.747475
addVar+try: 0.747475
exception+if_mode1: 0.737374
if_mode1+try: 0.737374
exception+return: 0.707071
return+try: 0.707071
exception+itemFromList: 0.69697
if_mode1+startLoop: 0.69697
import+startLoop: 0.69697
itemFromList+try: 0.69697
function+startLoop: 0.686869
addVar+else: 0.676768
addVar+startLoop: 0.676768
else+if_mode1: 0.676768
else+import: 0.676768
addParam+else: 0.666667
else+function: 0.666667
addParam+startLoop: 0.656566
return+startLoop: 0.656566
else+itemFromList: 0.636364
else+return: 0.636364
itemFromList+startLoop: 0.626263
exception+startLoop: 0.565657
startLoop+try: 0.565657
else+exception: 0.555556
else+try: 0.555556
else+startLoop: 0.484848
function+ormAccessSelect: 0.434343
import+ormAccessSelect: 0.434343
if_mode1+ormAccessSelect: 0.424242
addParam+ormAccessSelect: 0.414141
addVar+ormAccessSelect: 0.414141
ormAccessSelect+return: 0.40404
itemFromList+ormAccessSelect: 0.393939
exception+ormAccessSelect: 0.373737
ormAccessSelect+try: 0.373737
RequestGet+addVar: 0.373737
RequestGet+import: 0.373737
RequestPost+addVar: 0.373737
RequestPost+import: 0.373737
addVar+getListLen: 0.363636
getListLen+import: 0.363636
RequestGet+addParam: 0.363636
RequestGet+function: 0.363636
RequestPost+function: 0.363636
addParam+getListLen: 0.353535
function+getListLen: 0.353535
getListLen+if_mode1: 0.353535
RequestGet+itemFromList: 0.353535
RequestGet+return: 0.353535
RequestPost+addParam: 0.353535
RequestPost+return: 0.353535
addParam+ormAccessUpdate: 0.343434
addVar+ormAccessUpdate: 0.343434
else+ormAccessSelect: 0.343434
function+ormAccessUpdate: 0.343434
getListLen+itemFromList: 0.343434
if_mode1+ormAccessUpdate: 0.343434
import+ormAccessUpdate: 0.343434
RequestGet+if_mode1: 0.343434
RequestPost+itemFromList: 0.343434
getListLen+return: 0.333333
ormAccessSelect+startLoop: 0.333333
RequestPost+if_mode1: 0.333333
getListLen+startLoop: 0.323232
itemFromList+ormAccessUpdate: 0.323232
RequestGet+RequestPost: 0.323232
ormAccessUpdate+return: 0.313131
function+variableFromJSON: 0.313131
import+variableFromJSON: 0.313131
AddVariableToJSON+function: 0.30303
AddVariableToJSON+import: 0.30303
return+variableFromJSON: 0.30303
exception+ormAccessUpdate: 0.292929
ormAccessUpdate+try: 0.292929
AddVariableToJSON+return: 0.292929
if_mode1+variableFromJSON: 0.292929
addParam+variableFromJSON: 0.292929
addVar+variableFromJSON: 0.292929
else+getListLen: 0.282828
else+ormAccessUpdate: 0.282828
AddVariableToJSON+if_mode1: 0.282828
itemFromList+variableFromJSON: 0.282828
AddVariableToJSON+addParam: 0.282828
AddVariableToJSON+addVar: 0.282828
exception+getListLen: 0.272727
getListLen+try: 0.272727
ormAccessUpdate+startLoop: 0.272727
startLoop+variableFromJSON: 0.272727
RequestGet+exception: 0.272727
RequestGet+try: 0.272727
AddVariableToJSON+itemFromList: 0.272727
ormAccessSelect+ormAccessUpdate: 0.262626
AddVariableToJSON+exception: 0.262626
AddVariableToJSON+try: 0.262626
exception+variableFromJSON: 0.262626
try+variableFromJSON: 0.262626
function+ormDirect: 0.252525
if_mode1+ormDirect: 0.252525
import+ormDirect: 0.252525
ormAccessSelect+ormDirect: 0.252525
RequestPost+exception: 0.252525
RequestPost+try: 0.252525
addParam+ormDirect: 0.242424
addVar+ormDirect: 0.242424
AddVariableToJSON+startLoop: 0.242424
RequestGet+else: 0.242424
exception+ormDirect: 0.232323
function+ormAccessInsert: 0.232323
if_mode1+ormAccessInsert: 0.232323
import+ormAccessInsert: 0.232323
itemFromList+ormDirect: 0.232323
ormDirect+return: 0.232323
ormDirect+try: 0.232323
AddVariableToJSON+variableFromJSON: 0.232323
RequestPost+else: 0.232323
else+variableFromJSON: 0.232323
addParam+ormAccessInsert: 0.222222
addVar+ormAccessInsert: 0.222222
exception+ormAccessInsert: 0.222222
ormAccessInsert+try: 0.222222
RequestGet+startLoop: 0.222222
AddVariableToJSON+else: 0.222222
ormAccessInsert+return: 0.212121
itemFromList+ormAccessInsert: 0.20202
ormAccessInsert+startLoop: 0.20202
RequestPost+startLoop: 0.20202
addVar+go: 0.20202
function+go: 0.20202
go+import: 0.20202
addParam+getDateTime: 0.191919
addVar+getDateTime: 0.191919
function+getDateTime: 0.191919
getDateTime+if_mode1: 0.191919
getDateTime+import: 0.191919
ormAccessInsert+ormAccessSelect: 0.191919
ormDirect+startLoop: 0.191919
_status+addVar: 0.191919
_status+function: 0.191919
_status+import: 0.191919
addParam+go: 0.191919
go+if_mode1: 0.191919
go+itemFromList: 0.191919
else+ormDirect: 0.181818
getDateTime+itemFromList: 0.181818
getDateTime+return: 0.181818
getTimeStamp+if_mode1: 0.181818
getTimeStamp+import: 0.181818
_status+addParam: 0.181818
_status+if_mode1: 0.181818
_status+itemFromList: 0.181818
_status+return: 0.181818
exception+go: 0.181818
go+return: 0.181818
go+startLoop: 0.181818
go+try: 0.181818
else+ormAccessInsert: 0.171717
exception+getDateTime: 0.171717
getDateTime+try: 0.171717
ormAccessInsert+ormAccessUpdate: 0.171717
ormAccessUpdate+ormDirect: 0.171717
function+getTimeStamp: 0.171717
getTimeStamp+return: 0.171717
addVar+getTimeStamp: 0.171717
getTimeStamp+itemFromList: 0.171717
_status+exception: 0.161616
_status+try: 0.161616
addParam+getTimeStamp: 0.161616
else+getDateTime: 0.151515
getDateTime+startLoop: 0.151515
getListLen+ormAccessSelect: 0.151515
RequestPost+_status: 0.151515
_status+else: 0.151515
_status+startLoop: 0.151515
addParam+replace: 0.151515
addVar+replace: 0.151515
function+replace: 0.151515
if_mode1+replace: 0.151515
import+replace: 0.151515
getListLen+ormAccessUpdate: 0.141414
exception+getTimeStamp: 0.141414
getTimeStamp+startLoop: 0.141414
getTimeStamp+try: 0.141414
replace+return: 0.141414
getListLen+variableFromJSON: 0.141414
RequestPost+getListLen: 0.141414
ormAccessSelect+variableFromJSON: 0.131313
RequestGet+_status: 0.131313
RequestGet+ormAccessSelect: 0.131313
RequestPost+ormAccessUpdate: 0.131313
else+replace: 0.131313
itemFromList+replace: 0.131313
replace+startLoop: 0.131313
addParam+encodeMD5: 0.131313
addVar+encodeMD5: 0.131313
else+getTimeStamp: 0.131313
encodeMD5+function: 0.131313
encodeMD5+if_mode1: 0.131313
encodeMD5+import: 0.131313
encodeMD5+itemFromList: 0.131313
encodeMD5+return: 0.131313
RequestGet+getListLen: 0.131313
addParam+randomString: 0.131313
addVar+randomString: 0.131313
function+randomString: 0.131313
if_mode1+randomString: 0.131313
import+randomString: 0.131313
randomString+return: 0.131313
else+go: 0.131313
getDateTime+ormAccessSelect: 0.121212
ormAccessInsert+ormDirect: 0.121212
RequestGet+ormAccessUpdate: 0.121212
RequestPost+ormAccessSelect: 0.121212
exception+replace: 0.121212
replace+try: 0.121212
AddVariableToJSON+getListLen: 0.121212
encodeSHA256+function: 0.121212
encodeSHA256+if_mode1: 0.121212
encodeSHA256+import: 0.121212
encodeSHA256+return: 0.121212
AddVariableToJSON+RequestGet: 0.121212
itemFromList+randomString: 0.121212
addParam+gather: 0.121212
addVar+gather: 0.121212
exception+gather: 0.121212
function+gather: 0.121212
gather+go: 0.121212
gather+import: 0.121212
gather+itemFromList: 0.121212
gather+try: 0.121212
AddVariableToJSON+ormAccessSelect: 0.111111
RequestGet+variableFromJSON: 0.111111
ormAccessUpdate+variableFromJSON: 0.111111
else+encodeMD5: 0.111111
getListLen+getTimeStamp: 0.111111
addParam+encodeSHA256: 0.111111
addVar+encodeSHA256: 0.111111
encodeSHA256+itemFromList: 0.111111
AddVariableToJSON+RequestPost: 0.111111
gather+if_mode1: 0.111111
getDateTime+ormAccessUpdate: 0.10101
getDateTime+ormDirect: 0.10101
getListLen+ormAccessInsert: 0.10101
RequestPost+variableFromJSON: 0.10101
encodeMD5+exception: 0.10101
encodeMD5+try: 0.10101
AddVariableToJSON+ormAccessUpdate: 0.10101
_status+getListLen: 0.10101
exception+randomString: 0.10101
randomString+startLoop: 0.10101
randomString+try: 0.10101
else+randomString: 0.10101
gather+return: 0.10101
gather+startLoop: 0.10101
getDateTime+getListLen: 0.090909
AddVariableToJSON+getTimeStamp: 0.090909
getTimeStamp+variableFromJSON: 0.090909
_status+variableFromJSON: 0.090909
ormAccessUpdate+replace: 0.090909
replace+variableFromJSON: 0.090909
encodeMD5+startLoop: 0.090909
RequestGet+ormAccessInsert: 0.090909
RequestGet+ormDirect: 0.090909
RequestPost+ormAccessInsert: 0.090909
getListLen+replace: 0.090909
getListLen+go: 0.090909
getDateTime+ormAccessInsert: 0.080808
RequestPost+ormDirect: 0.080808
encodeSHA256+exception: 0.080808
encodeSHA256+try: 0.080808
AddVariableToJSON+_status: 0.080808
getListLen+randomString: 0.080808
getListLen+ormDirect: 0.070707
AddVariableToJSON+encodeMD5: 0.070707
encodeMD5+getListLen: 0.070707
RequestPost+getDateTime: 0.070707
encodeSHA256+startLoop: 0.070707
ormDirect+variableFromJSON: 0.070707
AddVariableToJSON+replace: 0.070707
encodeMD5+ormAccessUpdate: 0.070707
getTimeStamp+randomString: 0.070707
ormAccessUpdate+randomString: 0.070707
AddVariableToJSON+randomString: 0.070707
AddVariableToJSON+ormAccessInsert: 0.060606
RequestGet+replace: 0.060606
RequestPost+replace: 0.060606
_status+ormAccessUpdate: 0.060606
_status+replace: 0.060606
ormAccessSelect+replace: 0.060606
AddVariableToJSON+getDateTime: 0.060606
encodeMD5+getDateTime: 0.060606
getDateTime+variableFromJSON: 0.060606
else+encodeSHA256: 0.060606
AddVariableToJSON+ormDirect: 0.060606
RequestPost+encodeMD5: 0.060606
encodeSHA256+randomString: 0.060606
getDateTime+randomString: 0.060606
encodeSHA256+getTimeStamp: 0.060606
AddVariableToJSON+encodeSHA256: 0.060606
else+gather: 0.060606
getTimeStamp+ormAccessSelect: 0.050505
RequestGet+getDateTime: 0.050505
encodeSHA256+getDateTime: 0.050505
RequestGet+encodeMD5: 0.050505
RequestGet+getTimeStamp: 0.050505
RequestPost+getTimeStamp: 0.050505
_status+getTimeStamp: 0.050505
encodeMD5+replace: 0.050505
getTimeStamp+ormAccessUpdate: 0.050505
getTimeStamp+replace: 0.050505
_status+randomString: 0.050505
encodeSHA256+variableFromJSON: 0.050505
randomString+variableFromJSON: 0.050505
ormAccessSelect+randomString: 0.050505
getTimeStamp+go: 0.050505
go+ormAccessSelect: 0.050505
ormAccessInsert+variableFromJSON: 0.040404
_status+ormAccessSelect: 0.040404
encodeMD5+getTimeStamp: 0.040404
encodeMD5+ormAccessSelect: 0.040404
encodeMD5+variableFromJSON: 0.040404
getDateTime+replace: 0.040404
ormAccessInsert+replace: 0.040404
RequestPost+encodeSHA256: 0.040404
RequestGet+randomString: 0.040404
RequestPost+randomString: 0.040404
_status+getDateTime: 0.040404
AddVariableToJSON+gather: 0.040404
AddVariableToJSON+go: 0.040404
RequestGet+go: 0.040404
_status+go: 0.040404
gather+getListLen: 0.040404
go+randomString: 0.040404
go+variableFromJSON: 0.040404
ormAccessInsert+randomString: 0.040404
encodeMD5+randomString: 0.040404
gather+getTimeStamp: 0.040404
getDateTime+getTimeStamp: 0.030303
ormDirect+replace: 0.030303
encodeSHA256+ormAccessSelect: 0.030303
encodeSHA256+ormAccessUpdate: 0.030303
_status+ormAccessInsert: 0.030303
_status+encodeMD5: 0.030303
RequestGet+gather: 0.030303
RequestPost+go: 0.030303
_status+encodeSHA256: 0.030303
_status+gather: 0.030303
encodeSHA256+getListLen: 0.030303
encodeSHA256+replace: 0.030303
gather+randomString: 0.030303
gather+variableFromJSON: 0.030303
getDateTime+go: 0.030303
go+ormAccessInsert: 0.030303
randomString+replace: 0.030303
encodeMD5+ormAccessInsert: 0.030303
getTimeStamp+ormAccessInsert: 0.020202
RequestGet+encodeSHA256: 0.020202
encodeSHA256+ormAccessInsert: 0.020202
encodeSHA256+ormDirect: 0.020202
_status+ormDirect: 0.020202
gather+getDateTime: 0.020202
gather+ormAccessInsert: 0.020202
encodeMD5+encodeSHA256: 0.020202
gather+ormAccessSelect: 0.020202
go+ormDirect: 0.020202
go+ormAccessUpdate: 0.020202
addParam+ormCheckTable: 0.010101
addVar+ormCheckTable: 0.010101
else+ormCheckTable: 0.010101
exception+ormCheckTable: 0.010101
function+ormCheckTable: 0.010101
getDateTime+ormCheckTable: 0.010101
getListLen+ormCheckTable: 0.010101
if_mode1+ormCheckTable: 0.010101
import+ormCheckTable: 0.010101
itemFromList+ormCheckTable: 0.010101
ormAccessInsert+ormCheckTable: 0.010101
ormAccessSelect+ormCheckTable: 0.010101
ormAccessUpdate+ormCheckTable: 0.010101
ormCheckTable+ormDirect: 0.010101
ormCheckTable+return: 0.010101
ormCheckTable+startLoop: 0.010101
ormCheckTable+try: 0.010101
RequestPost+gather: 0.010101
encodeSHA256+gather: 0.010101
encodeSHA256+go: 0.010101
gather+replace: 0.010101
go+replace: 0.010101
gather+ormDirect: 0.010101
encodeMD5+go: 0.010101
encodeMD5+ormDirect: 0.010101
getTimeStamp+ormDirect: 0.010101
ormDirect+randomString: 0.010101
AddVariableToJSON+getQueryParamList: 0.010101
_status+getQueryParamList: 0.010101
addParam+getQueryParamList: 0.010101
addVar+getQueryParamList: 0.010101
else+getQueryParamList: 0.010101
encodeSHA256+getQueryParamList: 0.010101
exception+getQueryParamList: 0.010101
function+getQueryParamList: 0.010101
getListLen+getQueryParamList: 0.010101
getQueryParamList+getTimeStamp: 0.010101
getQueryParamList+if_mode1: 0.010101
getQueryParamList+import: 0.010101
getQueryParamList+itemFromList: 0.010101
getQueryParamList+ormAccessUpdate: 0.010101
getQueryParamList+randomString: 0.010101
getQueryParamList+replace: 0.010101
getQueryParamList+return: 0.010101
getQueryParamList+startLoop: 0.010101
getQueryParamList+try: 0.010101
getQueryParamList+variableFromJSON: 0.010101
trio_weights:
addVar+function+import: 1.0
addParam+addVar+function: 0.979381
addParam+addVar+import: 0.979381
addParam+function+import: 0.979381
function+if_mode1+import: 0.969072
addVar+if_mode1+import: 0.958763
function+import+return: 0.958763
addVar+function+if_mode1: 0.948454
addVar+function+return: 0.938144
addVar+import+return: 0.938144
addParam+addVar+if_mode1: 0.927835
addParam+function+if_mode1: 0.927835
addParam+if_mode1+import: 0.927835
function+if_mode1+return: 0.927835
if_mode1+import+return: 0.927835
addParam+addVar+return: 0.917526
addParam+function+return: 0.917526
addParam+import+return: 0.917526
addVar+import+itemFromList: 0.917526
addParam+addVar+itemFromList: 0.907216
addParam+function+itemFromList: 0.907216
addParam+import+itemFromList: 0.907216
addVar+function+itemFromList: 0.907216
addVar+if_mode1+return: 0.907216
function+import+itemFromList: 0.907216
addParam+if_mode1+return: 0.886598
addVar+if_mode1+itemFromList: 0.876289
if_mode1+import+itemFromList: 0.876289
addParam+if_mode1+itemFromList: 0.865979
function+if_mode1+itemFromList: 0.865979
addParam+itemFromList+return: 0.85567
addVar+itemFromList+return: 0.85567
function+itemFromList+return: 0.85567
import+itemFromList+return: 0.85567
if_mode1+itemFromList+return: 0.835052
exception+function+import: 0.783505
exception+function+try: 0.783505
exception+import+try: 0.783505
function+import+try: 0.783505
addParam+addVar+exception: 0.762887
addParam+addVar+try: 0.762887
addParam+exception+function: 0.762887
addParam+exception+import: 0.762887
addParam+exception+try: 0.762887
addParam+function+try: 0.762887
addParam+import+try: 0.762887
addVar+exception+function: 0.762887
addVar+exception+import: 0.762887
addVar+exception+try: 0.762887
addVar+function+try: 0.762887
addVar+import+try: 0.762887
exception+function+if_mode1: 0.752577
exception+if_mode1+import: 0.752577
exception+if_mode1+try: 0.752577
function+if_mode1+try: 0.752577
if_mode1+import+try: 0.752577
addParam+exception+if_mode1: 0.731959
addParam+if_mode1+try: 0.731959
addVar+exception+if_mode1: 0.731959
addVar+if_mode1+try: 0.731959
exception+function+return: 0.721649
exception+import+return: 0.721649
exception+return+try: 0.721649
function+return+try: 0.721649
import+return+try: 0.721649
addParam+exception+itemFromList: 0.71134
addParam+itemFromList+try: 0.71134
addVar+exception+itemFromList: 0.71134
addVar+itemFromList+try: 0.71134
exception+function+itemFromList: 0.71134
exception+if_mode1+return: 0.71134
exception+import+itemFromList: 0.71134
exception+itemFromList+try: 0.71134
function+itemFromList+try: 0.71134
if_mode1+import+startLoop: 0.71134
if_mode1+return+try: 0.71134
import+itemFromList+try: 0.71134
addParam+exception+return: 0.701031
addParam+return+try: 0.701031
addVar+exception+return: 0.701031
addVar+return+try: 0.701031
function+if_mode1+startLoop: 0.701031
function+import+startLoop: 0.701031
addVar+else+if_mode1: 0.690722
addVar+else+import: 0.690722
addVar+if_mode1+startLoop: 0.690722
addVar+import+startLoop: 0.690722
else+if_mode1+import: 0.690722
addParam+addVar+else: 0.680412
addParam+else+function: 0.680412
addParam+else+if_mode1: 0.680412
addParam+else+import: 0.680412
addVar+else+function: 0.680412
addVar+function+startLoop: 0.680412
else+function+if_mode1: 0.680412
else+function+import: 0.680412
exception+if_mode1+itemFromList: 0.680412
if_mode1+itemFromList+try: 0.680412
addParam+addVar+startLoop: 0.670103
addParam+function+startLoop: 0.670103
addParam+if_mode1+startLoop: 0.670103
addParam+import+startLoop: 0.670103
function+return+startLoop: 0.670103
if_mode1+return+startLoop: 0.670103
import+return+startLoop: 0.670103
exception+itemFromList+return: 0.659794
itemFromList+return+try: 0.659794
addParam+else+return: 0.649485
addVar+else+itemFromList: 0.649485
addVar+else+return: 0.649485
addVar+return+startLoop: 0.649485
else+function+return: 0.649485
else+if_mode1+itemFromList: 0.649485
else+if_mode1+return: 0.649485
else+import+itemFromList: 0.649485
else+import+return: 0.649485
addParam+else+itemFromList: 0.639175
addParam+return+startLoop: 0.639175
addVar+itemFromList+startLoop: 0.639175
else+function+itemFromList: 0.639175
if_mode1+itemFromList+startLoop: 0.639175
import+itemFromList+startLoop: 0.639175
addParam+itemFromList+startLoop: 0.628866
function+itemFromList+startLoop: 0.628866
else+itemFromList+return: 0.618557
itemFromList+return+startLoop: 0.608247
exception+function+startLoop: 0.57732
exception+if_mode1+startLoop: 0.57732
exception+import+startLoop: 0.57732
exception+startLoop+try: 0.57732
function+startLoop+try: 0.57732
if_mode1+startLoop+try: 0.57732
import+startLoop+try: 0.57732
addParam+else+exception: 0.56701
addParam+else+try: 0.56701
addVar+else+exception: 0.56701
addVar+else+try: 0.56701
else+exception+function: 0.56701
else+exception+if_mode1: 0.56701
else+exception+import: 0.56701
else+exception+try: 0.56701
else+function+try: 0.56701
else+if_mode1+try: 0.56701
else+import+try: 0.56701
addParam+exception+startLoop: 0.556701
addParam+startLoop+try: 0.556701
addVar+exception+startLoop: 0.556701
addVar+startLoop+try: 0.556701
exception+return+startLoop: 0.546392
return+startLoop+try: 0.546392
else+exception+return: 0.536082
else+return+try: 0.536082
else+exception+itemFromList: 0.525773
else+itemFromList+try: 0.525773
exception+itemFromList+startLoop: 0.525773
itemFromList+startLoop+try: 0.525773
addVar+else+startLoop: 0.494845
else+if_mode1+startLoop: 0.494845
else+import+startLoop: 0.494845
addParam+else+startLoop: 0.484536
else+function+startLoop: 0.484536
else+itemFromList+startLoop: 0.474227
else+return+startLoop: 0.463918
function+import+ormAccessSelect: 0.443299
function+if_mode1+ormAccessSelect: 0.43299
if_mode1+import+ormAccessSelect: 0.43299
addParam+addVar+ormAccessSelect: 0.42268
addParam+function+ormAccessSelect: 0.42268
addParam+import+ormAccessSelect: 0.42268
addVar+function+ormAccessSelect: 0.42268
addVar+import+ormAccessSelect: 0.42268
else+exception+startLoop: 0.42268
else+startLoop+try: 0.42268
addParam+if_mode1+ormAccessSelect: 0.412371
addVar+if_mode1+ormAccessSelect: 0.412371
function+ormAccessSelect+return: 0.412371
import+ormAccessSelect+return: 0.412371
addParam+itemFromList+ormAccessSelect: 0.402062
addVar+itemFromList+ormAccessSelect: 0.402062
function+itemFromList+ormAccessSelect: 0.402062
if_mode1+ormAccessSelect+return: 0.402062
import+itemFromList+ormAccessSelect: 0.402062
addParam+ormAccessSelect+return: 0.391753
addVar+ormAccessSelect+return: 0.391753
if_mode1+itemFromList+ormAccessSelect: 0.391753
exception+function+ormAccessSelect: 0.381443
exception+import+ormAccessSelect: 0.381443
exception+ormAccessSelect+try: 0.381443
function+ormAccessSelect+try: 0.381443
import+ormAccessSelect+try: 0.381443
itemFromList+ormAccessSelect+return: 0.381443
RequestGet+addVar+import: 0.381443
RequestPost+addVar+import: 0.381443
addVar+getListLen+import: 0.371134
exception+if_mode1+ormAccessSelect: 0.371134
if_mode1+ormAccessSelect+try: 0.371134
RequestGet+addParam+addVar: 0.371134
RequestGet+addParam+function: 0.371134
RequestGet+addParam+import: 0.371134
RequestGet+addVar+function: 0.371134
RequestGet+function+import: 0.371134
RequestPost+addVar+function: 0.371134
RequestPost+function+import: 0.371134
addParam+addVar+getListLen: 0.360825
addParam+exception+ormAccessSelect: 0.360825
addParam+function+getListLen: 0.360825
addParam+getListLen+import: 0.360825
addParam+ormAccessSelect+try: 0.360825
addVar+exception+ormAccessSelect: 0.360825
addVar+function+getListLen: 0.360825
addVar+getListLen+if_mode1: 0.360825
addVar+ormAccessSelect+try: 0.360825
function+getListLen+import: 0.360825
getListLen+if_mode1+import: 0.360825
RequestGet+addParam+return: 0.360825
RequestGet+addVar+itemFromList: 0.360825
RequestGet+addVar+return: 0.360825
RequestGet+function+return: 0.360825
RequestGet+import+itemFromList: 0.360825
RequestGet+import+return: 0.360825
RequestPost+addParam+addVar: 0.360825
RequestPost+addParam+function: 0.360825
RequestPost+addParam+import: 0.360825
RequestPost+addVar+return: 0.360825
RequestPost+function+return: 0.360825
RequestPost+import+return: 0.360825
addParam+addVar+ormAccessUpdate: 0.350515
addParam+else+ormAccessSelect: 0.350515
addParam+function+ormAccessUpdate: 0.350515
addParam+getListLen+if_mode1: 0.350515
addParam+if_mode1+ormAccessUpdate: 0.350515
addParam+import+ormAccessUpdate: 0.350515
addVar+else+ormAccessSelect: 0.350515
addVar+function+ormAccessUpdate: 0.350515
addVar+getListLen+itemFromList: 0.350515
addVar+if_mode1+ormAccessUpdate: 0.350515
addVar+import+ormAccessUpdate: 0.350515
else+function+ormAccessSelect: 0.350515
else+if_mode1+ormAccessSelect: 0.350515
else+import+ormAccessSelect: 0.350515
exception+ormAccessSelect+return: 0.350515
function+getListLen+if_mode1: 0.350515
function+if_mode1+ormAccessUpdate: 0.350515
function+import+ormAccessUpdate: 0.350515
getListLen+import+itemFromList: 0.350515
if_mode1+import+ormAccessUpdate: 0.350515
ormAccessSelect+return+try: 0.350515
RequestGet+addParam+itemFromList: 0.350515
RequestGet+addVar+if_mode1: 0.350515
RequestGet+function+itemFromList: 0.350515
RequestGet+if_mode1+import: 0.350515
RequestPost+addParam+return: 0.350515
RequestPost+addVar+itemFromList: 0.350515
RequestPost+import+itemFromList: 0.350515
addParam+getListLen+itemFromList: 0.340206
addParam+getListLen+return: 0.340206
addVar+getListLen+return: 0.340206
exception+itemFromList+ormAccessSelect: 0.340206
function+getListLen+itemFromList: 0.340206
function+getListLen+return: 0.340206
function+ormAccessSelect+startLoop: 0.340206
getListLen+if_mode1+itemFromList: 0.340206
getListLen+import+return: 0.340206
if_mode1+ormAccessSelect+startLoop: 0.340206
import+ormAccessSelect+startLoop: 0.340206
itemFromList+ormAccessSelect+try: 0.340206
RequestGet+addParam+if_mode1: 0.340206
RequestGet+function+if_mode1: 0.340206
RequestGet+if_mode1+itemFromList: 0.340206
RequestGet+if_mode1+return: 0.340206
RequestGet+itemFromList+return: 0.340206
RequestPost+addParam+itemFromList: 0.340206
RequestPost+addVar+if_mode1: 0.340206
RequestPost+function+itemFromList: 0.340206
RequestPost+if_mode1+import: 0.340206
addParam+itemFromList+ormAccessUpdate: 0.329897
addVar+getListLen+startLoop: 0.329897
addVar+itemFromList+ormAccessUpdate: 0.329897
else+itemFromList+ormAccessSelect: 0.329897
function+itemFromList+ormAccessUpdate: 0.329897
getListLen+if_mode1+return: 0.329897
getListLen+if_mode1+startLoop: 0.329897
getListLen+import+startLoop: 0.329897
if_mode1+itemFromList+ormAccessUpdate: 0.329897
import+itemFromList+ormAccessUpdate: 0.329897
RequestGet+RequestPost+addVar: 0.329897
RequestGet+RequestPost+import: 0.329897
RequestPost+function+if_mode1: 0.329897
RequestPost+if_mode1+return: 0.329897
RequestPost+itemFromList+return: 0.329897
addParam+getListLen+startLoop: 0.319588
addParam+ormAccessSelect+startLoop: 0.319588
addParam+ormAccessUpdate+return: 0.319588
addVar+ormAccessSelect+startLoop: 0.319588
addVar+ormAccessUpdate+return: 0.319588
else+ormAccessSelect+return: 0.319588
function+getListLen+startLoop: 0.319588
function+ormAccessUpdate+return: 0.319588
getListLen+itemFromList+return: 0.319588
if_mode1+ormAccessUpdate+return: 0.319588
import+ormAccessUpdate+return: 0.319588
ormAccessSelect+return+startLoop: 0.319588
function+import+variableFromJSON: 0.319588
RequestGet+RequestPost+addParam: 0.319588
RequestGet+RequestPost+function: 0.319588
RequestPost+addParam+if_mode1: 0.319588
RequestPost+if_mode1+itemFromList: 0.319588
getListLen+itemFromList+startLoop: 0.309278
getListLen+return+startLoop: 0.309278
itemFromList+ormAccessSelect+startLoop: 0.309278
itemFromList+ormAccessUpdate+return: 0.309278
AddVariableToJSON+function+import: 0.309278
function+return+variableFromJSON: 0.309278
import+return+variableFromJSON: 0.309278
RequestGet+RequestPost+itemFromList: 0.309278
RequestGet+RequestPost+return: 0.309278
addParam+exception+ormAccessUpdate: 0.298969
addParam+ormAccessUpdate+try: 0.298969
addVar+exception+ormAccessUpdate: 0.298969
addVar+ormAccessUpdate+try: 0.298969
exception+function+ormAccessUpdate: 0.298969
exception+if_mode1+ormAccessUpdate: 0.298969
exception+import+ormAccessUpdate: 0.298969
exception+ormAccessSelect+startLoop: 0.298969
exception+ormAccessUpdate+try: 0.298969
function+ormAccessUpdate+try: 0.298969
if_mode1+ormAccessUpdate+try: 0.298969
import+ormAccessUpdate+try: 0.298969
ormAccessSelect+startLoop+try: 0.298969
AddVariableToJSON+function+return: 0.298969
AddVariableToJSON+import+return: 0.298969
function+if_mode1+variableFromJSON: 0.298969
if_mode1+import+variableFromJSON: 0.298969
if_mode1+return+variableFromJSON: 0.298969
RequestGet+RequestPost+if_mode1: 0.298969
addParam+addVar+variableFromJSON: 0.298969
addParam+function+variableFromJSON: 0.298969
addParam+import+variableFromJSON: 0.298969
addVar+function+variableFromJSON: 0.298969
addVar+import+variableFromJSON: 0.298969
addParam+else+ormAccessUpdate: 0.28866
addVar+else+getListLen: 0.28866
addVar+else+ormAccessUpdate: 0.28866
else+exception+ormAccessSelect: 0.28866
else+function+ormAccessUpdate: 0.28866
else+getListLen+if_mode1: 0.28866
else+getListLen+import: 0.28866
else+if_mode1+ormAccessUpdate: 0.28866
else+import+ormAccessUpdate: 0.28866
else+ormAccessSelect+try: 0.28866
exception+itemFromList+ormAccessUpdate: 0.28866
itemFromList+ormAccessUpdate+try: 0.28866
AddVariableToJSON+function+if_mode1: 0.28866
AddVariableToJSON+if_mode1+import: 0.28866
AddVariableToJSON+if_mode1+return: 0.28866
addParam+itemFromList+variableFromJSON: 0.28866
addParam+return+variableFromJSON: 0.28866
addVar+itemFromList+variableFromJSON: 0.28866
addVar+return+variableFromJSON: 0.28866
function+itemFromList+variableFromJSON: 0.28866
import+itemFromList+variableFromJSON: 0.28866
AddVariableToJSON+addParam+addVar: 0.28866
AddVariableToJSON+addParam+function: 0.28866
AddVariableToJSON+addParam+import: 0.28866
AddVariableToJSON+addVar+function: 0.28866
AddVariableToJSON+addVar+import: 0.28866
addParam+else+getListLen: 0.278351
addParam+exception+getListLen: 0.278351
addParam+getListLen+try: 0.278351
addParam+ormAccessUpdate+startLoop: 0.278351
addVar+exception+getListLen: 0.278351
addVar+getListLen+try: 0.278351
addVar+ormAccessUpdate+startLoop: 0.278351
else+function+getListLen: 0.278351
else+getListLen+itemFromList: 0.278351
else+itemFromList+ormAccessUpdate: 0.278351
else+ormAccessSelect+startLoop: 0.278351
exception+function+getListLen: 0.278351
exception+getListLen+if_mode1: 0.278351
exception+getListLen+import: 0.278351
exception+getListLen+try: 0.278351
function+getListLen+try: 0.278351
function+ormAccessUpdate+startLoop: 0.278351
getListLen+if_mode1+try: 0.278351
getListLen+import+try: 0.278351
if_mode1+ormAccessUpdate+startLoop: 0.278351
import+ormAccessUpdate+startLoop: 0.278351
function+startLoop+variableFromJSON: 0.278351
if_mode1+startLoop+variableFromJSON: 0.278351
import+startLoop+variableFromJSON: 0.278351
return+startLoop+variableFromJSON: 0.278351
RequestGet+addParam+exception: 0.278351
RequestGet+addParam+try: 0.278351
RequestGet+addVar+exception: 0.278351
RequestGet+addVar+try: 0.278351
RequestGet+exception+function: 0.278351
RequestGet+exception+import: 0.278351
RequestGet+exception+try: 0.278351
RequestGet+function+try: 0.278351
RequestGet+import+try: 0.278351
addParam+if_mode1+variableFromJSON: 0.278351
addVar+if_mode1+variableFromJSON: 0.278351
itemFromList+return+variableFromJSON: 0.278351
AddVariableToJSON+addParam+itemFromList: 0.278351
AddVariableToJSON+addParam+return: 0.278351
AddVariableToJSON+addVar+itemFromList: 0.278351
AddVariableToJSON+addVar+return: 0.278351
AddVariableToJSON+function+itemFromList: 0.278351
AddVariableToJSON+import+itemFromList: 0.278351
addParam+ormAccessSelect+ormAccessUpdate: 0.268041
addVar+ormAccessSelect+ormAccessUpdate: 0.268041
exception+getListLen+startLoop: 0.268041
exception+ormAccessUpdate+return: 0.268041
function+ormAccessSelect+ormAccessUpdate: 0.268041
getListLen+startLoop+try: 0.268041
if_mode1+ormAccessSelect+ormAccessUpdate: 0.268041
import+ormAccessSelect+ormAccessUpdate: 0.268041
ormAccessUpdate+return+try: 0.268041
AddVariableToJSON+exception+function: 0.268041
AddVariableToJSON+exception+import: 0.268041
AddVariableToJSON+exception+try: 0.268041
AddVariableToJSON+function+try: 0.268041
AddVariableToJSON+import+try: 0.268041
exception+function+variableFromJSON: 0.268041
exception+import+variableFromJSON: 0.268041
exception+try+variableFromJSON: 0.268041
function+try+variableFromJSON: 0.268041
import+try+variableFromJSON: 0.268041
RequestGet+exception+itemFromList: 0.268041
RequestGet+exception+return: 0.268041
RequestGet+itemFromList+try: 0.268041
RequestGet+return+try: 0.268041
if_mode1+itemFromList+variableFromJSON: 0.268041
AddVariableToJSON+addParam+if_mode1: 0.268041
AddVariableToJSON+addVar+if_mode1: 0.268041
AddVariableToJSON+itemFromList+return: 0.268041
else+getListLen+return: 0.257732
else+getListLen+startLoop: 0.257732
else+ormAccessUpdate+return: 0.257732
exception+getListLen+itemFromList: 0.257732
exception+getListLen+return: 0.257732
function+if_mode1+ormDirect: 0.257732
function+import+ormDirect: 0.257732
function+ormAccessSelect+ormDirect: 0.257732
getListLen+itemFromList+try: 0.257732
getListLen+return+try: 0.257732
if_mode1+import+ormDirect: 0.257732
if_mode1+ormAccessSelect+ormDirect: 0.257732
import+ormAccessSelect+ormDirect: 0.257732
itemFromList+ormAccessSelect+ormAccessUpdate: 0.257732
itemFromList+ormAccessUpdate+startLoop: 0.257732
ormAccessUpdate+return+startLoop: 0.257732
AddVariableToJSON+exception+if_mode1: 0.257732
AddVariableToJSON+exception+return: 0.257732
AddVariableToJSON+if_mode1+try: 0.257732
AddVariableToJSON+return+try: 0.257732
exception+if_mode1+variableFromJSON: 0.257732
exception+return+variableFromJSON: 0.257732
if_mode1+try+variableFromJSON: 0.257732
return+try+variableFromJSON: 0.257732
RequestGet+exception+if_mode1: 0.257732
RequestGet+if_mode1+try: 0.257732
RequestPost+addParam+exception: 0.257732
RequestPost+addParam+try: 0.257732
RequestPost+addVar+exception: 0.257732
RequestPost+addVar+try: 0.257732
RequestPost+exception+function: 0.257732
RequestPost+exception+import: 0.257732
RequestPost+exception+try: 0.257732
RequestPost+function+try: 0.257732
RequestPost+import+try: 0.257732
addParam+startLoop+variableFromJSON: 0.257732
addVar+startLoop+variableFromJSON: 0.257732
AddVariableToJSON+if_mode1+itemFromList: 0.257732
addParam+addVar+ormDirect: 0.247423
addParam+function+ormDirect: 0.247423
addParam+if_mode1+ormDirect: 0.247423
addParam+import+ormDirect: 0.247423
addParam+ormAccessSelect+ormDirect: 0.247423
addVar+function+ormDirect: 0.247423
addVar+if_mode1+ormDirect: 0.247423
addVar+import+ormDirect: 0.247423
addVar+ormAccessSelect+ormDirect: 0.247423
else+exception+ormAccessUpdate: 0.247423
else+ormAccessUpdate+try: 0.247423
AddVariableToJSON+function+startLoop: 0.247423
AddVariableToJSON+if_mode1+startLoop: 0.247423
AddVariableToJSON+import+startLoop: 0.247423
AddVariableToJSON+return+startLoop: 0.247423
exception+startLoop+variableFromJSON: 0.247423
startLoop+try+variableFromJSON: 0.247423
RequestGet+addVar+else: 0.247423
RequestGet+else+if_mode1: 0.247423
RequestGet+else+import: 0.247423
RequestPost+exception+itemFromList: 0.247423
RequestPost+exception+return: 0.247423
RequestPost+itemFromList+try: 0.247423
RequestPost+return+try: 0.247423
addParam+exception+variableFromJSON: 0.247423
addParam+try+variableFromJSON: 0.247423
addVar+exception+variableFromJSON: 0.247423
addVar+try+variableFromJSON: 0.247423
itemFromList+startLoop+variableFromJSON: 0.247423
AddVariableToJSON+addParam+exception: 0.247423
AddVariableToJSON+addParam+try: 0.247423
AddVariableToJSON+addVar+exception: 0.247423
AddVariableToJSON+addVar+try: 0.247423
addParam+itemFromList+ormDirect: 0.237113
addVar+itemFromList+ormDirect: 0.237113
else+exception+getListLen: 0.237113
else+getListLen+try: 0.237113
else+ormAccessUpdate+startLoop: 0.237113
exception+function+ormDirect: 0.237113
exception+if_mode1+ormDirect: 0.237113
exception+import+ormDirect: 0.237113
exception+ormAccessSelect+ormAccessUpdate: 0.237113
exception+ormAccessSelect+ormDirect: 0.237113
exception+ormAccessUpdate+startLoop: 0.237113
exception+ormDirect+try: 0.237113
function+if_mode1+ormAccessInsert: 0.237113
function+import+ormAccessInsert: 0.237113
function+itemFromList+ormDirect: 0.237113
function+ormDirect+return: 0.237113
function+ormDirect+try: 0.237113
if_mode1+import+ormAccessInsert: 0.237113
if_mode1+itemFromList+ormDirect: 0.237113
if_mode1+ormDirect+return: 0.237113
if_mode1+ormDirect+try: 0.237113
import+itemFromList+ormDirect: 0.237113
import+ormDirect+return: 0.237113
import+ormDirect+try: 0.237113
itemFromList+ormAccessSelect+ormDirect: 0.237113
ormAccessSelect+ormAccessUpdate+return: 0.237113
ormAccessSelect+ormAccessUpdate+try: 0.237113
ormAccessSelect+ormDirect+return: 0.237113
ormAccessSelect+ormDirect+try: 0.237113
ormAccessUpdate+startLoop+try: 0.237113
AddVariableToJSON+function+variableFromJSON: 0.237113
AddVariableToJSON+import+variableFromJSON: 0.237113
RequestGet+RequestPost+exception: 0.237113
RequestGet+RequestPost+try: 0.237113
RequestGet+addParam+else: 0.237113
RequestGet+else+function: 0.237113
RequestGet+else+itemFromList: 0.237113
RequestGet+else+return: 0.237113
RequestPost+addVar+else: 0.237113
RequestPost+else+if_mode1: 0.237113
RequestPost+else+import: 0.237113
RequestPost+exception+if_mode1: 0.237113
RequestPost+if_mode1+try: 0.237113
addParam+else+variableFromJSON: 0.237113
addVar+else+variableFromJSON: 0.237113
else+function+variableFromJSON: 0.237113
else+if_mode1+variableFromJSON: 0.237113
else+import+variableFromJSON: 0.237113
else+return+variableFromJSON: 0.237113
exception+itemFromList+variableFromJSON: 0.237113
itemFromList+try+variableFromJSON: 0.237113
AddVariableToJSON+exception+itemFromList: 0.237113
AddVariableToJSON+itemFromList+try: 0.237113
addParam+addVar+ormAccessInsert: 0.226804
addParam+exception+ormDirect: 0.226804
addParam+function+ormAccessInsert: 0.226804
addParam+if_mode1+ormAccessInsert: 0.226804
addParam+import+ormAccessInsert: 0.226804
addParam+ormDirect+return: 0.226804
addParam+ormDirect+try: 0.226804
addVar+exception+ormDirect: 0.226804
addVar+function+ormAccessInsert: 0.226804
addVar+if_mode1+ormAccessInsert: 0.226804
addVar+import+ormAccessInsert: 0.226804
addVar+ormDirect+return: 0.226804
addVar+ormDirect+try: 0.226804
else+ormAccessSelect+ormAccessUpdate: 0.226804
exception+function+ormAccessInsert: 0.226804
exception+if_mode1+ormAccessInsert: 0.226804
exception+import+ormAccessInsert: 0.226804
exception+ormAccessInsert+try: 0.226804
function+ormAccessInsert+try: 0.226804
if_mode1+ormAccessInsert+try: 0.226804
import+ormAccessInsert+try: 0.226804
itemFromList+ormDirect+return: 0.226804
AddVariableToJSON+exception+startLoop: 0.226804
AddVariableToJSON+return+variableFromJSON: 0.226804
AddVariableToJSON+startLoop+try: 0.226804
RequestGet+RequestPost+else: 0.226804
RequestGet+addVar+startLoop: 0.226804
RequestGet+if_mode1+startLoop: 0.226804
RequestGet+import+startLoop: 0.226804
RequestGet+itemFromList+startLoop: 0.226804
RequestPost+addParam+else: 0.226804
RequestPost+else+function: 0.226804
RequestPost+else+itemFromList: 0.226804
RequestPost+else+return: 0.226804
else+itemFromList+variableFromJSON: 0.226804
AddVariableToJSON+addParam+else: 0.226804
AddVariableToJSON+addParam+startLoop: 0.226804
AddVariableToJSON+addVar+else: 0.226804
AddVariableToJSON+addVar+startLoop: 0.226804
AddVariableToJSON+else+function: 0.226804
AddVariableToJSON+else+if_mode1: 0.226804
AddVariableToJSON+else+import: 0.226804
AddVariableToJSON+else+return: 0.226804
addParam+exception+ormAccessInsert: 0.216495
addParam+ormAccessInsert+try: 0.216495
addVar+exception+ormAccessInsert: 0.216495
addVar+ormAccessInsert+try: 0.216495
exception+itemFromList+ormDirect: 0.216495
exception+ormDirect+return: 0.216495
function+ormAccessInsert+return: 0.216495
if_mode1+ormAccessInsert+return: 0.216495
import+ormAccessInsert+return: 0.216495
itemFromList+ormDirect+try: 0.216495
ormDirect+return+try: 0.216495
AddVariableToJSON+if_mode1+variableFromJSON: 0.216495
RequestGet+addParam+startLoop: 0.216495
RequestGet+function+startLoop: 0.216495
RequestGet+return+startLoop: 0.216495
else+startLoop+variableFromJSON: 0.216495
AddVariableToJSON+addParam+variableFromJSON: 0.216495
AddVariableToJSON+addVar+variableFromJSON: 0.216495
AddVariableToJSON+else+itemFromList: 0.216495
AddVariableToJSON+itemFromList+startLoop: 0.216495
addParam+itemFromList+ormAccessInsert: 0.206186
addParam+ormAccessInsert+return: 0.206186
addVar+itemFromList+ormAccessInsert: 0.206186
addVar+ormAccessInsert+return: 0.206186
exception+ormAccessInsert+return: 0.206186
function+itemFromList+ormAccessInsert: 0.206186
function+ormAccessInsert+startLoop: 0.206186
if_mode1+itemFromList+ormAccessInsert: 0.206186
if_mode1+ormAccessInsert+startLoop: 0.206186
import+itemFromList+ormAccessInsert: 0.206186
import+ormAccessInsert+startLoop: 0.206186
ormAccessInsert+return+try: 0.206186
ormAccessSelect+ormAccessUpdate+startLoop: 0.206186
AddVariableToJSON+exception+variableFromJSON: 0.206186
AddVariableToJSON+startLoop+variableFromJSON: 0.206186
AddVariableToJSON+try+variableFromJSON: 0.206186
RequestPost+addVar+startLoop: 0.206186
RequestPost+if_mode1+startLoop: 0.206186
RequestPost+import+startLoop: 0.206186
else+exception+variableFromJSON: 0.206186
else+try+variableFromJSON: 0.206186
AddVariableToJSON+itemFromList+variableFromJSON: 0.206186
addVar+function+go: 0.206186
addVar+go+import: 0.206186
function+go+import: 0.206186
addParam+addVar+getDateTime: 0.195876
addParam+function+getDateTime: 0.195876
addParam+getDateTime+if_mode1: 0.195876
addParam+getDateTime+import: 0.195876
addParam+ormAccessInsert+startLoop: 0.195876
addVar+function+getDateTime: 0.195876
addVar+getDateTime+if_mode1: 0.195876
addVar+getDateTime+import: 0.195876
addVar+ormAccessInsert+startLoop: 0.195876
exception+itemFromList+ormAccessInsert: 0.195876
exception+ormAccessInsert+startLoop: 0.195876
function+getDateTime+if_mode1: 0.195876
function+getDateTime+import: 0.195876
function+ormAccessInsert+ormAccessSelect: 0.195876
function+ormDirect+startLoop: 0.195876
getDateTime+if_mode1+import: 0.195876
if_mode1+ormAccessInsert+ormAccessSelect: 0.195876
if_mode1+ormDirect+startLoop: 0.195876
import+ormAccessInsert+ormAccessSelect: 0.195876
import+ormDirect+startLoop: 0.195876
itemFromList+ormAccessInsert+return: 0.195876
itemFromList+ormAccessInsert+try: 0.195876
ormAccessInsert+startLoop+try: 0.195876
ormAccessSelect+ormDirect+startLoop: 0.195876
RequestPost+function+startLoop: 0.195876
RequestPost+itemFromList+startLoop: 0.195876
RequestPost+return+startLoop: 0.195876
_status+addVar+function: 0.195876
_status+addVar+import: 0.195876
_status+function+import: 0.195876
AddVariableToJSON+else+exception: 0.195876
AddVariableToJSON+else+try: 0.195876
addParam+addVar+go: 0.195876
addParam+function+go: 0.195876
addParam+go+import: 0.195876
addParam+go+itemFromList: 0.195876
addVar+go+if_mode1: 0.195876
addVar+go+itemFromList: 0.195876
function+go+if_mode1: 0.195876
function+go+itemFromList: 0.195876
go+if_mode1+import: 0.195876
go+import+itemFromList: 0.195876
addParam+else+ormDirect: 0.185567
addParam+getDateTime+itemFromList: 0.185567
addParam+getDateTime+return: 0.185567
addParam+ormAccessInsert+ormAccessSelect: 0.185567
addParam+ormDirect+startLoop: 0.185567
addVar+else+ormDirect: 0.185567
addVar+getDateTime+itemFromList: 0.185567
addVar+getDateTime+return: 0.185567
addVar+ormAccessInsert+ormAccessSelect: 0.185567
addVar+ormDirect+startLoop: 0.185567
else+function+ormDirect: 0.185567
else+if_mode1+ormDirect: 0.185567
else+import+ormDirect: 0.185567
else+ormAccessSelect+ormDirect: 0.185567
exception+ormAccessInsert+ormAccessSelect: 0.185567
function+getDateTime+itemFromList: 0.185567
function+getDateTime+return: 0.185567
getDateTime+if_mode1+itemFromList: 0.185567
getDateTime+if_mode1+return: 0.185567
getDateTime+import+itemFromList: 0.185567
getDateTime+import+return: 0.185567
getDateTime+itemFromList+return: 0.185567
ormAccessInsert+ormAccessSelect+try: 0.185567
ormAccessInsert+return+startLoop: 0.185567
ormDirect+return+startLoop: 0.185567
getTimeStamp+if_mode1+import: 0.185567
RequestGet+RequestPost+startLoop: 0.185567
RequestGet+else+exception: 0.185567
RequestGet+else+try: 0.185567
RequestPost+addParam+startLoop: 0.185567
RequestPost+else+exception: 0.185567
RequestPost+else+try: 0.185567
_status+addParam+addVar: 0.185567
_status+addParam+function: 0.185567
_status+addParam+import: 0.185567
_status+addParam+itemFromList: 0.185567
_status+addVar+if_mode1: 0.185567
_status+addVar+itemFromList: 0.185567
_status+addVar+return: 0.185567
_status+function+if_mode1: 0.185567
_status+function+itemFromList: 0.185567
_status+function+return: 0.185567
_status+if_mode1+import: 0.185567
_status+if_mode1+return: 0.185567
_status+import+itemFromList: 0.185567
_status+import+return: 0.185567
AddVariableToJSON+else+startLoop: 0.185567
addParam+exception+go: 0.185567
addParam+go+if_mode1: 0.185567
addParam+go+try: 0.185567
addVar+exception+go: 0.185567
addVar+go+return: 0.185567
addVar+go+startLoop: 0.185567
addVar+go+try: 0.185567
exception+function+go: 0.185567
exception+go+import: 0.185567
exception+go+itemFromList: 0.185567
exception+go+try: 0.185567
function+go+return: 0.185567
function+go+startLoop: 0.185567
function+go+try: 0.185567
go+if_mode1+itemFromList: 0.185567
go+if_mode1+return: 0.185567
go+if_mode1+startLoop: 0.185567
go+import+return: 0.185567
go+import+startLoop: 0.185567
go+import+try: 0.185567
go+itemFromList+try: 0.185567
addParam+else+ormAccessInsert: 0.175258
addParam+exception+getDateTime: 0.175258
addParam+getDateTime+try: 0.175258
addParam+ormAccessInsert+ormAccessUpdate: 0.175258
addParam+ormAccessUpdate+ormDirect: 0.175258
addVar+else+ormAccessInsert: 0.175258
addVar+exception+getDateTime: 0.175258
addVar+getDateTime+try: 0.175258
addVar+ormAccessInsert+ormAccessUpdate: 0.175258
addVar+ormAccessUpdate+ormDirect: 0.175258
else+function+ormAccessInsert: 0.175258
else+if_mode1+ormAccessInsert: 0.175258
else+import+ormAccessInsert: 0.175258
else+itemFromList+ormDirect: 0.175258
exception+function+getDateTime: 0.175258
exception+getDateTime+if_mode1: 0.175258
exception+getDateTime+import: 0.175258
exception+getDateTime+try: 0.175258
exception+ormDirect+startLoop: 0.175258
function+getDateTime+try: 0.175258
function+ormAccessInsert+ormAccessUpdate: 0.175258
function+ormAccessUpdate+ormDirect: 0.175258
getDateTime+if_mode1+try: 0.175258
getDateTime+import+try: 0.175258
if_mode1+ormAccessInsert+ormAccessUpdate: 0.175258
if_mode1+ormAccessUpdate+ormDirect: 0.175258
import+ormAccessInsert+ormAccessUpdate: 0.175258
import+ormAccessUpdate+ormDirect: 0.175258
itemFromList+ormAccessInsert+ormAccessSelect: 0.175258
itemFromList+ormAccessInsert+startLoop: 0.175258
itemFromList+ormDirect+startLoop: 0.175258
ormAccessInsert+ormAccessSelect+ormAccessUpdate: 0.175258
ormAccessInsert+ormAccessSelect+return: 0.175258
ormAccessSelect+ormAccessUpdate+ormDirect: 0.175258
ormDirect+startLoop+try: 0.175258
function+getTimeStamp+if_mode1: 0.175258
function+getTimeStamp+import: 0.175258
function+getTimeStamp+return: 0.175258
getTimeStamp+if_mode1+return: 0.175258
getTimeStamp+import+return: 0.175258
_status+addParam+if_mode1: 0.175258
_status+addParam+return: 0.175258
_status+if_mode1+itemFromList: 0.175258
_status+itemFromList+return: 0.175258
addVar+getTimeStamp+if_mode1: 0.175258
addVar+getTimeStamp+import: 0.175258
addVar+getTimeStamp+itemFromList: 0.175258
getTimeStamp+if_mode1+itemFromList: 0.175258
getTimeStamp+import+itemFromList: 0.175258
addParam+go+return: 0.175258
addParam+go+startLoop: 0.175258
exception+go+if_mode1: 0.175258
go+if_mode1+try: 0.175258
go+itemFromList+return: 0.175258
go+itemFromList+startLoop: 0.175258
go+return+startLoop: 0.175258
else+exception+ormAccessInsert: 0.164948
else+exception+ormDirect: 0.164948
else+itemFromList+ormAccessInsert: 0.164948
else+ormAccessInsert+startLoop: 0.164948
else+ormAccessInsert+try: 0.164948
else+ormDirect+return: 0.164948
else+ormDirect+try: 0.164948
exception+getDateTime+itemFromList: 0.164948
exception+getDateTime+return: 0.164948
exception+ormAccessInsert+ormAccessUpdate: 0.164948
exception+ormAccessUpdate+ormDirect: 0.164948
getDateTime+itemFromList+try: 0.164948
getDateTime+return+try: 0.164948
itemFromList+ormAccessInsert+ormAccessUpdate: 0.164948
itemFromList+ormAccessUpdate+ormDirect: 0.164948
ormAccessInsert+ormAccessSelect+startLoop: 0.164948
ormAccessInsert+ormAccessUpdate+try: 0.164948
ormAccessUpdate+ormDirect+try: 0.164948
RequestGet+exception+startLoop: 0.164948
RequestGet+startLoop+try: 0.164948
_status+addParam+exception: 0.164948
_status+addParam+try: 0.164948
_status+addVar+exception: 0.164948
_status+addVar+try: 0.164948
_status+exception+function: 0.164948
_status+exception+import: 0.164948
_status+exception+itemFromList: 0.164948
_status+exception+try: 0.164948
_status+function+try: 0.164948
_status+import+try: 0.164948
_status+itemFromList+try: 0.164948
AddVariableToJSON+else+variableFromJSON: 0.164948
addParam+addVar+getTimeStamp: 0.164948
addParam+function+getTimeStamp: 0.164948
addParam+getTimeStamp+if_mode1: 0.164948
addParam+getTimeStamp+import: 0.164948
addParam+getTimeStamp+itemFromList: 0.164948
addParam+getTimeStamp+return: 0.164948
addVar+function+getTimeStamp: 0.164948
addVar+getTimeStamp+return: 0.164948
function+getTimeStamp+itemFromList: 0.164948
getTimeStamp+itemFromList+return: 0.164948
exception+go+return: 0.164948
exception+go+startLoop: 0.164948
go+return+try: 0.164948
go+startLoop+try: 0.164948
addParam+else+getDateTime: 0.154639
addParam+getDateTime+startLoop: 0.154639
addParam+getListLen+ormAccessSelect: 0.154639
addVar+else+getDateTime: 0.154639
addVar+getDateTime+startLoop: 0.154639
addVar+getListLen+ormAccessSelect: 0.154639
else+function+getDateTime: 0.154639
else+getDateTime+if_mode1: 0.154639
else+getDateTime+import: 0.154639
else+ormAccessInsert+ormAccessSelect: 0.154639
else+ormAccessInsert+return: 0.154639
function+getDateTime+startLoop: 0.154639
function+getListLen+ormAccessSelect: 0.154639
getDateTime+if_mode1+startLoop: 0.154639
getDateTime+import+startLoop: 0.154639
getListLen+if_mode1+ormAccessSelect: 0.154639
getListLen+import+ormAccessSelect: 0.154639
getListLen+itemFromList+ormAccessSelect: 0.154639
ormAccessInsert+ormAccessUpdate+return: 0.154639
ormAccessUpdate+ormDirect+return: 0.154639
RequestGet+else+startLoop: 0.154639
RequestPost+_status+addVar: 0.154639
RequestPost+_status+function: 0.154639
RequestPost+_status+import: 0.154639
_status+addParam+else: 0.154639
_status+addVar+else: 0.154639
_status+addVar+startLoop: 0.154639
_status+else+function: 0.154639
_status+else+if_mode1: 0.154639
_status+else+import: 0.154639
_status+else+itemFromList: 0.154639
_status+else+return: 0.154639
_status+exception+if_mode1: 0.154639
_status+exception+return: 0.154639
_status+function+startLoop: 0.154639
_status+if_mode1+startLoop: 0.154639
_status+if_mode1+try: 0.154639
_status+import+startLoop: 0.154639
_status+return+startLoop: 0.154639
_status+return+try: 0.154639
addParam+addVar+replace: 0.154639
addParam+function+replace: 0.154639
addParam+if_mode1+replace: 0.154639
addParam+import+replace: 0.154639
addVar+function+replace: 0.154639
addVar+if_mode1+replace: 0.154639
addVar+import+replace: 0.154639
function+if_mode1+replace: 0.154639
function+import+replace: 0.154639
if_mode1+import+replace: 0.154639
addParam+getListLen+ormAccessUpdate: 0.14433
addVar+getListLen+ormAccessUpdate: 0.14433
else+exception+getDateTime: 0.14433
else+getDateTime+itemFromList: 0.14433
else+getDateTime+return: 0.14433
else+getDateTime+try: 0.14433
else+ormAccessInsert+ormAccessUpdate: 0.14433
else+ormDirect+startLoop: 0.14433
function+getListLen+ormAccessUpdate: 0.14433
getDateTime+itemFromList+startLoop: 0.14433
getDateTime+return+startLoop: 0.14433
getListLen+if_mode1+ormAccessUpdate: 0.14433
getListLen+import+ormAccessUpdate: 0.14433
getListLen+itemFromList+ormAccessUpdate: 0.14433
ormAccessInsert+ormAccessUpdate+startLoop: 0.14433
exception+function+getTimeStamp: 0.14433
exception+getTimeStamp+if_mode1: 0.14433
exception+getTimeStamp+import: 0.14433
exception+getTimeStamp+return: 0.14433
exception+getTimeStamp+try: 0.14433
function+getTimeStamp+try: 0.14433
getTimeStamp+if_mode1+startLoop: 0.14433
getTimeStamp+if_mode1+try: 0.14433
getTimeStamp+import+startLoop: 0.14433
getTimeStamp+import+try: 0.14433
getTimeStamp+return+try: 0.14433
RequestPost+_status+addParam: 0.14433
RequestPost+_status+if_mode1: 0.14433
RequestPost+_status+itemFromList: 0.14433
RequestPost+_status+return: 0.14433
RequestPost+else+startLoop: 0.14433
RequestPost+exception+startLoop: 0.14433
RequestPost+startLoop+try: 0.14433
_status+addParam+startLoop: 0.14433
_status+else+exception: 0.14433
_status+else+try: 0.14433
_status+itemFromList+startLoop: 0.14433
addParam+replace+return: 0.14433
addVar+replace+return: 0.14433
function+replace+return: 0.14433
if_mode1+replace+return: 0.14433
import+replace+return: 0.14433
addParam+getListLen+variableFromJSON: 0.14433
addVar+getListLen+variableFromJSON: 0.14433
function+getListLen+variableFromJSON: 0.14433
getListLen+import+variableFromJSON: 0.14433
getListLen+return+variableFromJSON: 0.14433
RequestPost+addVar+getListLen: 0.14433
RequestPost+getListLen+import: 0.14433
RequestPost+getListLen+itemFromList: 0.14433
else+getListLen+ormAccessSelect: 0.134021
else+ormAccessUpdate+ormDirect: 0.134021
exception+getDateTime+startLoop: 0.134021
exception+getListLen+ormAccessSelect: 0.134021
getDateTime+startLoop+try: 0.134021
getListLen+ormAccessSelect+return: 0.134021
getListLen+ormAccessSelect+startLoop: 0.134021
getListLen+ormAccessSelect+try: 0.134021
getListLen+ormAccessUpdate+startLoop: 0.134021
exception+getTimeStamp+startLoop: 0.134021
function+getTimeStamp+startLoop: 0.134021
function+ormAccessSelect+variableFromJSON: 0.134021
getTimeStamp+return+startLoop: 0.134021
getTimeStamp+startLoop+try: 0.134021
if_mode1+ormAccessSelect+variableFromJSON: 0.134021
import+ormAccessSelect+variableFromJSON: 0.134021
ormAccessSelect+return+variableFromJSON: 0.134021
RequestGet+RequestPost+_status: 0.134021
RequestGet+_status+addParam: 0.134021
RequestGet+_status+addVar: 0.134021
RequestGet+_status+function: 0.134021
RequestGet+_status+import: 0.134021
RequestGet+_status+itemFromList: 0.134021
RequestGet+addParam+ormAccessSelect: 0.134021
RequestGet+addVar+ormAccessSelect: 0.134021
RequestGet+function+ormAccessSelect: 0.134021
RequestGet+import+ormAccessSelect: 0.134021
RequestGet+itemFromList+ormAccessSelect: 0.134021
RequestGet+ormAccessSelect+return: 0.134021
RequestPost+addParam+ormAccessUpdate: 0.134021
RequestPost+addVar+ormAccessUpdate: 0.134021
RequestPost+function+ormAccessUpdate: 0.134021
RequestPost+if_mode1+ormAccessUpdate: 0.134021
RequestPost+import+ormAccessUpdate: 0.134021
RequestPost+itemFromList+ormAccessUpdate: 0.134021
RequestPost+ormAccessUpdate+return: 0.134021
_status+exception+startLoop: 0.134021
_status+startLoop+try: 0.134021
addParam+else+replace: 0.134021
addParam+itemFromList+replace: 0.134021
addParam+replace+startLoop: 0.134021
addVar+else+replace: 0.134021
addVar+itemFromList+replace: 0.134021
addVar+replace+startLoop: 0.134021
else+function+replace: 0.134021
else+if_mode1+replace: 0.134021
else+import+replace: 0.134021
function+itemFromList+replace: 0.134021
function+replace+startLoop: 0.134021
if_mode1+itemFromList+replace: 0.134021
if_mode1+replace+startLoop: 0.134021
import+itemFromList+replace: 0.134021
import+replace+startLoop: 0.134021
itemFromList+replace+return: 0.134021
addParam+addVar+encodeMD5: 0.134021
addParam+encodeMD5+function: 0.134021
addParam+encodeMD5+if_mode1: 0.134021
addParam+encodeMD5+import: 0.134021
addParam+encodeMD5+itemFromList: 0.134021
addParam+encodeMD5+return: 0.134021
addParam+exception+getTimeStamp: 0.134021
addParam+getTimeStamp+try: 0.134021
addVar+else+getTimeStamp: 0.134021
addVar+encodeMD5+function: 0.134021
addVar+encodeMD5+if_mode1: 0.134021
addVar+encodeMD5+import: 0.134021
addVar+encodeMD5+itemFromList: 0.134021
addVar+encodeMD5+return: 0.134021
addVar+exception+getTimeStamp: 0.134021
addVar+getTimeStamp+startLoop: 0.134021
addVar+getTimeStamp+try: 0.134021
else+getTimeStamp+if_mode1: 0.134021
else+getTimeStamp+import: 0.134021
else+getTimeStamp+itemFromList: 0.134021
encodeMD5+function+if_mode1: 0.134021
encodeMD5+function+import: 0.134021
encodeMD5+function+itemFromList: 0.134021
encodeMD5+function+return: 0.134021
encodeMD5+if_mode1+import: 0.134021
encodeMD5+if_mode1+itemFromList: 0.134021
encodeMD5+if_mode1+return: 0.134021
encodeMD5+import+itemFromList: 0.134021
encodeMD5+import+return: 0.134021
encodeMD5+itemFromList+return: 0.134021
exception+getTimeStamp+itemFromList: 0.134021
getListLen+if_mode1+variableFromJSON: 0.134021
getListLen+itemFromList+variableFromJSON: 0.134021
getListLen+startLoop+variableFromJSON: 0.134021
getTimeStamp+itemFromList+startLoop: 0.134021
getTimeStamp+itemFromList+try: 0.134021
RequestPost+addParam+getListLen: 0.134021
RequestPost+function+getListLen: 0.134021
RequestPost+getListLen+if_mode1: 0.134021
RequestPost+getListLen+return: 0.134021
RequestPost+getListLen+startLoop: 0.134021
RequestGet+addVar+getListLen: 0.134021
RequestGet+getListLen+if_mode1: 0.134021
RequestGet+getListLen+import: 0.134021
RequestGet+getListLen+itemFromList: 0.134021
RequestGet+getListLen+startLoop: 0.134021
addParam+addVar+randomString: 0.134021
addParam+function+randomString: 0.134021
addParam+if_mode1+randomString: 0.134021
addParam+import+randomString: 0.134021
addParam+randomString+return: 0.134021
addVar+function+randomString: 0.134021
addVar+if_mode1+randomString: 0.134021
addVar+import+randomString: 0.134021
addVar+randomString+return: 0.134021
function+if_mode1+randomString: 0.134021
function+import+randomString: 0.134021
function+randomString+return: 0.134021
if_mode1+import+randomString: 0.134021
if_mode1+randomString+return: 0.134021
import+randomString+return: 0.134021
addParam+else+go: 0.134021
addVar+else+go: 0.134021
else+function+go: 0.134021
else+go+if_mode1: 0.134021
else+go+import: 0.134021
else+go+itemFromList: 0.134021
else+go+return: 0.134021
addParam+getDateTime+ormAccessSelect: 0.123711
addParam+ormAccessInsert+ormDirect: 0.123711
addVar+getDateTime+ormAccessSelect: 0.123711
addVar+ormAccessInsert+ormDirect: 0.123711
else+getListLen+ormAccessUpdate: 0.123711
exception+getListLen+ormAccessUpdate: 0.123711
function+getDateTime+ormAccessSelect: 0.123711
function+ormAccessInsert+ormDirect: 0.123711
getDateTime+if_mode1+ormAccessSelect: 0.123711
getDateTime+import+ormAccessSelect: 0.123711
getListLen+ormAccessUpdate+return: 0.123711
getListLen+ormAccessUpdate+try: 0.123711
if_mode1+ormAccessInsert+ormDirect: 0.123711
import+ormAccessInsert+ormDirect: 0.123711
ormAccessInsert+ormAccessSelect+ormDirect: 0.123711
ormAccessUpdate+ormDirect+startLoop: 0.123711
ormAccessSelect+startLoop+variableFromJSON: 0.123711
RequestGet+RequestPost+ormAccessUpdate: 0.123711
RequestGet+_status+if_mode1: 0.123711
RequestGet+_status+return: 0.123711
RequestGet+addParam+ormAccessUpdate: 0.123711
RequestGet+addVar+ormAccessUpdate: 0.123711
RequestGet+function+ormAccessUpdate: 0.123711
RequestGet+if_mode1+ormAccessSelect: 0.123711
RequestGet+if_mode1+ormAccessUpdate: 0.123711
RequestGet+import+ormAccessUpdate: 0.123711
RequestGet+itemFromList+ormAccessUpdate: 0.123711
RequestGet+ormAccessUpdate+return: 0.123711
RequestPost+_status+exception: 0.123711
RequestPost+_status+try: 0.123711
RequestPost+addParam+ormAccessSelect: 0.123711
RequestPost+addVar+ormAccessSelect: 0.123711
RequestPost+function+ormAccessSelect: 0.123711
RequestPost+import+ormAccessSelect: 0.123711
RequestPost+itemFromList+ormAccessSelect: 0.123711
RequestPost+ormAccessSelect+return: 0.123711
_status+else+startLoop: 0.123711
addParam+exception+replace: 0.123711
addParam+replace+try: 0.123711
addVar+exception+replace: 0.123711
addVar+replace+try: 0.123711
else+exception+replace: 0.123711
else+replace+return: 0.123711
else+replace+startLoop: 0.123711
else+replace+try: 0.123711
exception+function+replace: 0.123711
exception+if_mode1+replace: 0.123711
exception+import+replace: 0.123711
exception+replace+try: 0.123711
function+replace+try: 0.123711
if_mode1+replace+try: 0.123711
import+replace+try: 0.123711
replace+return+startLoop: 0.123711
AddVariableToJSON+addParam+getListLen: 0.123711
AddVariableToJSON+addVar+getListLen: 0.123711
AddVariableToJSON+function+getListLen: 0.123711
AddVariableToJSON+getListLen+import: 0.123711
AddVariableToJSON+getListLen+return: 0.123711
addParam+else+getTimeStamp: 0.123711
addParam+getTimeStamp+startLoop: 0.123711
else+function+getTimeStamp: 0.123711
else+getTimeStamp+return: 0.123711
encodeSHA256+function+if_mode1: 0.123711
encodeSHA256+function+import: 0.123711
encodeSHA256+function+return: 0.123711
encodeSHA256+if_mode1+import: 0.123711
encodeSHA256+if_mode1+return: 0.123711
encodeSHA256+import+return: 0.123711
AddVariableToJSON+RequestGet+addParam: 0.123711
AddVariableToJSON+RequestGet+addVar: 0.123711
AddVariableToJSON+RequestGet+function: 0.123711
AddVariableToJSON+RequestGet+import: 0.123711
AddVariableToJSON+RequestGet+itemFromList: 0.123711
RequestGet+RequestPost+getListLen: 0.123711
RequestGet+addParam+getListLen: 0.123711
RequestGet+function+getListLen: 0.123711
RequestGet+getListLen+return: 0.123711
addParam+itemFromList+randomString: 0.123711
addVar+itemFromList+randomString: 0.123711
function+itemFromList+randomString: 0.123711
if_mode1+itemFromList+randomString: 0.123711
import+itemFromList+randomString: 0.123711
itemFromList+randomString+return: 0.123711
addParam+addVar+gather: 0.123711
addParam+exception+gather: 0.123711
addParam+function+gather: 0.123711
addParam+gather+go: 0.123711
addParam+gather+import: 0.123711
addParam+gather+itemFromList: 0.123711
addParam+gather+try: 0.123711
addVar+exception+gather: 0.123711
addVar+function+gather: 0.123711
addVar+gather+go: 0.123711
addVar+gather+import: 0.123711
addVar+gather+itemFromList: 0.123711
addVar+gather+try: 0.123711
else+exception+go: 0.123711
else+go+startLoop: 0.123711
else+go+try: 0.123711
exception+function+gather: 0.123711
exception+gather+go: 0.123711
exception+gather+import: 0.123711
exception+gather+itemFromList: 0.123711
exception+gather+try: 0.123711
function+gather+go: 0.123711
function+gather+import: 0.123711
function+gather+itemFromList: 0.123711
function+gather+try: 0.123711
gather+go+import: 0.123711
gather+go+itemFromList: 0.123711
gather+go+try: 0.123711
gather+import+itemFromList: 0.123711
gather+import+try: 0.123711
gather+itemFromList+try: 0.123711
else+getDateTime+startLoop: 0.113402
exception+getDateTime+ormAccessSelect: 0.113402
exception+ormAccessInsert+ormDirect: 0.113402
getDateTime+itemFromList+ormAccessSelect: 0.113402
getDateTime+ormAccessSelect+return: 0.113402
getDateTime+ormAccessSelect+try: 0.113402
itemFromList+ormAccessInsert+ormDirect: 0.113402
ormAccessInsert+ormAccessUpdate+ormDirect: 0.113402
ormAccessInsert+ormDirect+return: 0.113402
ormAccessInsert+ormDirect+try: 0.113402
AddVariableToJSON+function+ormAccessSelect: 0.113402
AddVariableToJSON+if_mode1+ormAccessSelect: 0.113402
AddVariableToJSON+import+ormAccessSelect: 0.113402
AddVariableToJSON+ormAccessSelect+return: 0.113402
exception+ormAccessSelect+variableFromJSON: 0.113402
ormAccessSelect+try+variableFromJSON: 0.113402
RequestGet+RequestPost+ormAccessSelect: 0.113402
RequestGet+_status+exception: 0.113402
RequestGet+_status+try: 0.113402
RequestGet+addParam+variableFromJSON: 0.113402
RequestGet+addVar+variableFromJSON: 0.113402
RequestGet+exception+ormAccessSelect: 0.113402
RequestGet+function+variableFromJSON: 0.113402
RequestGet+import+variableFromJSON: 0.113402
RequestGet+itemFromList+variableFromJSON: 0.113402
RequestGet+ormAccessSelect+try: 0.113402
RequestPost+_status+else: 0.113402
RequestPost+_status+startLoop: 0.113402
RequestPost+exception+ormAccessSelect: 0.113402
RequestPost+exception+ormAccessUpdate: 0.113402
RequestPost+if_mode1+ormAccessSelect: 0.113402
RequestPost+ormAccessSelect+try: 0.113402
RequestPost+ormAccessUpdate+try: 0.113402
addParam+ormAccessSelect+variableFromJSON: 0.113402
addParam+ormAccessUpdate+variableFromJSON: 0.113402
addVar+ormAccessSelect+variableFromJSON: 0.113402
addVar+ormAccessUpdate+variableFromJSON: 0.113402
else+itemFromList+replace: 0.113402
else+ormAccessUpdate+variableFromJSON: 0.113402
exception+replace+return: 0.113402
exception+replace+startLoop: 0.113402
function+ormAccessUpdate+variableFromJSON: 0.113402
if_mode1+ormAccessUpdate+variableFromJSON: 0.113402
import+ormAccessUpdate+variableFromJSON: 0.113402
itemFromList+ormAccessSelect+variableFromJSON: 0.113402
itemFromList+ormAccessUpdate+variableFromJSON: 0.113402
itemFromList+replace+startLoop: 0.113402
ormAccessUpdate+return+variableFromJSON: 0.113402
replace+return+try: 0.113402
replace+startLoop+try: 0.113402
AddVariableToJSON+getListLen+if_mode1: 0.113402
AddVariableToJSON+getListLen+itemFromList: 0.113402
AddVariableToJSON+getListLen+startLoop: 0.113402
addParam+else+encodeMD5: 0.113402
addVar+else+encodeMD5: 0.113402
addVar+getListLen+getTimeStamp: 0.113402
else+encodeMD5+function: 0.113402
else+encodeMD5+if_mode1: 0.113402
else+encodeMD5+import: 0.113402
else+encodeMD5+itemFromList: 0.113402
else+encodeMD5+return: 0.113402
else+exception+getTimeStamp: 0.113402
else+getListLen+variableFromJSON: 0.113402
else+getTimeStamp+startLoop: 0.113402
else+getTimeStamp+try: 0.113402
exception+getListLen+variableFromJSON: 0.113402
getListLen+getTimeStamp+if_mode1: 0.113402
getListLen+getTimeStamp+import: 0.113402
getListLen+getTimeStamp+itemFromList: 0.113402
getListLen+try+variableFromJSON: 0.113402
addParam+addVar+encodeSHA256: 0.113402
addParam+encodeSHA256+function: 0.113402
addParam+encodeSHA256+if_mode1: 0.113402
addParam+encodeSHA256+import: 0.113402
addParam+encodeSHA256+itemFromList: 0.113402
addParam+encodeSHA256+return: 0.113402
addVar+encodeSHA256+function: 0.113402
addVar+encodeSHA256+if_mode1: 0.113402
addVar+encodeSHA256+import: 0.113402
addVar+encodeSHA256+itemFromList: 0.113402
addVar+encodeSHA256+return: 0.113402
encodeSHA256+function+itemFromList: 0.113402
encodeSHA256+if_mode1+itemFromList: 0.113402
encodeSHA256+import+itemFromList: 0.113402
encodeSHA256+itemFromList+return: 0.113402
AddVariableToJSON+RequestGet+if_mode1: 0.113402
AddVariableToJSON+RequestGet+return: 0.113402
AddVariableToJSON+RequestPost+addParam: 0.113402
AddVariableToJSON+RequestPost+addVar: 0.113402
AddVariableToJSON+RequestPost+function: 0.113402
AddVariableToJSON+RequestPost+import: 0.113402
AddVariableToJSON+RequestPost+itemFromList: 0.113402
addParam+gather+if_mode1: 0.113402
addVar+gather+if_mode1: 0.113402
exception+gather+if_mode1: 0.113402
function+gather+if_mode1: 0.113402
gather+go+if_mode1: 0.113402
gather+if_mode1+import: 0.113402
gather+if_mode1+itemFromList: 0.113402
gather+if_mode1+try: 0.113402
addParam+getDateTime+ormAccessUpdate: 0.103093
addParam+getDateTime+ormDirect: 0.103093
addParam+getListLen+ormAccessInsert: 0.103093
addVar+getDateTime+ormAccessUpdate: 0.103093
addVar+getDateTime+ormDirect: 0.103093
addVar+getListLen+ormAccessInsert: 0.103093
else+getDateTime+ormAccessSelect: 0.103093
function+getDateTime+ormAccessUpdate: 0.103093
function+getDateTime+ormDirect: 0.103093
function+getListLen+ormAccessInsert: 0.103093
getDateTime+if_mode1+ormAccessUpdate: 0.103093
getDateTime+if_mode1+ormDirect: 0.103093
getDateTime+import+ormAccessUpdate: 0.103093
getDateTime+import+ormDirect: 0.103093
getDateTime+ormAccessSelect+ormDirect: 0.103093
getDateTime+ormAccessSelect+startLoop: 0.103093
getListLen+if_mode1+ormAccessInsert: 0.103093
getListLen+import+ormAccessInsert: 0.103093
getListLen+ormAccessInsert+startLoop: 0.103093
AddVariableToJSON+exception+ormAccessSelect: 0.103093
AddVariableToJSON+ormAccessSelect+startLoop: 0.103093
AddVariableToJSON+ormAccessSelect+try: 0.103093
RequestGet+_status+else: 0.103093
RequestGet+_status+startLoop: 0.103093
RequestGet+exception+ormAccessUpdate: 0.103093
RequestGet+if_mode1+variableFromJSON: 0.103093
RequestGet+ormAccessUpdate+try: 0.103093
RequestGet+return+variableFromJSON: 0.103093
RequestPost+addParam+variableFromJSON: 0.103093
RequestPost+addVar+variableFromJSON: 0.103093
RequestPost+function+variableFromJSON: 0.103093
RequestPost+import+variableFromJSON: 0.103093
RequestPost+itemFromList+variableFromJSON: 0.103093
RequestPost+ormAccessSelect+ormAccessUpdate: 0.103093
RequestPost+ormAccessUpdate+startLoop: 0.103093
exception+itemFromList+replace: 0.103093
itemFromList+replace+try: 0.103093
ormAccessUpdate+startLoop+variableFromJSON: 0.103093
AddVariableToJSON+else+getListLen: 0.103093
AddVariableToJSON+exception+getListLen: 0.103093
AddVariableToJSON+getListLen+try: 0.103093
AddVariableToJSON+getListLen+variableFromJSON: 0.103093
addParam+encodeMD5+exception: 0.103093
addParam+encodeMD5+try: 0.103093
addParam+getListLen+getTimeStamp: 0.103093
addVar+encodeMD5+exception: 0.103093
addVar+encodeMD5+try: 0.103093
else+encodeMD5+exception: 0.103093
else+encodeMD5+try: 0.103093
else+getListLen+getTimeStamp: 0.103093
encodeMD5+exception+function: 0.103093
encodeMD5+exception+if_mode1: 0.103093
encodeMD5+exception+import: 0.103093
encodeMD5+exception+itemFromList: 0.103093
encodeMD5+exception+return: 0.103093
encodeMD5+exception+try: 0.103093
encodeMD5+function+try: 0.103093
encodeMD5+if_mode1+try: 0.103093
encodeMD5+import+try: 0.103093
encodeMD5+itemFromList+try: 0.103093
encodeMD5+return+try: 0.103093
function+getListLen+getTimeStamp: 0.103093
getListLen+getTimeStamp+return: 0.103093
getListLen+getTimeStamp+startLoop: 0.103093
AddVariableToJSON+RequestGet+exception: 0.103093
AddVariableToJSON+RequestGet+try: 0.103093
AddVariableToJSON+RequestPost+return: 0.103093
AddVariableToJSON+addParam+ormAccessUpdate: 0.103093
AddVariableToJSON+addVar+ormAccessUpdate: 0.103093
AddVariableToJSON+else+ormAccessUpdate: 0.103093
AddVariableToJSON+function+ormAccessUpdate: 0.103093
AddVariableToJSON+if_mode1+ormAccessUpdate: 0.103093
AddVariableToJSON+import+ormAccessUpdate: 0.103093
AddVariableToJSON+itemFromList+ormAccessUpdate: 0.103093
AddVariableToJSON+ormAccessUpdate+return: 0.103093
_status+addParam+getListLen: 0.103093
_status+addVar+getListLen: 0.103093
_status+function+getListLen: 0.103093
_status+getListLen+if_mode1: 0.103093
_status+getListLen+import: 0.103093
_status+getListLen+itemFromList: 0.103093
_status+getListLen+return: 0.103093
_status+getListLen+startLoop: 0.103093
addParam+exception+randomString: 0.103093
addParam+randomString+startLoop: 0.103093
addParam+randomString+try: 0.103093
addVar+exception+randomString: 0.103093
addVar+randomString+startLoop: 0.103093
addVar+randomString+try: 0.103093
exception+function+randomString: 0.103093
exception+if_mode1+randomString: 0.103093
exception+import+randomString: 0.103093
exception+itemFromList+randomString: 0.103093
exception+randomString+return: 0.103093
exception+randomString+try: 0.103093
function+randomString+startLoop: 0.103093
function+randomString+try: 0.103093
if_mode1+randomString+startLoop: 0.103093
if_mode1+randomString+try: 0.103093
import+randomString+startLoop: 0.103093
import+randomString+try: 0.103093
itemFromList+randomString+try: 0.103093
randomString+return+startLoop: 0.103093
randomString+return+try: 0.103093
addParam+else+randomString: 0.103093
addParam+gather+return: 0.103093
addParam+gather+startLoop: 0.103093
addVar+else+randomString: 0.103093
addVar+gather+return: 0.103093
addVar+gather+startLoop: 0.103093
else+function+randomString: 0.103093
else+if_mode1+randomString: 0.103093
else+import+randomString: 0.103093
else+itemFromList+randomString: 0.103093
else+randomString+return: 0.103093
exception+gather+return: 0.103093
exception+gather+startLoop: 0.103093
function+gather+return: 0.103093
function+gather+startLoop: 0.103093
gather+go+return: 0.103093
gather+go+startLoop: 0.103093
gather+if_mode1+return: 0.103093
gather+if_mode1+startLoop: 0.103093
gather+import+return: 0.103093
gather+import+startLoop: 0.103093
gather+itemFromList+return: 0.103093
gather+itemFromList+startLoop: 0.103093
gather+return+try: 0.103093
gather+startLoop+try: 0.103093
addParam+getDateTime+getListLen: 0.092784
addVar+getDateTime+getListLen: 0.092784
else+getDateTime+ormAccessUpdate: 0.092784
else+getListLen+ormAccessInsert: 0.092784
else+ormAccessInsert+ormDirect: 0.092784
exception+getDateTime+ormAccessUpdate: 0.092784
exception+getDateTime+ormDirect: 0.092784
exception+getListLen+ormAccessInsert: 0.092784
function+getDateTime+getListLen: 0.092784
getDateTime+getListLen+if_mode1: 0.092784
getDateTime+getListLen+import: 0.092784
getDateTime+getListLen+itemFromList: 0.092784
getDateTime+getListLen+return: 0.092784
getDateTime+getListLen+startLoop: 0.092784
getDateTime+itemFromList+ormAccessUpdate: 0.092784
getDateTime+itemFromList+ormDirect: 0.092784
getDateTime+ormAccessUpdate+return: 0.092784
getDateTime+ormAccessUpdate+try: 0.092784
getDateTime+ormDirect+return: 0.092784
getDateTime+ormDirect+try: 0.092784
getListLen+itemFromList+ormAccessInsert: 0.092784
getListLen+ormAccessInsert+return: 0.092784
getListLen+ormAccessInsert+try: 0.092784
getListLen+ormAccessSelect+ormAccessUpdate: 0.092784
ormAccessInsert+ormDirect+startLoop: 0.092784
AddVariableToJSON+exception+getTimeStamp: 0.092784
AddVariableToJSON+function+getTimeStamp: 0.092784
AddVariableToJSON+getTimeStamp+if_mode1: 0.092784
AddVariableToJSON+getTimeStamp+import: 0.092784
AddVariableToJSON+getTimeStamp+return: 0.092784
AddVariableToJSON+getTimeStamp+try: 0.092784
AddVariableToJSON+ormAccessSelect+variableFromJSON: 0.092784
exception+getTimeStamp+variableFromJSON: 0.092784
function+getTimeStamp+variableFromJSON: 0.092784
getTimeStamp+if_mode1+variableFromJSON: 0.092784
getTimeStamp+import+variableFromJSON: 0.092784
getTimeStamp+return+variableFromJSON: 0.092784
getTimeStamp+try+variableFromJSON: 0.092784
RequestGet+RequestPost+variableFromJSON: 0.092784
RequestGet+exception+variableFromJSON: 0.092784
RequestGet+ormAccessSelect+ormAccessUpdate: 0.092784
RequestGet+ormAccessSelect+startLoop: 0.092784
RequestGet+ormAccessUpdate+startLoop: 0.092784
RequestGet+startLoop+variableFromJSON: 0.092784
RequestGet+try+variableFromJSON: 0.092784
RequestPost+return+variableFromJSON: 0.092784
_status+addParam+variableFromJSON: 0.092784
_status+addVar+variableFromJSON: 0.092784
_status+exception+variableFromJSON: 0.092784
_status+function+variableFromJSON: 0.092784
_status+import+variableFromJSON: 0.092784
_status+itemFromList+variableFromJSON: 0.092784
_status+try+variableFromJSON: 0.092784
addParam+ormAccessUpdate+replace: 0.092784
addParam+replace+variableFromJSON: 0.092784
addVar+ormAccessUpdate+replace: 0.092784
addVar+replace+variableFromJSON: 0.092784
else+ormAccessSelect+variableFromJSON: 0.092784
else+ormAccessUpdate+replace: 0.092784
else+replace+variableFromJSON: 0.092784
function+ormAccessUpdate+replace: 0.092784
function+replace+variableFromJSON: 0.092784
if_mode1+ormAccessUpdate+replace: 0.092784
if_mode1+replace+variableFromJSON: 0.092784
import+ormAccessUpdate+replace: 0.092784
import+replace+variableFromJSON: 0.092784
replace+return+variableFromJSON: 0.092784
replace+startLoop+variableFromJSON: 0.092784
AddVariableToJSON+addParam+ormAccessSelect: 0.092784
AddVariableToJSON+addVar+ormAccessSelect: 0.092784
AddVariableToJSON+itemFromList+ormAccessSelect: 0.092784
addParam+encodeMD5+startLoop: 0.092784
addVar+encodeMD5+startLoop: 0.092784
encodeMD5+function+startLoop: 0.092784
encodeMD5+if_mode1+startLoop: 0.092784
encodeMD5+import+startLoop: 0.092784
encodeMD5+itemFromList+startLoop: 0.092784
encodeMD5+return+startLoop: 0.092784
exception+getListLen+getTimeStamp: 0.092784
getListLen+getTimeStamp+try: 0.092784
RequestGet+RequestPost+ormAccessInsert: 0.092784
RequestGet+addParam+ormAccessInsert: 0.092784
RequestGet+addParam+ormDirect: 0.092784
RequestGet+addVar+ormAccessInsert: 0.092784
RequestGet+addVar+ormDirect: 0.092784
RequestGet+function+ormAccessInsert: 0.092784
RequestGet+function+ormDirect: 0.092784
RequestGet+if_mode1+ormAccessInsert: 0.092784
RequestGet+if_mode1+ormDirect: 0.092784
RequestGet+import+ormAccessInsert: 0.092784
RequestGet+import+ormDirect: 0.092784
RequestGet+itemFromList+ormAccessInsert: 0.092784
RequestGet+itemFromList+ormDirect: 0.092784
RequestGet+ormAccessInsert+return: 0.092784
RequestGet+ormAccessSelect+ormDirect: 0.092784
RequestGet+ormDirect+return: 0.092784
RequestPost+addParam+ormAccessInsert: 0.092784
RequestPost+addVar+ormAccessInsert: 0.092784
RequestPost+function+ormAccessInsert: 0.092784
RequestPost+if_mode1+ormAccessInsert: 0.092784
RequestPost+import+ormAccessInsert: 0.092784
RequestPost+itemFromList+ormAccessInsert: 0.092784
RequestPost+ormAccessInsert+return: 0.092784
AddVariableToJSON+RequestGet+RequestPost: 0.092784
AddVariableToJSON+RequestGet+else: 0.092784
AddVariableToJSON+RequestPost+else: 0.092784
AddVariableToJSON+RequestPost+if_mode1: 0.092784
RequestGet+else+getListLen: 0.092784
RequestPost+else+getListLen: 0.092784
AddVariableToJSON+ormAccessUpdate+startLoop: 0.092784
_status+exception+getListLen: 0.092784
_status+getListLen+try: 0.092784
addParam+getListLen+replace: 0.092784
addVar+getListLen+replace: 0.092784
function+getListLen+replace: 0.092784
getListLen+if_mode1+replace: 0.092784
getListLen+import+replace: 0.092784
getListLen+replace+return: 0.092784
getListLen+replace+startLoop: 0.092784
itemFromList+randomString+startLoop: 0.092784
addParam+getListLen+go: 0.092784
addVar+getListLen+go: 0.092784
else+exception+randomString: 0.092784
else+getListLen+go: 0.092784
else+randomString+try: 0.092784
exception+getListLen+go: 0.092784
function+getListLen+go: 0.092784
gather+return+startLoop: 0.092784
getListLen+go+if_mode1: 0.092784
getListLen+go+import: 0.092784
getListLen+go+itemFromList: 0.092784
getListLen+go+return: 0.092784
getListLen+go+startLoop: 0.092784
getListLen+go+try: 0.092784
addParam+getDateTime+ormAccessInsert: 0.082474
addVar+getDateTime+ormAccessInsert: 0.082474
else+getDateTime+getListLen: 0.082474
else+getDateTime+ormAccessInsert: 0.082474
else+getDateTime+ormDirect: 0.082474
exception+getDateTime+getListLen: 0.082474
function+getDateTime+ormAccessInsert: 0.082474
getDateTime+getListLen+try: 0.082474
getDateTime+if_mode1+ormAccessInsert: 0.082474
getDateTime+import+ormAccessInsert: 0.082474
getDateTime+ormAccessInsert+startLoop: 0.082474
getDateTime+ormAccessSelect+ormAccessUpdate: 0.082474
getDateTime+ormAccessUpdate+startLoop: 0.082474
getDateTime+ormDirect+startLoop: 0.082474
getListLen+ormAccessInsert+ormAccessSelect: 0.082474
AddVariableToJSON+getTimeStamp+startLoop: 0.082474
AddVariableToJSON+getTimeStamp+variableFromJSON: 0.082474
getTimeStamp+startLoop+variableFromJSON: 0.082474
RequestGet+else+ormAccessSelect: 0.082474
RequestGet+else+ormAccessUpdate: 0.082474
RequestGet+else+variableFromJSON: 0.082474
RequestPost+else+ormAccessUpdate: 0.082474
RequestPost+if_mode1+variableFromJSON: 0.082474
RequestPost+ormAccessSelect+startLoop: 0.082474
RequestPost+startLoop+variableFromJSON: 0.082474
_status+else+variableFromJSON: 0.082474
_status+if_mode1+variableFromJSON: 0.082474
_status+return+variableFromJSON: 0.082474
_status+startLoop+variableFromJSON: 0.082474
exception+ormAccessUpdate+replace: 0.082474
exception+ormAccessUpdate+variableFromJSON: 0.082474
exception+replace+variableFromJSON: 0.082474
itemFromList+ormAccessUpdate+replace: 0.082474
itemFromList+replace+variableFromJSON: 0.082474
ormAccessUpdate+replace+return: 0.082474
ormAccessUpdate+replace+startLoop: 0.082474
ormAccessUpdate+replace+try: 0.082474
ormAccessUpdate+try+variableFromJSON: 0.082474
replace+try+variableFromJSON: 0.082474
AddVariableToJSON+addParam+getTimeStamp: 0.082474
AddVariableToJSON+addVar+getTimeStamp: 0.082474
AddVariableToJSON+getTimeStamp+itemFromList: 0.082474
addParam+getTimeStamp+variableFromJSON: 0.082474
addVar+getTimeStamp+variableFromJSON: 0.082474
else+encodeMD5+startLoop: 0.082474
getTimeStamp+itemFromList+variableFromJSON: 0.082474
RequestGet+exception+ormAccessInsert: 0.082474
RequestGet+ormAccessInsert+ormAccessSelect: 0.082474
RequestGet+ormAccessInsert+ormAccessUpdate: 0.082474
RequestGet+ormAccessInsert+try: 0.082474
RequestPost+addParam+ormDirect: 0.082474
RequestPost+addVar+ormDirect: 0.082474
RequestPost+exception+ormAccessInsert: 0.082474
RequestPost+function+ormDirect: 0.082474
RequestPost+if_mode1+ormDirect: 0.082474
RequestPost+import+ormDirect: 0.082474
RequestPost+itemFromList+ormDirect: 0.082474
RequestPost+ormAccessInsert+ormAccessSelect: 0.082474
RequestPost+ormAccessInsert+ormAccessUpdate: 0.082474
RequestPost+ormAccessInsert+try: 0.082474
RequestPost+ormAccessSelect+ormDirect: 0.082474
RequestPost+ormAccessUpdate+ormDirect: 0.082474
RequestPost+ormDirect+return: 0.082474
encodeSHA256+exception+function: 0.082474
encodeSHA256+exception+if_mode1: 0.082474
encodeSHA256+exception+import: 0.082474
encodeSHA256+exception+return: 0.082474
encodeSHA256+exception+try: 0.082474
encodeSHA256+function+try: 0.082474
encodeSHA256+if_mode1+try: 0.082474
encodeSHA256+import+try: 0.082474
encodeSHA256+return+try: 0.082474
RequestPost+exception+getListLen: 0.082474
RequestPost+getListLen+try: 0.082474
AddVariableToJSON+RequestPost+exception: 0.082474
AddVariableToJSON+RequestPost+try: 0.082474
AddVariableToJSON+exception+ormAccessUpdate: 0.082474
AddVariableToJSON+ormAccessUpdate+try: 0.082474
AddVariableToJSON+RequestGet+startLoop: 0.082474
AddVariableToJSON+_status+addParam: 0.082474
AddVariableToJSON+_status+addVar: 0.082474
AddVariableToJSON+_status+exception: 0.082474
AddVariableToJSON+_status+function: 0.082474
AddVariableToJSON+_status+import: 0.082474
AddVariableToJSON+_status+itemFromList: 0.082474
AddVariableToJSON+_status+try: 0.082474
RequestGet+exception+getListLen: 0.082474
RequestGet+getListLen+try: 0.082474
_status+else+getListLen: 0.082474
else+getListLen+replace: 0.082474
getListLen+itemFromList+replace: 0.082474
addParam+getListLen+randomString: 0.082474
addVar+getListLen+randomString: 0.082474
exception+randomString+startLoop: 0.082474
function+getListLen+randomString: 0.082474
getListLen+if_mode1+randomString: 0.082474
getListLen+import+randomString: 0.082474
getListLen+itemFromList+randomString: 0.082474
getListLen+randomString+return: 0.082474
randomString+startLoop+try: 0.082474
addParam+getListLen+ormDirect: 0.072165
addVar+getListLen+ormDirect: 0.072165
exception+getDateTime+ormAccessInsert: 0.072165
function+getListLen+ormDirect: 0.072165
getDateTime+getListLen+ormAccessSelect: 0.072165
getDateTime+itemFromList+ormAccessInsert: 0.072165
getDateTime+ormAccessInsert+ormAccessSelect: 0.072165
getDateTime+ormAccessInsert+return: 0.072165
getDateTime+ormAccessInsert+try: 0.072165
getDateTime+ormAccessUpdate+ormDirect: 0.072165
getListLen+if_mode1+ormDirect: 0.072165
getListLen+import+ormDirect: 0.072165
getListLen+itemFromList+ormDirect: 0.072165
getListLen+ormAccessInsert+ormAccessUpdate: 0.072165
getListLen+ormAccessSelect+ormDirect: 0.072165
RequestGet+_status+variableFromJSON: 0.072165
RequestPost+_status+variableFromJSON: 0.072165
RequestPost+else+ormAccessSelect: 0.072165
RequestPost+else+variableFromJSON: 0.072165
RequestPost+exception+variableFromJSON: 0.072165
RequestPost+try+variableFromJSON: 0.072165
ormAccessSelect+ormAccessUpdate+variableFromJSON: 0.072165
AddVariableToJSON+addParam+encodeMD5: 0.072165
AddVariableToJSON+addVar+encodeMD5: 0.072165
AddVariableToJSON+else+encodeMD5: 0.072165
AddVariableToJSON+else+getTimeStamp: 0.072165
AddVariableToJSON+else+ormAccessSelect: 0.072165
AddVariableToJSON+encodeMD5+function: 0.072165
AddVariableToJSON+encodeMD5+if_mode1: 0.072165
AddVariableToJSON+encodeMD5+import: 0.072165
AddVariableToJSON+encodeMD5+itemFromList: 0.072165
AddVariableToJSON+encodeMD5+return: 0.072165
addParam+encodeMD5+getListLen: 0.072165
addVar+encodeMD5+getListLen: 0.072165
else+getTimeStamp+variableFromJSON: 0.072165
encodeMD5+exception+startLoop: 0.072165
encodeMD5+function+getListLen: 0.072165
encodeMD5+getListLen+if_mode1: 0.072165
encodeMD5+getListLen+import: 0.072165
encodeMD5+getListLen+itemFromList: 0.072165
encodeMD5+getListLen+return: 0.072165
encodeMD5+getListLen+startLoop: 0.072165
encodeMD5+startLoop+try: 0.072165
RequestGet+RequestPost+ormDirect: 0.072165
RequestGet+exception+ormDirect: 0.072165
RequestGet+ormAccessInsert+ormDirect: 0.072165
RequestGet+ormAccessUpdate+ormDirect: 0.072165
RequestGet+ormDirect+try: 0.072165
RequestPost+addParam+getDateTime: 0.072165
RequestPost+addVar+getDateTime: 0.072165
RequestPost+exception+ormDirect: 0.072165
RequestPost+function+getDateTime: 0.072165
RequestPost+getDateTime+if_mode1: 0.072165
RequestPost+getDateTime+import: 0.072165
RequestPost+getDateTime+itemFromList: 0.072165
RequestPost+getDateTime+return: 0.072165
RequestPost+ormAccessInsert+ormDirect: 0.072165
RequestPost+ormDirect+try: 0.072165
addParam+encodeSHA256+exception: 0.072165
addParam+encodeSHA256+try: 0.072165
addVar+encodeSHA256+exception: 0.072165
addVar+encodeSHA256+try: 0.072165
encodeSHA256+exception+itemFromList: 0.072165
encodeSHA256+function+startLoop: 0.072165
encodeSHA256+if_mode1+startLoop: 0.072165
encodeSHA256+import+startLoop: 0.072165
encodeSHA256+itemFromList+try: 0.072165
encodeSHA256+return+startLoop: 0.072165
exception+ormDirect+variableFromJSON: 0.072165
function+ormDirect+variableFromJSON: 0.072165
if_mode1+ormDirect+variableFromJSON: 0.072165
import+ormDirect+variableFromJSON: 0.072165
ormAccessSelect+ormDirect+variableFromJSON: 0.072165
ormDirect+return+variableFromJSON: 0.072165
ormDirect+startLoop+variableFromJSON: 0.072165
ormDirect+try+variableFromJSON: 0.072165
AddVariableToJSON+ormAccessUpdate+variableFromJSON: 0.072165
AddVariableToJSON+_status+else: 0.072165
AddVariableToJSON+_status+if_mode1: 0.072165
AddVariableToJSON+_status+return: 0.072165
AddVariableToJSON+addParam+replace: 0.072165
AddVariableToJSON+addVar+replace: 0.072165
AddVariableToJSON+else+replace: 0.072165
AddVariableToJSON+function+replace: 0.072165
AddVariableToJSON+if_mode1+replace: 0.072165
AddVariableToJSON+import+replace: 0.072165
AddVariableToJSON+replace+return: 0.072165
AddVariableToJSON+replace+startLoop: 0.072165
RequestGet+_status+getListLen: 0.072165
RequestPost+_status+getListLen: 0.072165
addParam+encodeMD5+ormAccessUpdate: 0.072165
addVar+encodeMD5+ormAccessUpdate: 0.072165
else+encodeMD5+ormAccessUpdate: 0.072165
encodeMD5+function+ormAccessUpdate: 0.072165
encodeMD5+if_mode1+ormAccessUpdate: 0.072165
encodeMD5+import+ormAccessUpdate: 0.072165
encodeMD5+itemFromList+ormAccessUpdate: 0.072165
encodeMD5+ormAccessUpdate+return: 0.072165
exception+getListLen+replace: 0.072165
getListLen+replace+try: 0.072165
AddVariableToJSON+RequestGet+variableFromJSON: 0.072165
RequestGet+getListLen+variableFromJSON: 0.072165
RequestPost+getListLen+variableFromJSON: 0.072165
addParam+getTimeStamp+randomString: 0.072165
addParam+ormAccessUpdate+randomString: 0.072165
addVar+getTimeStamp+randomString: 0.072165
addVar+ormAccessUpdate+randomString: 0.072165
exception+getListLen+randomString: 0.072165
function+getTimeStamp+randomString: 0.072165
function+ormAccessUpdate+randomString: 0.072165
getListLen+randomString+startLoop: 0.072165
getListLen+randomString+try: 0.072165
getTimeStamp+if_mode1+randomString: 0.072165
getTimeStamp+import+randomString: 0.072165
getTimeStamp+itemFromList+randomString: 0.072165
getTimeStamp+randomString+return: 0.072165
if_mode1+ormAccessUpdate+randomString: 0.072165
import+ormAccessUpdate+randomString: 0.072165
ormAccessUpdate+randomString+return: 0.072165
ormAccessUpdate+randomString+startLoop: 0.072165
AddVariableToJSON+addParam+randomString: 0.072165
AddVariableToJSON+addVar+randomString: 0.072165
AddVariableToJSON+else+randomString: 0.072165
AddVariableToJSON+exception+randomString: 0.072165
AddVariableToJSON+function+randomString: 0.072165
AddVariableToJSON+if_mode1+randomString: 0.072165
AddVariableToJSON+import+randomString: 0.072165
AddVariableToJSON+itemFromList+randomString: 0.072165
AddVariableToJSON+randomString+return: 0.072165
AddVariableToJSON+randomString+try: 0.072165
else+getListLen+randomString: 0.072165
else+randomString+startLoop: 0.072165
exception+getListLen+ormDirect: 0.061856
getDateTime+getListLen+ormAccessInsert: 0.061856
getDateTime+ormAccessInsert+ormAccessUpdate: 0.061856
getDateTime+ormAccessInsert+ormDirect: 0.061856
getListLen+ormDirect+return: 0.061856
getListLen+ormDirect+startLoop: 0.061856
getListLen+ormDirect+try: 0.061856
AddVariableToJSON+exception+ormAccessInsert: 0.061856
AddVariableToJSON+function+ormAccessInsert: 0.061856
AddVariableToJSON+if_mode1+ormAccessInsert: 0.061856
AddVariableToJSON+import+ormAccessInsert: 0.061856
AddVariableToJSON+ormAccessInsert+return: 0.061856
AddVariableToJSON+ormAccessInsert+try: 0.061856
RequestGet+RequestPost+replace: 0.061856
RequestGet+addParam+replace: 0.061856
RequestGet+addVar+replace: 0.061856
RequestGet+else+replace: 0.061856
RequestGet+function+replace: 0.061856
RequestGet+if_mode1+replace: 0.061856
RequestGet+import+replace: 0.061856
RequestGet+itemFromList+replace: 0.061856
RequestGet+replace+return: 0.061856
RequestGet+replace+startLoop: 0.061856
RequestPost+addParam+replace: 0.061856
RequestPost+addVar+replace: 0.061856
RequestPost+else+replace: 0.061856
RequestPost+function+replace: 0.061856
RequestPost+if_mode1+replace: 0.061856
RequestPost+import+replace: 0.061856
RequestPost+itemFromList+replace: 0.061856
RequestPost+replace+return: 0.061856
RequestPost+replace+startLoop: 0.061856
_status+addParam+ormAccessUpdate: 0.061856
_status+addParam+replace: 0.061856
_status+addVar+ormAccessUpdate: 0.061856
_status+addVar+replace: 0.061856
_status+else+replace: 0.061856
_status+exception+ormAccessUpdate: 0.061856
_status+exception+replace: 0.061856
_status+function+ormAccessUpdate: 0.061856
_status+function+replace: 0.061856
_status+if_mode1+ormAccessUpdate: 0.061856
_status+if_mode1+replace: 0.061856
_status+import+ormAccessUpdate: 0.061856
_status+import+replace: 0.061856
_status+itemFromList+ormAccessUpdate: 0.061856
_status+itemFromList+replace: 0.061856
_status+ormAccessUpdate+return: 0.061856
_status+ormAccessUpdate+startLoop: 0.061856
_status+ormAccessUpdate+try: 0.061856
_status+replace+return: 0.061856
_status+replace+startLoop: 0.061856
_status+replace+try: 0.061856
addParam+ormAccessSelect+replace: 0.061856
addVar+ormAccessSelect+replace: 0.061856
else+ormAccessSelect+replace: 0.061856
exception+ormAccessSelect+replace: 0.061856
function+ormAccessSelect+replace: 0.061856
if_mode1+ormAccessSelect+replace: 0.061856
import+ormAccessSelect+replace: 0.061856
ormAccessSelect+ormAccessUpdate+replace: 0.061856
ormAccessSelect+replace+try: 0.061856
AddVariableToJSON+addParam+getDateTime: 0.061856
AddVariableToJSON+addVar+getDateTime: 0.061856
AddVariableToJSON+encodeMD5+exception: 0.061856
AddVariableToJSON+encodeMD5+startLoop: 0.061856
AddVariableToJSON+encodeMD5+try: 0.061856
AddVariableToJSON+exception+getDateTime: 0.061856
AddVariableToJSON+function+getDateTime: 0.061856
AddVariableToJSON+getDateTime+if_mode1: 0.061856
AddVariableToJSON+getDateTime+import: 0.061856
AddVariableToJSON+getDateTime+itemFromList: 0.061856
AddVariableToJSON+getDateTime+return: 0.061856
AddVariableToJSON+getDateTime+try: 0.061856
addParam+encodeMD5+getDateTime: 0.061856
addParam+getDateTime+variableFromJSON: 0.061856
addVar+encodeMD5+getDateTime: 0.061856
addVar+getDateTime+variableFromJSON: 0.061856
else+encodeMD5+getDateTime: 0.061856
else+encodeMD5+getListLen: 0.061856
encodeMD5+exception+getDateTime: 0.061856
encodeMD5+function+getDateTime: 0.061856
encodeMD5+getDateTime+if_mode1: 0.061856
encodeMD5+getDateTime+import: 0.061856
encodeMD5+getDateTime+itemFromList: 0.061856
encodeMD5+getDateTime+return: 0.061856
encodeMD5+getDateTime+try: 0.061856
exception+getDateTime+variableFromJSON: 0.061856
function+getDateTime+variableFromJSON: 0.061856
getDateTime+if_mode1+variableFromJSON: 0.061856
getDateTime+import+variableFromJSON: 0.061856
getDateTime+itemFromList+variableFromJSON: 0.061856
getDateTime+return+variableFromJSON: 0.061856
getDateTime+startLoop+variableFromJSON: 0.061856
getDateTime+try+variableFromJSON: 0.061856
RequestGet+else+ormAccessInsert: 0.061856
RequestGet+ormAccessInsert+startLoop: 0.061856
RequestGet+ormDirect+startLoop: 0.061856
RequestPost+else+getDateTime: 0.061856
RequestPost+else+ormAccessInsert: 0.061856
RequestPost+exception+getDateTime: 0.061856
RequestPost+getDateTime+startLoop: 0.061856
RequestPost+getDateTime+try: 0.061856
RequestPost+ormAccessInsert+startLoop: 0.061856
addParam+else+encodeSHA256: 0.061856
addParam+encodeSHA256+startLoop: 0.061856
addVar+else+encodeSHA256: 0.061856
addVar+encodeSHA256+startLoop: 0.061856
else+encodeSHA256+function: 0.061856
else+encodeSHA256+if_mode1: 0.061856
else+encodeSHA256+import: 0.061856
else+encodeSHA256+itemFromList: 0.061856
else+encodeSHA256+return: 0.061856
encodeSHA256+exception+startLoop: 0.061856
encodeSHA256+itemFromList+startLoop: 0.061856
encodeSHA256+startLoop+try: 0.061856
RequestPost+getListLen+ormAccessUpdate: 0.061856
AddVariableToJSON+exception+ormDirect: 0.061856
AddVariableToJSON+function+ormDirect: 0.061856
AddVariableToJSON+if_mode1+ormDirect: 0.061856
AddVariableToJSON+import+ormDirect: 0.061856
AddVariableToJSON+ormAccessSelect+ormAccessUpdate: 0.061856
AddVariableToJSON+ormAccessSelect+ormDirect: 0.061856
AddVariableToJSON+ormDirect+return: 0.061856
AddVariableToJSON+ormDirect+try: 0.061856
addParam+ormDirect+variableFromJSON: 0.061856
addVar+ormDirect+variableFromJSON: 0.061856
itemFromList+ormDirect+variableFromJSON: 0.061856
AddVariableToJSON+RequestPost+_status: 0.061856
AddVariableToJSON+RequestPost+startLoop: 0.061856
AddVariableToJSON+_status+startLoop: 0.061856
AddVariableToJSON+exception+replace: 0.061856
AddVariableToJSON+getListLen+replace: 0.061856
AddVariableToJSON+itemFromList+replace: 0.061856
AddVariableToJSON+replace+try: 0.061856
RequestPost+addParam+encodeMD5: 0.061856
RequestPost+addVar+encodeMD5: 0.061856
RequestPost+encodeMD5+function: 0.061856
RequestPost+encodeMD5+if_mode1: 0.061856
RequestPost+encodeMD5+import: 0.061856
RequestPost+encodeMD5+itemFromList: 0.061856
RequestPost+encodeMD5+return: 0.061856
encodeMD5+exception+ormAccessUpdate: 0.061856
encodeMD5+ormAccessUpdate+startLoop: 0.061856
encodeMD5+ormAccessUpdate+try: 0.061856
AddVariableToJSON+RequestPost+variableFromJSON: 0.061856
AddVariableToJSON+replace+variableFromJSON: 0.061856
getListLen+replace+variableFromJSON: 0.061856
_status+getListLen+variableFromJSON: 0.061856
AddVariableToJSON+_status+variableFromJSON: 0.061856
exception+getTimeStamp+randomString: 0.061856
exception+ormAccessUpdate+randomString: 0.061856
getTimeStamp+randomString+try: 0.061856
itemFromList+ormAccessUpdate+randomString: 0.061856
ormAccessUpdate+randomString+try: 0.061856
addParam+encodeSHA256+randomString: 0.061856
addParam+getDateTime+randomString: 0.061856
addVar+encodeSHA256+randomString: 0.061856
addVar+getDateTime+randomString: 0.061856
encodeSHA256+function+randomString: 0.061856
encodeSHA256+if_mode1+randomString: 0.061856
encodeSHA256+import+randomString: 0.061856
encodeSHA256+itemFromList+randomString: 0.061856
encodeSHA256+randomString+return: 0.061856
function+getDateTime+randomString: 0.061856
getDateTime+if_mode1+randomString: 0.061856
getDateTime+import+randomString: 0.061856
getDateTime+itemFromList+randomString: 0.061856
getDateTime+randomString+return: 0.061856
addParam+encodeSHA256+getTimeStamp: 0.061856
addVar+encodeSHA256+getTimeStamp: 0.061856
encodeSHA256+function+getTimeStamp: 0.061856
encodeSHA256+getTimeStamp+if_mode1: 0.061856
encodeSHA256+getTimeStamp+import: 0.061856
encodeSHA256+getTimeStamp+itemFromList: 0.061856
encodeSHA256+getTimeStamp+return: 0.061856
AddVariableToJSON+encodeSHA256+exception: 0.061856
AddVariableToJSON+encodeSHA256+function: 0.061856
AddVariableToJSON+encodeSHA256+if_mode1: 0.061856
AddVariableToJSON+encodeSHA256+import: 0.061856
AddVariableToJSON+encodeSHA256+return: 0.061856
AddVariableToJSON+encodeSHA256+try: 0.061856
addParam+else+gather: 0.061856
addVar+else+gather: 0.061856
else+exception+gather: 0.061856
else+function+gather: 0.061856
else+gather+go: 0.061856
else+gather+if_mode1: 0.061856
else+gather+import: 0.061856
else+gather+itemFromList: 0.061856
else+gather+return: 0.061856
else+gather+try: 0.061856
else+getTimeStamp+randomString: 0.061856
else+getListLen+ormDirect: 0.051546
getDateTime+getListLen+ormAccessUpdate: 0.051546
getDateTime+getListLen+ormDirect: 0.051546
getListLen+ormAccessUpdate+ormDirect: 0.051546
AddVariableToJSON+ormAccessInsert+startLoop: 0.051546
function+getTimeStamp+ormAccessSelect: 0.051546
getTimeStamp+if_mode1+ormAccessSelect: 0.051546
getTimeStamp+import+ormAccessSelect: 0.051546
getTimeStamp+ormAccessSelect+return: 0.051546
RequestGet+_status+ormAccessUpdate: 0.051546
RequestGet+_status+replace: 0.051546
RequestGet+exception+replace: 0.051546
RequestGet+replace+try: 0.051546
RequestGet+replace+variableFromJSON: 0.051546
RequestPost+_status+ormAccessUpdate: 0.051546
RequestPost+_status+replace: 0.051546
RequestPost+exception+replace: 0.051546
RequestPost+replace+try: 0.051546
RequestPost+replace+variableFromJSON: 0.051546
_status+else+ormAccessUpdate: 0.051546
_status+replace+variableFromJSON: 0.051546
itemFromList+ormAccessSelect+replace: 0.051546
ormAccessSelect+replace+return: 0.051546
ormAccessSelect+replace+startLoop: 0.051546
ormAccessUpdate+replace+variableFromJSON: 0.051546
AddVariableToJSON+else+getDateTime: 0.051546
AddVariableToJSON+getDateTime+startLoop: 0.051546
AddVariableToJSON+getDateTime+variableFromJSON: 0.051546
else+getDateTime+variableFromJSON: 0.051546
encodeMD5+exception+getListLen: 0.051546
encodeMD5+getListLen+try: 0.051546
RequestGet+RequestPost+getDateTime: 0.051546
RequestGet+addParam+getDateTime: 0.051546
RequestGet+addVar+getDateTime: 0.051546
RequestGet+else+getDateTime: 0.051546
RequestGet+else+ormDirect: 0.051546
RequestGet+function+getDateTime: 0.051546
RequestGet+getDateTime+if_mode1: 0.051546
RequestGet+getDateTime+import: 0.051546
RequestGet+getDateTime+itemFromList: 0.051546
RequestGet+getDateTime+return: 0.051546
RequestGet+getDateTime+startLoop: 0.051546
RequestPost+ormDirect+startLoop: 0.051546
addParam+encodeSHA256+getDateTime: 0.051546
addVar+encodeSHA256+getDateTime: 0.051546
else+encodeSHA256+exception: 0.051546
else+encodeSHA256+try: 0.051546
encodeSHA256+function+getDateTime: 0.051546
encodeSHA256+getDateTime+if_mode1: 0.051546
encodeSHA256+getDateTime+import: 0.051546
encodeSHA256+getDateTime+itemFromList: 0.051546
encodeSHA256+getDateTime+return: 0.051546
RequestPost+getDateTime+getListLen: 0.051546
AddVariableToJSON+addParam+ormAccessInsert: 0.051546
AddVariableToJSON+addParam+ormDirect: 0.051546
AddVariableToJSON+addVar+ormAccessInsert: 0.051546
AddVariableToJSON+addVar+ormDirect: 0.051546
AddVariableToJSON+else+ormAccessInsert: 0.051546
AddVariableToJSON+itemFromList+ormAccessInsert: 0.051546
AddVariableToJSON+itemFromList+ormDirect: 0.051546
RequestGet+getListLen+ormAccessUpdate: 0.051546
AddVariableToJSON+ormDirect+startLoop: 0.051546
AddVariableToJSON+ormDirect+variableFromJSON: 0.051546
AddVariableToJSON+RequestGet+_status: 0.051546
AddVariableToJSON+RequestGet+getListLen: 0.051546
AddVariableToJSON+RequestPost+encodeMD5: 0.051546
AddVariableToJSON+RequestPost+getListLen: 0.051546
AddVariableToJSON+_status+getListLen: 0.051546
AddVariableToJSON+getListLen+ormAccessUpdate: 0.051546
RequestGet+RequestPost+encodeMD5: 0.051546
RequestGet+addParam+encodeMD5: 0.051546
RequestGet+addVar+encodeMD5: 0.051546
RequestGet+addVar+getTimeStamp: 0.051546
RequestGet+encodeMD5+function: 0.051546
RequestGet+encodeMD5+if_mode1: 0.051546
RequestGet+encodeMD5+import: 0.051546
RequestGet+encodeMD5+itemFromList: 0.051546
RequestGet+encodeMD5+return: 0.051546
RequestGet+getListLen+replace: 0.051546
RequestGet+getTimeStamp+if_mode1: 0.051546
RequestGet+getTimeStamp+import: 0.051546
RequestGet+getTimeStamp+itemFromList: 0.051546
RequestPost+addVar+getTimeStamp: 0.051546
RequestPost+else+encodeMD5: 0.051546
RequestPost+getListLen+replace: 0.051546
RequestPost+getTimeStamp+if_mode1: 0.051546
RequestPost+getTimeStamp+import: 0.051546
RequestPost+getTimeStamp+itemFromList: 0.051546
_status+addParam+getTimeStamp: 0.051546
_status+addVar+getTimeStamp: 0.051546
_status+exception+getTimeStamp: 0.051546
_status+function+getTimeStamp: 0.051546
_status+getListLen+getTimeStamp: 0.051546
_status+getListLen+replace: 0.051546
_status+getTimeStamp+if_mode1: 0.051546
_status+getTimeStamp+import: 0.051546
_status+getTimeStamp+itemFromList: 0.051546
_status+getTimeStamp+return: 0.051546
_status+getTimeStamp+startLoop: 0.051546
_status+getTimeStamp+try: 0.051546
addParam+encodeMD5+replace: 0.051546
addParam+getTimeStamp+ormAccessUpdate: 0.051546
addParam+getTimeStamp+replace: 0.051546
addVar+encodeMD5+replace: 0.051546
addVar+getTimeStamp+ormAccessUpdate: 0.051546
addVar+getTimeStamp+replace: 0.051546
encodeMD5+function+replace: 0.051546
encodeMD5+getListLen+ormAccessUpdate: 0.051546
encodeMD5+getListLen+replace: 0.051546
encodeMD5+if_mode1+replace: 0.051546
encodeMD5+import+replace: 0.051546
encodeMD5+itemFromList+replace: 0.051546
encodeMD5+replace+return: 0.051546
encodeMD5+replace+startLoop: 0.051546
exception+getTimeStamp+ormAccessUpdate: 0.051546
function+getTimeStamp+ormAccessUpdate: 0.051546
function+getTimeStamp+replace: 0.051546
getListLen+ormAccessUpdate+replace: 0.051546
getTimeStamp+if_mode1+ormAccessUpdate: 0.051546
getTimeStamp+if_mode1+replace: 0.051546
getTimeStamp+import+ormAccessUpdate: 0.051546
getTimeStamp+import+replace: 0.051546
getTimeStamp+itemFromList+ormAccessUpdate: 0.051546
getTimeStamp+itemFromList+replace: 0.051546
getTimeStamp+ormAccessUpdate+return: 0.051546
getTimeStamp+ormAccessUpdate+startLoop: 0.051546
getTimeStamp+ormAccessUpdate+try: 0.051546
getTimeStamp+replace+return: 0.051546
_status+addParam+randomString: 0.051546
_status+addVar+randomString: 0.051546
_status+exception+randomString: 0.051546
_status+function+randomString: 0.051546
_status+if_mode1+randomString: 0.051546
_status+import+randomString: 0.051546
_status+itemFromList+randomString: 0.051546
_status+randomString+return: 0.051546
_status+randomString+try: 0.051546
getListLen+getTimeStamp+randomString: 0.051546
getListLen+ormAccessUpdate+randomString: 0.051546
getTimeStamp+randomString+startLoop: 0.051546
getDateTime+randomString+startLoop: 0.051546
AddVariableToJSON+addParam+encodeSHA256: 0.051546
AddVariableToJSON+addVar+encodeSHA256: 0.051546
AddVariableToJSON+encodeSHA256+itemFromList: 0.051546
AddVariableToJSON+encodeSHA256+startLoop: 0.051546
AddVariableToJSON+encodeSHA256+variableFromJSON: 0.051546
AddVariableToJSON+randomString+startLoop: 0.051546
AddVariableToJSON+randomString+variableFromJSON: 0.051546
addParam+randomString+variableFromJSON: 0.051546
addVar+randomString+variableFromJSON: 0.051546
else+encodeSHA256+randomString: 0.051546
else+gather+startLoop: 0.051546
else+getDateTime+randomString: 0.051546
else+randomString+variableFromJSON: 0.051546
encodeSHA256+exception+variableFromJSON: 0.051546
encodeSHA256+function+variableFromJSON: 0.051546
encodeSHA256+if_mode1+variableFromJSON: 0.051546
encodeSHA256+import+variableFromJSON: 0.051546
encodeSHA256+return+variableFromJSON: 0.051546
encodeSHA256+startLoop+variableFromJSON: 0.051546
encodeSHA256+try+variableFromJSON: 0.051546
exception+getDateTime+randomString: 0.051546
exception+randomString+variableFromJSON: 0.051546
function+randomString+variableFromJSON: 0.051546
getDateTime+randomString+try: 0.051546
if_mode1+randomString+variableFromJSON: 0.051546
import+randomString+variableFromJSON: 0.051546
itemFromList+randomString+variableFromJSON: 0.051546
randomString+return+variableFromJSON: 0.051546
randomString+try+variableFromJSON: 0.051546
addParam+ormAccessSelect+randomString: 0.051546
addVar+ormAccessSelect+randomString: 0.051546
else+ormAccessSelect+randomString: 0.051546
function+ormAccessSelect+randomString: 0.051546
getListLen+ormAccessSelect+randomString: 0.051546
if_mode1+ormAccessSelect+randomString: 0.051546
import+ormAccessSelect+randomString: 0.051546
itemFromList+ormAccessSelect+randomString: 0.051546
ormAccessSelect+randomString+return: 0.051546
else+ormAccessUpdate+randomString: 0.051546
addParam+getTimeStamp+go: 0.051546
addParam+go+ormAccessSelect: 0.051546
addVar+getTimeStamp+go: 0.051546
addVar+go+ormAccessSelect: 0.051546
else+getTimeStamp+go: 0.051546
else+go+ormAccessSelect: 0.051546
exception+getTimeStamp+go: 0.051546
exception+go+ormAccessSelect: 0.051546
function+getTimeStamp+go: 0.051546
function+go+ormAccessSelect: 0.051546
getTimeStamp+go+if_mode1: 0.051546
getTimeStamp+go+import: 0.051546
getTimeStamp+go+itemFromList: 0.051546
getTimeStamp+go+return: 0.051546
getTimeStamp+go+try: 0.051546
go+if_mode1+ormAccessSelect: 0.051546
go+import+ormAccessSelect: 0.051546
go+itemFromList+ormAccessSelect: 0.051546
go+ormAccessSelect+return: 0.051546
go+ormAccessSelect+startLoop: 0.051546
go+ormAccessSelect+try: 0.051546
getListLen+ormAccessInsert+ormDirect: 0.041237
AddVariableToJSON+ormAccessInsert+ormAccessSelect: 0.041237
AddVariableToJSON+ormAccessInsert+variableFromJSON: 0.041237
exception+getTimeStamp+ormAccessSelect: 0.041237
exception+ormAccessInsert+variableFromJSON: 0.041237
function+ormAccessInsert+variableFromJSON: 0.041237
getTimeStamp+ormAccessSelect+startLoop: 0.041237
getTimeStamp+ormAccessSelect+try: 0.041237
if_mode1+ormAccessInsert+variableFromJSON: 0.041237
import+ormAccessInsert+variableFromJSON: 0.041237
ormAccessInsert+return+variableFromJSON: 0.041237
ormAccessInsert+startLoop+variableFromJSON: 0.041237
ormAccessInsert+try+variableFromJSON: 0.041237
RequestGet+ormAccessUpdate+replace: 0.041237
RequestPost+ormAccessUpdate+replace: 0.041237
_status+addParam+ormAccessSelect: 0.041237
_status+addVar+ormAccessSelect: 0.041237
_status+else+ormAccessSelect: 0.041237
_status+exception+ormAccessSelect: 0.041237
_status+function+ormAccessSelect: 0.041237
_status+if_mode1+ormAccessSelect: 0.041237
_status+import+ormAccessSelect: 0.041237
_status+itemFromList+ormAccessSelect: 0.041237
_status+ormAccessSelect+return: 0.041237
_status+ormAccessSelect+startLoop: 0.041237
_status+ormAccessSelect+try: 0.041237
_status+ormAccessUpdate+replace: 0.041237
AddVariableToJSON+encodeMD5+getDateTime: 0.041237
AddVariableToJSON+encodeMD5+getListLen: 0.041237
AddVariableToJSON+encodeMD5+variableFromJSON: 0.041237
AddVariableToJSON+getListLen+getTimeStamp: 0.041237
AddVariableToJSON+getListLen+ormAccessSelect: 0.041237
addParam+encodeMD5+getTimeStamp: 0.041237
addParam+encodeMD5+ormAccessSelect: 0.041237
addParam+encodeMD5+variableFromJSON: 0.041237
addParam+getTimeStamp+ormAccessSelect: 0.041237
addVar+encodeMD5+getTimeStamp: 0.041237
addVar+encodeMD5+ormAccessSelect: 0.041237
addVar+encodeMD5+variableFromJSON: 0.041237
addVar+getTimeStamp+ormAccessSelect: 0.041237
else+encodeMD5+getTimeStamp: 0.041237
else+encodeMD5+ormAccessSelect: 0.041237
else+encodeMD5+variableFromJSON: 0.041237
else+getTimeStamp+ormAccessSelect: 0.041237
encodeMD5+exception+getTimeStamp: 0.041237
encodeMD5+exception+ormAccessSelect: 0.041237
encodeMD5+function+getTimeStamp: 0.041237
encodeMD5+function+ormAccessSelect: 0.041237
encodeMD5+function+variableFromJSON: 0.041237
encodeMD5+getDateTime+startLoop: 0.041237
encodeMD5+getListLen+ormAccessSelect: 0.041237
encodeMD5+getTimeStamp+if_mode1: 0.041237
encodeMD5+getTimeStamp+import: 0.041237
encodeMD5+getTimeStamp+itemFromList: 0.041237
encodeMD5+getTimeStamp+return: 0.041237
encodeMD5+getTimeStamp+startLoop: 0.041237
encodeMD5+getTimeStamp+try: 0.041237
encodeMD5+if_mode1+ormAccessSelect: 0.041237
encodeMD5+if_mode1+variableFromJSON: 0.041237
encodeMD5+import+ormAccessSelect: 0.041237
encodeMD5+import+variableFromJSON: 0.041237
encodeMD5+itemFromList+ormAccessSelect: 0.041237
encodeMD5+itemFromList+variableFromJSON: 0.041237
encodeMD5+ormAccessSelect+return: 0.041237
encodeMD5+ormAccessSelect+startLoop: 0.041237
encodeMD5+ormAccessSelect+try: 0.041237
encodeMD5+return+variableFromJSON: 0.041237
encodeMD5+startLoop+variableFromJSON: 0.041237
getDateTime+getListLen+variableFromJSON: 0.041237
getListLen+getTimeStamp+ormAccessSelect: 0.041237
getListLen+getTimeStamp+variableFromJSON: 0.041237
getTimeStamp+itemFromList+ormAccessSelect: 0.041237
addParam+getDateTime+replace: 0.041237
addParam+ormAccessInsert+replace: 0.041237
addVar+getDateTime+replace: 0.041237
addVar+ormAccessInsert+replace: 0.041237
else+getDateTime+replace: 0.041237
else+ormAccessInsert+replace: 0.041237
exception+getDateTime+replace: 0.041237
exception+ormAccessInsert+replace: 0.041237
function+getDateTime+replace: 0.041237
function+ormAccessInsert+replace: 0.041237
getDateTime+if_mode1+replace: 0.041237
getDateTime+import+replace: 0.041237
getDateTime+replace+try: 0.041237
if_mode1+ormAccessInsert+replace: 0.041237
import+ormAccessInsert+replace: 0.041237
ormAccessInsert+replace+startLoop: 0.041237
ormAccessInsert+replace+try: 0.041237
RequestGet+exception+getDateTime: 0.041237
RequestGet+getDateTime+ormAccessInsert: 0.041237
RequestGet+getDateTime+try: 0.041237
RequestPost+addParam+encodeSHA256: 0.041237
RequestPost+addVar+encodeSHA256: 0.041237
RequestPost+else+ormDirect: 0.041237
RequestPost+encodeSHA256+function: 0.041237
RequestPost+encodeSHA256+if_mode1: 0.041237
RequestPost+encodeSHA256+import: 0.041237
RequestPost+encodeSHA256+itemFromList: 0.041237
RequestPost+encodeSHA256+return: 0.041237
RequestPost+getDateTime+ormAccessInsert: 0.041237
RequestPost+getDateTime+ormAccessSelect: 0.041237
RequestPost+getDateTime+ormAccessUpdate: 0.041237
else+encodeSHA256+getDateTime: 0.041237
else+encodeSHA256+startLoop: 0.041237
encodeSHA256+exception+getDateTime: 0.041237
encodeSHA256+getDateTime+startLoop: 0.041237
encodeSHA256+getDateTime+try: 0.041237
RequestPost+getListLen+ormAccessSelect: 0.041237
AddVariableToJSON+RequestGet+ormAccessUpdate: 0.041237
AddVariableToJSON+RequestPost+ormAccessUpdate: 0.041237
RequestGet+getDateTime+getListLen: 0.041237
RequestGet+getListLen+ormAccessSelect: 0.041237
else+ormDirect+variableFromJSON: 0.041237
AddVariableToJSON+RequestGet+encodeMD5: 0.041237
AddVariableToJSON+RequestGet+replace: 0.041237
AddVariableToJSON+RequestPost+replace: 0.041237
AddVariableToJSON+_status+replace: 0.041237
AddVariableToJSON+encodeMD5+ormAccessUpdate: 0.041237
AddVariableToJSON+ormAccessUpdate+replace: 0.041237
RequestGet+RequestPost+getTimeStamp: 0.041237
RequestGet+addParam+getTimeStamp: 0.041237
RequestGet+else+encodeMD5: 0.041237
RequestGet+else+getTimeStamp: 0.041237
RequestGet+encodeMD5+startLoop: 0.041237
RequestGet+exception+getTimeStamp: 0.041237
RequestGet+function+getTimeStamp: 0.041237
RequestGet+getListLen+getTimeStamp: 0.041237
RequestGet+getTimeStamp+return: 0.041237
RequestGet+getTimeStamp+startLoop: 0.041237
RequestGet+getTimeStamp+try: 0.041237
RequestPost+addParam+getTimeStamp: 0.041237
RequestPost+encodeMD5+exception: 0.041237
RequestPost+encodeMD5+startLoop: 0.041237
RequestPost+encodeMD5+try: 0.041237
RequestPost+function+getTimeStamp: 0.041237
RequestPost+getListLen+getTimeStamp: 0.041237
RequestPost+getTimeStamp+return: 0.041237
RequestPost+getTimeStamp+startLoop: 0.041237
_status+else+getTimeStamp: 0.041237
_status+getListLen+ormAccessUpdate: 0.041237
else+encodeMD5+replace: 0.041237
else+getTimeStamp+ormAccessUpdate: 0.041237
else+getTimeStamp+replace: 0.041237
encodeMD5+ormAccessUpdate+replace: 0.041237
exception+getTimeStamp+replace: 0.041237
getListLen+getTimeStamp+ormAccessUpdate: 0.041237
getTimeStamp+replace+startLoop: 0.041237
getTimeStamp+replace+try: 0.041237
getListLen+ormAccessUpdate+variableFromJSON: 0.041237
RequestGet+addParam+randomString: 0.041237
RequestGet+addVar+randomString: 0.041237
RequestGet+exception+randomString: 0.041237
RequestGet+function+randomString: 0.041237
RequestGet+if_mode1+randomString: 0.041237
RequestGet+import+randomString: 0.041237
RequestGet+itemFromList+randomString: 0.041237
RequestGet+randomString+return: 0.041237
RequestGet+randomString+try: 0.041237
RequestPost+_status+randomString: 0.041237
RequestPost+addParam+randomString: 0.041237
RequestPost+addVar+randomString: 0.041237
RequestPost+exception+randomString: 0.041237
RequestPost+function+randomString: 0.041237
RequestPost+if_mode1+randomString: 0.041237
RequestPost+import+randomString: 0.041237
RequestPost+itemFromList+randomString: 0.041237
RequestPost+randomString+return: 0.041237
RequestPost+randomString+try: 0.041237
_status+getListLen+randomString: 0.041237
_status+randomString+startLoop: 0.041237
getTimeStamp+ormAccessUpdate+randomString: 0.041237
RequestPost+_status+getDateTime: 0.041237
_status+addParam+getDateTime: 0.041237
_status+addVar+getDateTime: 0.041237
_status+else+getDateTime: 0.041237
_status+exception+getDateTime: 0.041237
_status+function+getDateTime: 0.041237
_status+getDateTime+if_mode1: 0.041237
_status+getDateTime+import: 0.041237
_status+getDateTime+itemFromList: 0.041237
_status+getDateTime+return: 0.041237
_status+getDateTime+try: 0.041237
encodeSHA256+getDateTime+randomString: 0.041237
encodeSHA256+randomString+startLoop: 0.041237
AddVariableToJSON+_status+randomString: 0.041237
AddVariableToJSON+addParam+gather: 0.041237
AddVariableToJSON+addParam+go: 0.041237
AddVariableToJSON+addVar+gather: 0.041237
AddVariableToJSON+addVar+go: 0.041237
AddVariableToJSON+else+encodeSHA256: 0.041237
AddVariableToJSON+encodeSHA256+randomString: 0.041237
AddVariableToJSON+exception+gather: 0.041237
AddVariableToJSON+exception+go: 0.041237
AddVariableToJSON+function+gather: 0.041237
AddVariableToJSON+function+go: 0.041237
AddVariableToJSON+gather+go: 0.041237
AddVariableToJSON+gather+if_mode1: 0.041237
AddVariableToJSON+gather+import: 0.041237
AddVariableToJSON+gather+itemFromList: 0.041237
AddVariableToJSON+gather+return: 0.041237
AddVariableToJSON+gather+try: 0.041237
AddVariableToJSON+getDateTime+randomString: 0.041237
AddVariableToJSON+getListLen+randomString: 0.041237
AddVariableToJSON+go+if_mode1: 0.041237
AddVariableToJSON+go+import: 0.041237
AddVariableToJSON+go+itemFromList: 0.041237
AddVariableToJSON+go+return: 0.041237
AddVariableToJSON+go+try: 0.041237
RequestGet+addParam+go: 0.041237
RequestGet+addVar+go: 0.041237
RequestGet+exception+go: 0.041237
RequestGet+function+go: 0.041237
RequestGet+go+if_mode1: 0.041237
RequestGet+go+import: 0.041237
RequestGet+go+itemFromList: 0.041237
RequestGet+go+return: 0.041237
RequestGet+go+try: 0.041237
_status+addVar+go: 0.041237
_status+else+randomString: 0.041237
_status+function+go: 0.041237
_status+go+if_mode1: 0.041237
_status+go+import: 0.041237
_status+go+return: 0.041237
_status+go+startLoop: 0.041237
addParam+encodeSHA256+variableFromJSON: 0.041237
addParam+gather+getListLen: 0.041237
addParam+go+randomString: 0.041237
addParam+go+variableFromJSON: 0.041237
addParam+ormAccessInsert+randomString: 0.041237
addVar+encodeSHA256+variableFromJSON: 0.041237
addVar+gather+getListLen: 0.041237
addVar+go+randomString: 0.041237
addVar+go+variableFromJSON: 0.041237
addVar+ormAccessInsert+randomString: 0.041237
else+gather+getListLen: 0.041237
else+go+randomString: 0.041237
else+go+variableFromJSON: 0.041237
else+ormAccessInsert+randomString: 0.041237
encodeSHA256+exception+randomString: 0.041237
encodeSHA256+itemFromList+variableFromJSON: 0.041237
encodeSHA256+randomString+try: 0.041237
exception+gather+getListLen: 0.041237
exception+go+randomString: 0.041237
exception+go+variableFromJSON: 0.041237
exception+ormAccessInsert+randomString: 0.041237
function+gather+getListLen: 0.041237
function+go+randomString: 0.041237
function+go+variableFromJSON: 0.041237
function+ormAccessInsert+randomString: 0.041237
gather+getListLen+go: 0.041237
gather+getListLen+if_mode1: 0.041237
gather+getListLen+import: 0.041237
gather+getListLen+itemFromList: 0.041237
gather+getListLen+return: 0.041237
gather+getListLen+startLoop: 0.041237
gather+getListLen+try: 0.041237
getListLen+ormAccessInsert+randomString: 0.041237
go+if_mode1+randomString: 0.041237
go+if_mode1+variableFromJSON: 0.041237
go+import+randomString: 0.041237
go+import+variableFromJSON: 0.041237
go+itemFromList+randomString: 0.041237
go+itemFromList+variableFromJSON: 0.041237
go+randomString+return: 0.041237
go+randomString+try: 0.041237
go+return+variableFromJSON: 0.041237
go+try+variableFromJSON: 0.041237
if_mode1+ormAccessInsert+randomString: 0.041237
import+ormAccessInsert+randomString: 0.041237
itemFromList+ormAccessInsert+randomString: 0.041237
ormAccessInsert+randomString+return: 0.041237
ormAccessInsert+randomString+startLoop: 0.041237
ormAccessInsert+randomString+try: 0.041237
randomString+startLoop+variableFromJSON: 0.041237
AddVariableToJSON+ormAccessUpdate+randomString: 0.041237
addParam+encodeMD5+randomString: 0.041237
addVar+encodeMD5+randomString: 0.041237
else+encodeMD5+randomString: 0.041237
encodeMD5+exception+randomString: 0.041237
encodeMD5+function+randomString: 0.041237
encodeMD5+getDateTime+ormAccessUpdate: 0.041237
encodeMD5+getDateTime+randomString: 0.041237
encodeMD5+if_mode1+randomString: 0.041237
encodeMD5+import+randomString: 0.041237
encodeMD5+itemFromList+randomString: 0.041237
encodeMD5+randomString+return: 0.041237
encodeMD5+randomString+try: 0.041237
exception+ormAccessSelect+randomString: 0.041237
ormAccessSelect+randomString+startLoop: 0.041237
ormAccessSelect+randomString+try: 0.041237
addParam+gather+getTimeStamp: 0.041237
addVar+gather+getTimeStamp: 0.041237
else+gather+getTimeStamp: 0.041237
exception+gather+getTimeStamp: 0.041237
function+gather+getTimeStamp: 0.041237
gather+getTimeStamp+go: 0.041237
gather+getTimeStamp+if_mode1: 0.041237
gather+getTimeStamp+import: 0.041237
gather+getTimeStamp+itemFromList: 0.041237
gather+getTimeStamp+return: 0.041237
gather+getTimeStamp+try: 0.041237
getListLen+getTimeStamp+go: 0.041237
getTimeStamp+go+startLoop: 0.041237
RequestGet+_status+ormAccessSelect: 0.030928
RequestGet+ormAccessSelect+variableFromJSON: 0.030928
RequestGet+ormAccessUpdate+variableFromJSON: 0.030928
RequestPost+_status+ormAccessSelect: 0.030928
RequestPost+ormAccessUpdate+variableFromJSON: 0.030928
_status+ormAccessSelect+ormAccessUpdate: 0.030928
_status+ormAccessUpdate+variableFromJSON: 0.030928
ormAccessSelect+replace+variableFromJSON: 0.030928
AddVariableToJSON+encodeMD5+getTimeStamp: 0.030928
AddVariableToJSON+getDateTime+getListLen: 0.030928
AddVariableToJSON+getDateTime+ormAccessSelect: 0.030928
addParam+getDateTime+getTimeStamp: 0.030928
addVar+getDateTime+getTimeStamp: 0.030928
else+getDateTime+getTimeStamp: 0.030928
encodeMD5+exception+variableFromJSON: 0.030928
encodeMD5+getDateTime+getListLen: 0.030928
encodeMD5+getDateTime+getTimeStamp: 0.030928
encodeMD5+getDateTime+ormAccessSelect: 0.030928
encodeMD5+getDateTime+variableFromJSON: 0.030928
encodeMD5+getListLen+getTimeStamp: 0.030928
encodeMD5+getListLen+variableFromJSON: 0.030928
encodeMD5+try+variableFromJSON: 0.030928
exception+getDateTime+getTimeStamp: 0.030928
function+getDateTime+getTimeStamp: 0.030928
getDateTime+getTimeStamp+if_mode1: 0.030928
getDateTime+getTimeStamp+import: 0.030928
getDateTime+getTimeStamp+itemFromList: 0.030928
getDateTime+getTimeStamp+return: 0.030928
getDateTime+getTimeStamp+startLoop: 0.030928
getDateTime+getTimeStamp+try: 0.030928
getDateTime+ormAccessSelect+variableFromJSON: 0.030928
getListLen+ormAccessSelect+variableFromJSON: 0.030928
addParam+ormDirect+replace: 0.030928
addVar+ormDirect+replace: 0.030928
else+ormDirect+replace: 0.030928
exception+ormDirect+replace: 0.030928
function+ormDirect+replace: 0.030928
getDateTime+ormAccessInsert+replace: 0.030928
getDateTime+ormAccessSelect+replace: 0.030928
getDateTime+ormAccessUpdate+replace: 0.030928
getDateTime+replace+startLoop: 0.030928
if_mode1+ormDirect+replace: 0.030928
import+ormDirect+replace: 0.030928
ormAccessInsert+ormAccessSelect+replace: 0.030928
ormAccessInsert+ormAccessUpdate+replace: 0.030928
ormAccessSelect+ormDirect+replace: 0.030928
ormAccessUpdate+ormDirect+replace: 0.030928
ormDirect+replace+try: 0.030928
RequestGet+getDateTime+ormAccessSelect: 0.030928
RequestGet+getDateTime+ormAccessUpdate: 0.030928
RequestPost+else+encodeSHA256: 0.030928
RequestPost+encodeSHA256+exception: 0.030928
RequestPost+encodeSHA256+getDateTime: 0.030928
RequestPost+encodeSHA256+try: 0.030928
RequestPost+getDateTime+ormDirect: 0.030928
addParam+encodeSHA256+ormAccessUpdate: 0.030928
addVar+encodeSHA256+ormAccessUpdate: 0.030928
else+encodeSHA256+ormAccessUpdate: 0.030928
encodeSHA256+exception+ormAccessUpdate: 0.030928
encodeSHA256+function+ormAccessSelect: 0.030928
encodeSHA256+function+ormAccessUpdate: 0.030928
encodeSHA256+if_mode1+ormAccessSelect: 0.030928
encodeSHA256+if_mode1+ormAccessUpdate: 0.030928
encodeSHA256+import+ormAccessSelect: 0.030928
encodeSHA256+import+ormAccessUpdate: 0.030928
encodeSHA256+itemFromList+ormAccessUpdate: 0.030928
encodeSHA256+ormAccessSelect+return: 0.030928
encodeSHA256+ormAccessUpdate+return: 0.030928
encodeSHA256+ormAccessUpdate+startLoop: 0.030928
encodeSHA256+ormAccessUpdate+try: 0.030928
AddVariableToJSON+RequestGet+ormAccessInsert: 0.030928
AddVariableToJSON+RequestGet+ormAccessSelect: 0.030928
AddVariableToJSON+RequestPost+ormAccessInsert: 0.030928
AddVariableToJSON+else+ormDirect: 0.030928
AddVariableToJSON+ormAccessInsert+ormAccessUpdate: 0.030928
AddVariableToJSON+ormAccessUpdate+ormDirect: 0.030928
RequestGet+_status+ormAccessInsert: 0.030928
RequestPost+_status+ormAccessInsert: 0.030928
_status+addParam+ormAccessInsert: 0.030928
_status+addVar+ormAccessInsert: 0.030928
_status+else+ormAccessInsert: 0.030928
_status+exception+ormAccessInsert: 0.030928
_status+function+ormAccessInsert: 0.030928
_status+if_mode1+ormAccessInsert: 0.030928
_status+import+ormAccessInsert: 0.030928
_status+itemFromList+ormAccessInsert: 0.030928
_status+ormAccessInsert+return: 0.030928
_status+ormAccessInsert+startLoop: 0.030928
_status+ormAccessInsert+try: 0.030928
RequestGet+getListLen+ormAccessInsert: 0.030928
RequestPost+getListLen+ormAccessInsert: 0.030928
getDateTime+itemFromList+replace: 0.030928
getDateTime+replace+return: 0.030928
ormAccessUpdate+ormDirect+variableFromJSON: 0.030928
AddVariableToJSON+_status+encodeMD5: 0.030928
AddVariableToJSON+_status+ormAccessUpdate: 0.030928
AddVariableToJSON+encodeMD5+replace: 0.030928
AddVariableToJSON+getTimeStamp+ormAccessUpdate: 0.030928
AddVariableToJSON+getTimeStamp+replace: 0.030928
RequestGet+_status+getTimeStamp: 0.030928
RequestGet+encodeMD5+exception: 0.030928
RequestGet+encodeMD5+getListLen: 0.030928
RequestGet+encodeMD5+ormAccessUpdate: 0.030928
RequestGet+encodeMD5+replace: 0.030928
RequestGet+encodeMD5+try: 0.030928
RequestPost+_status+encodeMD5: 0.030928
RequestPost+_status+getTimeStamp: 0.030928
RequestPost+else+getTimeStamp: 0.030928
RequestPost+encodeMD5+getListLen: 0.030928
RequestPost+encodeMD5+ormAccessUpdate: 0.030928
RequestPost+encodeMD5+replace: 0.030928
RequestPost+exception+getTimeStamp: 0.030928
RequestPost+getTimeStamp+try: 0.030928
_status+addParam+encodeMD5: 0.030928
_status+addVar+encodeMD5: 0.030928
_status+else+encodeMD5: 0.030928
_status+encodeMD5+exception: 0.030928
_status+encodeMD5+function: 0.030928
_status+encodeMD5+if_mode1: 0.030928
_status+encodeMD5+import: 0.030928
_status+encodeMD5+itemFromList: 0.030928
_status+encodeMD5+return: 0.030928
_status+encodeMD5+try: 0.030928
_status+getTimeStamp+ormAccessUpdate: 0.030928
_status+getTimeStamp+replace: 0.030928
encodeMD5+exception+replace: 0.030928
encodeMD5+getTimeStamp+ormAccessUpdate: 0.030928
encodeMD5+replace+try: 0.030928
getListLen+getTimeStamp+replace: 0.030928
encodeMD5+ormAccessUpdate+variableFromJSON: 0.030928
getTimeStamp+replace+variableFromJSON: 0.030928
RequestGet+RequestPost+randomString: 0.030928
RequestGet+_status+randomString: 0.030928
RequestGet+getListLen+randomString: 0.030928
RequestGet+randomString+startLoop: 0.030928
RequestPost+getListLen+randomString: 0.030928
RequestPost+randomString+startLoop: 0.030928
_status+ormAccessUpdate+randomString: 0.030928
RequestGet+_status+getDateTime: 0.030928
RequestGet+getDateTime+variableFromJSON: 0.030928
RequestPost+getDateTime+variableFromJSON: 0.030928
_status+getDateTime+getListLen: 0.030928
_status+getDateTime+startLoop: 0.030928
_status+getDateTime+variableFromJSON: 0.030928
AddVariableToJSON+RequestGet+gather: 0.030928
AddVariableToJSON+RequestGet+go: 0.030928
AddVariableToJSON+RequestGet+randomString: 0.030928
AddVariableToJSON+RequestPost+getDateTime: 0.030928
AddVariableToJSON+RequestPost+randomString: 0.030928
AddVariableToJSON+_status+encodeSHA256: 0.030928
AddVariableToJSON+_status+getDateTime: 0.030928
AddVariableToJSON+else+gather: 0.030928
AddVariableToJSON+else+go: 0.030928
AddVariableToJSON+encodeSHA256+getDateTime: 0.030928
AddVariableToJSON+gather+startLoop: 0.030928
AddVariableToJSON+gather+variableFromJSON: 0.030928
AddVariableToJSON+getListLen+ormAccessInsert: 0.030928
AddVariableToJSON+go+startLoop: 0.030928
AddVariableToJSON+go+variableFromJSON: 0.030928
AddVariableToJSON+ormAccessInsert+randomString: 0.030928
AddVariableToJSON+randomString+replace: 0.030928
RequestGet+addParam+gather: 0.030928
RequestGet+addVar+gather: 0.030928
RequestGet+else+go: 0.030928
RequestGet+else+randomString: 0.030928
RequestGet+exception+gather: 0.030928
RequestGet+function+gather: 0.030928
RequestGet+gather+go: 0.030928
RequestGet+gather+if_mode1: 0.030928
RequestGet+gather+import: 0.030928
RequestGet+gather+itemFromList: 0.030928
RequestGet+gather+return: 0.030928
RequestGet+gather+try: 0.030928
RequestGet+go+startLoop: 0.030928
RequestGet+randomString+variableFromJSON: 0.030928
RequestPost+addVar+go: 0.030928
RequestPost+else+randomString: 0.030928
RequestPost+function+go: 0.030928
RequestPost+getDateTime+randomString: 0.030928
RequestPost+go+if_mode1: 0.030928
RequestPost+go+import: 0.030928
RequestPost+go+return: 0.030928
RequestPost+go+startLoop: 0.030928
_status+addParam+encodeSHA256: 0.030928
_status+addParam+gather: 0.030928
_status+addParam+go: 0.030928
_status+addVar+encodeSHA256: 0.030928
_status+addVar+gather: 0.030928
_status+else+encodeSHA256: 0.030928
_status+else+gather: 0.030928
_status+else+go: 0.030928
_status+encodeSHA256+exception: 0.030928
_status+encodeSHA256+function: 0.030928
_status+encodeSHA256+if_mode1: 0.030928
_status+encodeSHA256+import: 0.030928
_status+encodeSHA256+itemFromList: 0.030928
_status+encodeSHA256+randomString: 0.030928
_status+encodeSHA256+return: 0.030928
_status+encodeSHA256+try: 0.030928
_status+exception+gather: 0.030928
_status+exception+go: 0.030928
_status+function+gather: 0.030928
_status+gather+go: 0.030928
_status+gather+if_mode1: 0.030928
_status+gather+import: 0.030928
_status+gather+itemFromList: 0.030928
_status+gather+return: 0.030928
_status+gather+startLoop: 0.030928
_status+gather+try: 0.030928
_status+getDateTime+randomString: 0.030928
_status+go+itemFromList: 0.030928
_status+go+try: 0.030928
_status+randomString+replace: 0.030928
_status+randomString+variableFromJSON: 0.030928
addParam+encodeSHA256+getListLen: 0.030928
addParam+encodeSHA256+replace: 0.030928
addParam+gather+randomString: 0.030928
addParam+gather+variableFromJSON: 0.030928
addParam+getDateTime+go: 0.030928
addParam+go+ormAccessInsert: 0.030928
addParam+ormAccessInsert+variableFromJSON: 0.030928
addParam+randomString+replace: 0.030928
addVar+encodeSHA256+getListLen: 0.030928
addVar+encodeSHA256+replace: 0.030928
addVar+gather+randomString: 0.030928
addVar+gather+variableFromJSON: 0.030928
addVar+getDateTime+go: 0.030928
addVar+go+ormAccessInsert: 0.030928
addVar+ormAccessInsert+variableFromJSON: 0.030928
addVar+randomString+replace: 0.030928
else+encodeSHA256+getListLen: 0.030928
else+encodeSHA256+variableFromJSON: 0.030928
else+gather+randomString: 0.030928
else+gather+variableFromJSON: 0.030928
else+ormAccessInsert+variableFromJSON: 0.030928
else+randomString+replace: 0.030928
encodeSHA256+function+getListLen: 0.030928
encodeSHA256+function+replace: 0.030928
encodeSHA256+getListLen+if_mode1: 0.030928
encodeSHA256+getListLen+import: 0.030928
encodeSHA256+getListLen+itemFromList: 0.030928
encodeSHA256+getListLen+randomString: 0.030928
encodeSHA256+getListLen+return: 0.030928
encodeSHA256+if_mode1+replace: 0.030928
encodeSHA256+import+replace: 0.030928
encodeSHA256+itemFromList+replace: 0.030928
encodeSHA256+randomString+variableFromJSON: 0.030928
encodeSHA256+replace+return: 0.030928
exception+gather+randomString: 0.030928
exception+gather+variableFromJSON: 0.030928
exception+getDateTime+go: 0.030928
exception+go+ormAccessInsert: 0.030928
exception+randomString+replace: 0.030928
function+gather+randomString: 0.030928
function+gather+variableFromJSON: 0.030928
function+getDateTime+go: 0.030928
function+go+ormAccessInsert: 0.030928
function+randomString+replace: 0.030928
gather+go+randomString: 0.030928
gather+go+variableFromJSON: 0.030928
gather+if_mode1+randomString: 0.030928
gather+if_mode1+variableFromJSON: 0.030928
gather+import+randomString: 0.030928
gather+import+variableFromJSON: 0.030928
gather+itemFromList+randomString: 0.030928
gather+itemFromList+variableFromJSON: 0.030928
gather+randomString+return: 0.030928
gather+randomString+try: 0.030928
gather+return+variableFromJSON: 0.030928
gather+try+variableFromJSON: 0.030928
getDateTime+getListLen+randomString: 0.030928
getDateTime+go+if_mode1: 0.030928
getDateTime+go+import: 0.030928
getDateTime+go+itemFromList: 0.030928
getDateTime+go+return: 0.030928
getDateTime+go+startLoop: 0.030928
getDateTime+go+try: 0.030928
getDateTime+ormAccessInsert+randomString: 0.030928
getDateTime+randomString+variableFromJSON: 0.030928
getListLen+go+randomString: 0.030928
getListLen+go+variableFromJSON: 0.030928
getListLen+ormAccessInsert+replace: 0.030928
getListLen+randomString+replace: 0.030928
getListLen+randomString+variableFromJSON: 0.030928
go+if_mode1+ormAccessInsert: 0.030928
go+import+ormAccessInsert: 0.030928
go+itemFromList+ormAccessInsert: 0.030928
go+ormAccessInsert+return: 0.030928
go+ormAccessInsert+startLoop: 0.030928
go+ormAccessInsert+try: 0.030928
go+randomString+startLoop: 0.030928
go+startLoop+variableFromJSON: 0.030928
if_mode1+randomString+replace: 0.030928
import+randomString+replace: 0.030928
itemFromList+ormAccessInsert+replace: 0.030928
itemFromList+ormAccessInsert+variableFromJSON: 0.030928
itemFromList+randomString+replace: 0.030928
ormAccessInsert+replace+return: 0.030928
randomString+replace+return: 0.030928
randomString+replace+startLoop: 0.030928
randomString+replace+try: 0.030928
randomString+replace+variableFromJSON: 0.030928
else+encodeSHA256+getTimeStamp: 0.030928
encodeSHA256+getTimeStamp+randomString: 0.030928
getTimeStamp+ormAccessSelect+randomString: 0.030928
AddVariableToJSON+encodeSHA256+getTimeStamp: 0.030928
encodeSHA256+exception+getTimeStamp: 0.030928
encodeSHA256+getTimeStamp+startLoop: 0.030928
encodeSHA256+getTimeStamp+try: 0.030928
encodeSHA256+getTimeStamp+variableFromJSON: 0.030928
AddVariableToJSON+encodeMD5+randomString: 0.030928
addParam+encodeMD5+ormAccessInsert: 0.030928
addVar+encodeMD5+ormAccessInsert: 0.030928
else+encodeMD5+ormAccessInsert: 0.030928
encodeMD5+exception+ormAccessInsert: 0.030928
encodeMD5+function+ormAccessInsert: 0.030928
encodeMD5+getListLen+ormAccessInsert: 0.030928
encodeMD5+if_mode1+ormAccessInsert: 0.030928
encodeMD5+import+ormAccessInsert: 0.030928
encodeMD5+itemFromList+ormAccessInsert: 0.030928
encodeMD5+ormAccessInsert+ormAccessSelect: 0.030928
encodeMD5+ormAccessInsert+ormAccessUpdate: 0.030928
encodeMD5+ormAccessInsert+return: 0.030928
encodeMD5+ormAccessInsert+startLoop: 0.030928
encodeMD5+ormAccessInsert+try: 0.030928
encodeMD5+ormAccessSelect+ormAccessUpdate: 0.030928
encodeMD5+ormAccessUpdate+randomString: 0.030928
encodeMD5+randomString+startLoop: 0.030928
getDateTime+ormAccessUpdate+randomString: 0.030928
ormAccessInsert+ormAccessSelect+randomString: 0.030928
ormAccessInsert+ormAccessUpdate+randomString: 0.030928
ormAccessSelect+ormAccessUpdate+randomString: 0.030928
ormAccessUpdate+randomString+variableFromJSON: 0.030928
AddVariableToJSON+getTimeStamp+randomString: 0.030928
getTimeStamp+randomString+variableFromJSON: 0.030928
gather+getListLen+getTimeStamp: 0.030928
gather+getTimeStamp+startLoop: 0.030928
getListLen+go+ormAccessSelect: 0.030928
getTimeStamp+go+randomString: 0.030928
AddVariableToJSON+getTimeStamp+ormAccessSelect: 0.020619
exception+getTimeStamp+ormAccessInsert: 0.020619
function+getTimeStamp+ormAccessInsert: 0.020619
getTimeStamp+if_mode1+ormAccessInsert: 0.020619
getTimeStamp+import+ormAccessInsert: 0.020619
getTimeStamp+ormAccessInsert+ormAccessSelect: 0.020619
getTimeStamp+ormAccessInsert+return: 0.020619
getTimeStamp+ormAccessInsert+startLoop: 0.020619
getTimeStamp+ormAccessInsert+try: 0.020619
getTimeStamp+ormAccessSelect+variableFromJSON: 0.020619
ormAccessInsert+ormAccessSelect+variableFromJSON: 0.020619
RequestGet+ormAccessSelect+replace: 0.020619
RequestPost+ormAccessSelect+replace: 0.020619
RequestPost+ormAccessSelect+variableFromJSON: 0.020619
_status+ormAccessSelect+replace: 0.020619
_status+ormAccessSelect+variableFromJSON: 0.020619
AddVariableToJSON+encodeMD5+ormAccessSelect: 0.020619
AddVariableToJSON+getDateTime+getTimeStamp: 0.020619
encodeMD5+getTimeStamp+ormAccessSelect: 0.020619
encodeMD5+getTimeStamp+variableFromJSON: 0.020619
encodeMD5+ormAccessSelect+variableFromJSON: 0.020619
getDateTime+getListLen+getTimeStamp: 0.020619
getDateTime+getTimeStamp+ormAccessSelect: 0.020619
getDateTime+getTimeStamp+variableFromJSON: 0.020619
getDateTime+ormDirect+replace: 0.020619
ormDirect+replace+startLoop: 0.020619
RequestGet+RequestPost+encodeSHA256: 0.020619
RequestGet+addParam+encodeSHA256: 0.020619
RequestGet+addVar+encodeSHA256: 0.020619
RequestGet+else+encodeSHA256: 0.020619
RequestGet+encodeSHA256+exception: 0.020619
RequestGet+encodeSHA256+function: 0.020619
RequestGet+encodeSHA256+getDateTime: 0.020619
RequestGet+encodeSHA256+if_mode1: 0.020619
RequestGet+encodeSHA256+import: 0.020619
RequestGet+encodeSHA256+itemFromList: 0.020619
RequestGet+encodeSHA256+ormAccessInsert: 0.020619
RequestGet+encodeSHA256+return: 0.020619
RequestGet+encodeSHA256+startLoop: 0.020619
RequestGet+encodeSHA256+try: 0.020619
RequestGet+getDateTime+ormDirect: 0.020619
RequestPost+encodeSHA256+ormAccessInsert: 0.020619
RequestPost+encodeSHA256+startLoop: 0.020619
addParam+encodeSHA256+ormAccessInsert: 0.020619
addParam+encodeSHA256+ormAccessSelect: 0.020619
addVar+encodeSHA256+ormAccessInsert: 0.020619
addVar+encodeSHA256+ormAccessSelect: 0.020619
else+encodeSHA256+ormAccessInsert: 0.020619
else+encodeSHA256+ormAccessSelect: 0.020619
encodeSHA256+exception+ormAccessInsert: 0.020619
encodeSHA256+exception+ormAccessSelect: 0.020619
encodeSHA256+exception+ormDirect: 0.020619
encodeSHA256+function+ormAccessInsert: 0.020619
encodeSHA256+function+ormDirect: 0.020619
encodeSHA256+getDateTime+ormAccessInsert: 0.020619
encodeSHA256+getDateTime+ormAccessUpdate: 0.020619
encodeSHA256+if_mode1+ormAccessInsert: 0.020619
encodeSHA256+if_mode1+ormDirect: 0.020619
encodeSHA256+import+ormAccessInsert: 0.020619
encodeSHA256+import+ormDirect: 0.020619
encodeSHA256+itemFromList+ormAccessInsert: 0.020619
encodeSHA256+itemFromList+ormAccessSelect: 0.020619
encodeSHA256+ormAccessInsert+return: 0.020619
encodeSHA256+ormAccessInsert+startLoop: 0.020619
encodeSHA256+ormAccessInsert+try: 0.020619
encodeSHA256+ormAccessSelect+ormDirect: 0.020619
encodeSHA256+ormAccessSelect+startLoop: 0.020619
encodeSHA256+ormAccessSelect+try: 0.020619
encodeSHA256+ormDirect+return: 0.020619
encodeSHA256+ormDirect+startLoop: 0.020619
encodeSHA256+ormDirect+try: 0.020619
RequestPost+getListLen+ormDirect: 0.020619
AddVariableToJSON+RequestGet+ormDirect: 0.020619
AddVariableToJSON+RequestPost+ormAccessSelect: 0.020619
_status+addParam+ormDirect: 0.020619
_status+addVar+ormDirect: 0.020619
_status+else+ormDirect: 0.020619
_status+exception+ormDirect: 0.020619
_status+function+ormDirect: 0.020619
_status+if_mode1+ormDirect: 0.020619
_status+import+ormDirect: 0.020619
_status+itemFromList+ormDirect: 0.020619
_status+ormAccessInsert+ormAccessSelect: 0.020619
_status+ormAccessInsert+ormAccessUpdate: 0.020619
_status+ormAccessSelect+ormDirect: 0.020619
_status+ormDirect+return: 0.020619
_status+ormDirect+startLoop: 0.020619
_status+ormDirect+try: 0.020619
RequestGet+getListLen+ormDirect: 0.020619
itemFromList+ormDirect+replace: 0.020619
ormDirect+replace+return: 0.020619
AddVariableToJSON+RequestGet+getTimeStamp: 0.020619
AddVariableToJSON+_status+getTimeStamp: 0.020619
RequestGet+_status+encodeMD5: 0.020619
RequestGet+getTimeStamp+ormAccessUpdate: 0.020619
RequestGet+getTimeStamp+replace: 0.020619
RequestPost+getTimeStamp+ormAccessUpdate: 0.020619
RequestPost+getTimeStamp+replace: 0.020619
_status+encodeMD5+getListLen: 0.020619
_status+encodeMD5+ormAccessUpdate: 0.020619
_status+encodeMD5+replace: 0.020619
_status+encodeMD5+startLoop: 0.020619
getTimeStamp+ormAccessUpdate+replace: 0.020619
RequestGet+encodeMD5+variableFromJSON: 0.020619
RequestPost+encodeMD5+variableFromJSON: 0.020619
encodeMD5+replace+variableFromJSON: 0.020619
RequestGet+getTimeStamp+variableFromJSON: 0.020619
_status+getTimeStamp+variableFromJSON: 0.020619
RequestGet+getTimeStamp+randomString: 0.020619
RequestGet+ormAccessUpdate+randomString: 0.020619
RequestPost+ormAccessUpdate+randomString: 0.020619
_status+getTimeStamp+randomString: 0.020619
AddVariableToJSON+RequestGet+getDateTime: 0.020619
AddVariableToJSON+RequestPost+encodeSHA256: 0.020619
AddVariableToJSON+_status+ormAccessInsert: 0.020619
AddVariableToJSON+encodeSHA256+getListLen: 0.020619
AddVariableToJSON+encodeSHA256+replace: 0.020619
AddVariableToJSON+gather+getListLen: 0.020619
AddVariableToJSON+gather+randomString: 0.020619
AddVariableToJSON+getDateTime+ormAccessInsert: 0.020619
AddVariableToJSON+getDateTime+replace: 0.020619
AddVariableToJSON+getListLen+go: 0.020619
AddVariableToJSON+go+randomString: 0.020619
AddVariableToJSON+ormAccessInsert+replace: 0.020619
RequestGet+RequestPost+go: 0.020619
RequestGet+else+gather: 0.020619
RequestGet+gather+randomString: 0.020619
RequestGet+gather+startLoop: 0.020619
RequestGet+gather+variableFromJSON: 0.020619
RequestGet+getDateTime+randomString: 0.020619
RequestGet+getDateTime+replace: 0.020619
RequestGet+getListLen+go: 0.020619
RequestGet+go+randomString: 0.020619
RequestGet+go+variableFromJSON: 0.020619
RequestGet+ormAccessInsert+randomString: 0.020619
RequestGet+ormAccessInsert+replace: 0.020619
RequestGet+ormAccessInsert+variableFromJSON: 0.020619
RequestGet+randomString+replace: 0.020619
RequestPost+_status+encodeSHA256: 0.020619
RequestPost+_status+go: 0.020619
RequestPost+addParam+go: 0.020619
RequestPost+else+go: 0.020619
RequestPost+encodeSHA256+randomString: 0.020619
RequestPost+exception+go: 0.020619
RequestPost+getDateTime+replace: 0.020619
RequestPost+getListLen+go: 0.020619
RequestPost+go+itemFromList: 0.020619
RequestPost+go+try: 0.020619
RequestPost+ormAccessInsert+randomString: 0.020619
RequestPost+ormAccessInsert+replace: 0.020619
RequestPost+ormAccessInsert+variableFromJSON: 0.020619
RequestPost+randomString+replace: 0.020619
RequestPost+randomString+variableFromJSON: 0.020619
_status+encodeSHA256+getDateTime: 0.020619
_status+encodeSHA256+getListLen: 0.020619
_status+encodeSHA256+replace: 0.020619
_status+encodeSHA256+startLoop: 0.020619
_status+encodeSHA256+variableFromJSON: 0.020619
_status+gather+getListLen: 0.020619
_status+getDateTime+ormAccessInsert: 0.020619
_status+getDateTime+replace: 0.020619
_status+getListLen+go: 0.020619
_status+getListLen+ormAccessInsert: 0.020619
_status+ormAccessInsert+randomString: 0.020619
_status+ormAccessInsert+replace: 0.020619
_status+ormAccessInsert+variableFromJSON: 0.020619
addParam+gather+getDateTime: 0.020619
addParam+gather+ormAccessInsert: 0.020619
addVar+gather+getDateTime: 0.020619
addVar+gather+ormAccessInsert: 0.020619
else+encodeSHA256+replace: 0.020619
else+getDateTime+go: 0.020619
else+go+ormAccessInsert: 0.020619
encodeSHA256+exception+getListLen: 0.020619
encodeSHA256+exception+replace: 0.020619
encodeSHA256+getDateTime+variableFromJSON: 0.020619
encodeSHA256+getListLen+replace: 0.020619
encodeSHA256+getListLen+startLoop: 0.020619
encodeSHA256+getListLen+try: 0.020619
encodeSHA256+getListLen+variableFromJSON: 0.020619
encodeSHA256+randomString+replace: 0.020619
encodeSHA256+replace+startLoop: 0.020619
encodeSHA256+replace+try: 0.020619
encodeSHA256+replace+variableFromJSON: 0.020619
exception+gather+getDateTime: 0.020619
exception+gather+ormAccessInsert: 0.020619
function+gather+getDateTime: 0.020619
function+gather+ormAccessInsert: 0.020619
gather+getDateTime+go: 0.020619
gather+getDateTime+if_mode1: 0.020619
gather+getDateTime+import: 0.020619
gather+getDateTime+itemFromList: 0.020619
gather+getDateTime+return: 0.020619
gather+getDateTime+startLoop: 0.020619
gather+getDateTime+try: 0.020619
gather+getListLen+randomString: 0.020619
gather+getListLen+variableFromJSON: 0.020619
gather+go+ormAccessInsert: 0.020619
gather+if_mode1+ormAccessInsert: 0.020619
gather+import+ormAccessInsert: 0.020619
gather+itemFromList+ormAccessInsert: 0.020619
gather+ormAccessInsert+return: 0.020619
gather+ormAccessInsert+startLoop: 0.020619
gather+ormAccessInsert+try: 0.020619
gather+randomString+startLoop: 0.020619
gather+randomString+variableFromJSON: 0.020619
gather+startLoop+variableFromJSON: 0.020619
getDateTime+getListLen+go: 0.020619
getDateTime+getListLen+replace: 0.020619
getDateTime+go+ormAccessInsert: 0.020619
getDateTime+go+randomString: 0.020619
getDateTime+ormAccessInsert+variableFromJSON: 0.020619
getDateTime+randomString+replace: 0.020619
getDateTime+replace+variableFromJSON: 0.020619
getListLen+go+ormAccessInsert: 0.020619
getListLen+ormAccessInsert+variableFromJSON: 0.020619
go+ormAccessInsert+randomString: 0.020619
go+randomString+variableFromJSON: 0.020619
ormAccessInsert+randomString+replace: 0.020619
ormAccessInsert+randomString+variableFromJSON: 0.020619
ormAccessInsert+replace+variableFromJSON: 0.020619
encodeSHA256+getTimeStamp+replace: 0.020619
encodeSHA256+getListLen+getTimeStamp: 0.020619
AddVariableToJSON+getDateTime+ormAccessUpdate: 0.020619
AddVariableToJSON+ormAccessSelect+randomString: 0.020619
RequestPost+encodeMD5+getDateTime: 0.020619
RequestPost+encodeMD5+randomString: 0.020619
_status+encodeMD5+getDateTime: 0.020619
_status+encodeMD5+randomString: 0.020619
encodeMD5+getDateTime+ormAccessInsert: 0.020619
encodeMD5+getListLen+randomString: 0.020619
encodeMD5+ormAccessInsert+randomString: 0.020619
encodeMD5+ormAccessInsert+replace: 0.020619
encodeMD5+ormAccessSelect+randomString: 0.020619
encodeMD5+ormAccessSelect+replace: 0.020619
encodeMD5+randomString+variableFromJSON: 0.020619
getDateTime+ormAccessSelect+randomString: 0.020619
getDateTime+ormAccessUpdate+variableFromJSON: 0.020619
getListLen+ormAccessSelect+replace: 0.020619
ormAccessUpdate+randomString+replace: 0.020619
AddVariableToJSON+encodeMD5+encodeSHA256: 0.020619
AddVariableToJSON+encodeSHA256+ormAccessUpdate: 0.020619
addParam+encodeMD5+encodeSHA256: 0.020619
addVar+encodeMD5+encodeSHA256: 0.020619
else+encodeMD5+encodeSHA256: 0.020619
encodeMD5+encodeSHA256+exception: 0.020619
encodeMD5+encodeSHA256+function: 0.020619
encodeMD5+encodeSHA256+getDateTime: 0.020619
encodeMD5+encodeSHA256+if_mode1: 0.020619
encodeMD5+encodeSHA256+import: 0.020619
encodeMD5+encodeSHA256+itemFromList: 0.020619
encodeMD5+encodeSHA256+randomString: 0.020619
encodeMD5+encodeSHA256+return: 0.020619
encodeMD5+encodeSHA256+try: 0.020619
encodeMD5+getTimeStamp+randomString: 0.020619
encodeSHA256+getTimeStamp+ormAccessUpdate: 0.020619
encodeSHA256+ormAccessUpdate+randomString: 0.020619
encodeSHA256+ormAccessUpdate+variableFromJSON: 0.020619
getDateTime+getTimeStamp+ormAccessUpdate: 0.020619
getDateTime+getTimeStamp+randomString: 0.020619
getTimeStamp+ormAccessUpdate+variableFromJSON: 0.020619
addParam+gather+ormAccessSelect: 0.020619
addVar+gather+ormAccessSelect: 0.020619
else+gather+ormAccessSelect: 0.020619
exception+gather+ormAccessSelect: 0.020619
function+gather+ormAccessSelect: 0.020619
gather+getTimeStamp+randomString: 0.020619
gather+go+ormAccessSelect: 0.020619
gather+if_mode1+ormAccessSelect: 0.020619
gather+import+ormAccessSelect: 0.020619
gather+itemFromList+ormAccessSelect: 0.020619
gather+ormAccessSelect+return: 0.020619
gather+ormAccessSelect+startLoop: 0.020619
gather+ormAccessSelect+try: 0.020619
getTimeStamp+go+ormAccessSelect: 0.020619
go+ormAccessSelect+randomString: 0.020619
addParam+go+ormDirect: 0.020619
addVar+go+ormDirect: 0.020619
else+go+ormDirect: 0.020619
exception+go+ormDirect: 0.020619
function+go+ormDirect: 0.020619
go+if_mode1+ormDirect: 0.020619
go+import+ormDirect: 0.020619
go+itemFromList+ormDirect: 0.020619
go+ormAccessSelect+ormDirect: 0.020619
go+ormDirect+return: 0.020619
go+ormDirect+startLoop: 0.020619
go+ormDirect+try: 0.020619
AddVariableToJSON+gather+getTimeStamp: 0.020619
AddVariableToJSON+getTimeStamp+go: 0.020619
gather+getTimeStamp+variableFromJSON: 0.020619
getTimeStamp+go+variableFromJSON: 0.020619
addParam+go+ormAccessUpdate: 0.020619
addVar+go+ormAccessUpdate: 0.020619
else+go+ormAccessUpdate: 0.020619
exception+go+ormAccessUpdate: 0.020619
function+go+ormAccessUpdate: 0.020619
getListLen+go+ormAccessUpdate: 0.020619
go+if_mode1+ormAccessUpdate: 0.020619
go+import+ormAccessUpdate: 0.020619
go+itemFromList+ormAccessUpdate: 0.020619
go+ormAccessUpdate+return: 0.020619
go+ormAccessUpdate+startLoop: 0.020619
go+ormAccessUpdate+try: 0.020619
addParam+addVar+ormCheckTable: 0.010309
addParam+else+ormCheckTable: 0.010309
addParam+exception+ormCheckTable: 0.010309
addParam+function+ormCheckTable: 0.010309
addParam+getDateTime+ormCheckTable: 0.010309
addParam+getListLen+ormCheckTable: 0.010309
addParam+if_mode1+ormCheckTable: 0.010309
addParam+import+ormCheckTable: 0.010309
addParam+itemFromList+ormCheckTable: 0.010309
addParam+ormAccessInsert+ormCheckTable: 0.010309
addParam+ormAccessSelect+ormCheckTable: 0.010309
addParam+ormAccessUpdate+ormCheckTable: 0.010309
addParam+ormCheckTable+ormDirect: 0.010309
addParam+ormCheckTable+return: 0.010309
addParam+ormCheckTable+startLoop: 0.010309
addParam+ormCheckTable+try: 0.010309
addVar+else+ormCheckTable: 0.010309
addVar+exception+ormCheckTable: 0.010309
addVar+function+ormCheckTable: 0.010309
addVar+getDateTime+ormCheckTable: 0.010309
addVar+getListLen+ormCheckTable: 0.010309
addVar+if_mode1+ormCheckTable: 0.010309
addVar+import+ormCheckTable: 0.010309
addVar+itemFromList+ormCheckTable: 0.010309
addVar+ormAccessInsert+ormCheckTable: 0.010309
addVar+ormAccessSelect+ormCheckTable: 0.010309
addVar+ormAccessUpdate+ormCheckTable: 0.010309
addVar+ormCheckTable+ormDirect: 0.010309
addVar+ormCheckTable+return: 0.010309
addVar+ormCheckTable+startLoop: 0.010309
addVar+ormCheckTable+try: 0.010309
else+exception+ormCheckTable: 0.010309
else+function+ormCheckTable: 0.010309
else+getDateTime+ormCheckTable: 0.010309
else+getListLen+ormCheckTable: 0.010309
else+if_mode1+ormCheckTable: 0.010309
else+import+ormCheckTable: 0.010309
else+itemFromList+ormCheckTable: 0.010309
else+ormAccessInsert+ormCheckTable: 0.010309
else+ormAccessSelect+ormCheckTable: 0.010309
else+ormAccessUpdate+ormCheckTable: 0.010309
else+ormCheckTable+ormDirect: 0.010309
else+ormCheckTable+return: 0.010309
else+ormCheckTable+startLoop: 0.010309
else+ormCheckTable+try: 0.010309
exception+function+ormCheckTable: 0.010309
exception+getDateTime+ormCheckTable: 0.010309
exception+getListLen+ormCheckTable: 0.010309
exception+if_mode1+ormCheckTable: 0.010309
exception+import+ormCheckTable: 0.010309
exception+itemFromList+ormCheckTable: 0.010309
exception+ormAccessInsert+ormCheckTable: 0.010309
exception+ormAccessSelect+ormCheckTable: 0.010309
exception+ormAccessUpdate+ormCheckTable: 0.010309
exception+ormCheckTable+ormDirect: 0.010309
exception+ormCheckTable+return: 0.010309
exception+ormCheckTable+startLoop: 0.010309
exception+ormCheckTable+try: 0.010309
function+getDateTime+ormCheckTable: 0.010309
function+getListLen+ormCheckTable: 0.010309
function+if_mode1+ormCheckTable: 0.010309
function+import+ormCheckTable: 0.010309
function+itemFromList+ormCheckTable: 0.010309
function+ormAccessInsert+ormCheckTable: 0.010309
function+ormAccessSelect+ormCheckTable: 0.010309
function+ormAccessUpdate+ormCheckTable: 0.010309
function+ormCheckTable+ormDirect: 0.010309
function+ormCheckTable+return: 0.010309
function+ormCheckTable+startLoop: 0.010309
function+ormCheckTable+try: 0.010309
getDateTime+getListLen+ormCheckTable: 0.010309
getDateTime+if_mode1+ormCheckTable: 0.010309
getDateTime+import+ormCheckTable: 0.010309
getDateTime+itemFromList+ormCheckTable: 0.010309
getDateTime+ormAccessInsert+ormCheckTable: 0.010309
getDateTime+ormAccessSelect+ormCheckTable: 0.010309
getDateTime+ormAccessUpdate+ormCheckTable: 0.010309
getDateTime+ormCheckTable+ormDirect: 0.010309
getDateTime+ormCheckTable+return: 0.010309
getDateTime+ormCheckTable+startLoop: 0.010309
getDateTime+ormCheckTable+try: 0.010309
getListLen+if_mode1+ormCheckTable: 0.010309
getListLen+import+ormCheckTable: 0.010309
getListLen+itemFromList+ormCheckTable: 0.010309
getListLen+ormAccessInsert+ormCheckTable: 0.010309
getListLen+ormAccessSelect+ormCheckTable: 0.010309
getListLen+ormAccessUpdate+ormCheckTable: 0.010309
getListLen+ormCheckTable+ormDirect: 0.010309
getListLen+ormCheckTable+return: 0.010309
getListLen+ormCheckTable+startLoop: 0.010309
getListLen+ormCheckTable+try: 0.010309
if_mode1+import+ormCheckTable: 0.010309
if_mode1+itemFromList+ormCheckTable: 0.010309
if_mode1+ormAccessInsert+ormCheckTable: 0.010309
if_mode1+ormAccessSelect+ormCheckTable: 0.010309
if_mode1+ormAccessUpdate+ormCheckTable: 0.010309
if_mode1+ormCheckTable+ormDirect: 0.010309
if_mode1+ormCheckTable+return: 0.010309
if_mode1+ormCheckTable+startLoop: 0.010309
if_mode1+ormCheckTable+try: 0.010309
import+itemFromList+ormCheckTable: 0.010309
import+ormAccessInsert+ormCheckTable: 0.010309
import+ormAccessSelect+ormCheckTable: 0.010309
import+ormAccessUpdate+ormCheckTable: 0.010309
import+ormCheckTable+ormDirect: 0.010309
import+ormCheckTable+return: 0.010309
import+ormCheckTable+startLoop: 0.010309
import+ormCheckTable+try: 0.010309
itemFromList+ormAccessInsert+ormCheckTable: 0.010309
itemFromList+ormAccessSelect+ormCheckTable: 0.010309
itemFromList+ormAccessUpdate+ormCheckTable: 0.010309
itemFromList+ormCheckTable+ormDirect: 0.010309
itemFromList+ormCheckTable+return: 0.010309
itemFromList+ormCheckTable+startLoop: 0.010309
itemFromList+ormCheckTable+try: 0.010309
ormAccessInsert+ormAccessSelect+ormCheckTable: 0.010309
ormAccessInsert+ormAccessUpdate+ormCheckTable: 0.010309
ormAccessInsert+ormCheckTable+ormDirect: 0.010309
ormAccessInsert+ormCheckTable+return: 0.010309
ormAccessInsert+ormCheckTable+startLoop: 0.010309
ormAccessInsert+ormCheckTable+try: 0.010309
ormAccessSelect+ormAccessUpdate+ormCheckTable: 0.010309
ormAccessSelect+ormCheckTable+ormDirect: 0.010309
ormAccessSelect+ormCheckTable+return: 0.010309
ormAccessSelect+ormCheckTable+startLoop: 0.010309
ormAccessSelect+ormCheckTable+try: 0.010309
ormAccessUpdate+ormCheckTable+ormDirect: 0.010309
ormAccessUpdate+ormCheckTable+return: 0.010309
ormAccessUpdate+ormCheckTable+startLoop: 0.010309
ormAccessUpdate+ormCheckTable+try: 0.010309
ormCheckTable+ormDirect+return: 0.010309
ormCheckTable+ormDirect+startLoop: 0.010309
ormCheckTable+ormDirect+try: 0.010309
ormCheckTable+return+startLoop: 0.010309
ormCheckTable+return+try: 0.010309
ormCheckTable+startLoop+try: 0.010309
AddVariableToJSON+getTimeStamp+ormAccessInsert: 0.010309
getTimeStamp+ormAccessInsert+variableFromJSON: 0.010309
ormAccessInsert+ormDirect+replace: 0.010309
RequestGet+encodeSHA256+ormAccessSelect: 0.010309
RequestGet+encodeSHA256+ormAccessUpdate: 0.010309
RequestGet+encodeSHA256+ormDirect: 0.010309
RequestPost+encodeSHA256+ormAccessSelect: 0.010309
RequestPost+encodeSHA256+ormAccessUpdate: 0.010309
RequestPost+encodeSHA256+ormDirect: 0.010309
addParam+encodeSHA256+ormDirect: 0.010309
addVar+encodeSHA256+ormDirect: 0.010309
else+encodeSHA256+ormDirect: 0.010309
encodeSHA256+getDateTime+ormAccessSelect: 0.010309
encodeSHA256+getDateTime+ormDirect: 0.010309
encodeSHA256+itemFromList+ormDirect: 0.010309
encodeSHA256+ormAccessInsert+ormAccessSelect: 0.010309
encodeSHA256+ormAccessInsert+ormAccessUpdate: 0.010309
encodeSHA256+ormAccessInsert+ormDirect: 0.010309
encodeSHA256+ormAccessSelect+ormAccessUpdate: 0.010309
encodeSHA256+ormAccessUpdate+ormDirect: 0.010309
AddVariableToJSON+RequestPost+ormDirect: 0.010309
AddVariableToJSON+ormAccessInsert+ormDirect: 0.010309
RequestGet+_status+ormDirect: 0.010309
RequestPost+_status+ormDirect: 0.010309
_status+ormAccessInsert+ormDirect: 0.010309
_status+ormAccessUpdate+ormDirect: 0.010309
AddVariableToJSON+getDateTime+ormDirect: 0.010309
getDateTime+ormDirect+variableFromJSON: 0.010309
ormDirect+replace+variableFromJSON: 0.010309
AddVariableToJSON+RequestPost+getTimeStamp: 0.010309
RequestGet+encodeMD5+getTimeStamp: 0.010309
RequestPost+encodeMD5+getTimeStamp: 0.010309
_status+encodeMD5+getTimeStamp: 0.010309
encodeMD5+getTimeStamp+replace: 0.010309
RequestPost+getTimeStamp+variableFromJSON: 0.010309
RequestPost+getTimeStamp+randomString: 0.010309
RequestPost+encodeSHA256+getTimeStamp: 0.010309
AddVariableToJSON+RequestGet+encodeSHA256: 0.010309
AddVariableToJSON+RequestPost+gather: 0.010309
AddVariableToJSON+RequestPost+go: 0.010309
AddVariableToJSON+_status+gather: 0.010309
AddVariableToJSON+_status+go: 0.010309
AddVariableToJSON+encodeSHA256+gather: 0.010309
AddVariableToJSON+encodeSHA256+go: 0.010309
AddVariableToJSON+encodeSHA256+ormAccessInsert: 0.010309
AddVariableToJSON+gather+getDateTime: 0.010309
AddVariableToJSON+gather+ormAccessInsert: 0.010309
AddVariableToJSON+gather+replace: 0.010309
AddVariableToJSON+getDateTime+go: 0.010309
AddVariableToJSON+go+ormAccessInsert: 0.010309
AddVariableToJSON+go+replace: 0.010309
RequestGet+RequestPost+gather: 0.010309
RequestGet+_status+encodeSHA256: 0.010309
RequestGet+_status+gather: 0.010309
RequestGet+_status+go: 0.010309
RequestGet+encodeSHA256+gather: 0.010309
RequestGet+encodeSHA256+getListLen: 0.010309
RequestGet+encodeSHA256+go: 0.010309
RequestGet+encodeSHA256+randomString: 0.010309
RequestGet+encodeSHA256+replace: 0.010309
RequestGet+encodeSHA256+variableFromJSON: 0.010309
RequestGet+gather+getDateTime: 0.010309
RequestGet+gather+getListLen: 0.010309
RequestGet+gather+ormAccessInsert: 0.010309
RequestGet+gather+replace: 0.010309
RequestGet+getDateTime+go: 0.010309
RequestGet+go+ormAccessInsert: 0.010309
RequestGet+go+replace: 0.010309
RequestPost+_status+gather: 0.010309
RequestPost+addParam+gather: 0.010309
RequestPost+addVar+gather: 0.010309
RequestPost+else+gather: 0.010309
RequestPost+encodeSHA256+gather: 0.010309
RequestPost+encodeSHA256+getListLen: 0.010309
RequestPost+encodeSHA256+go: 0.010309
RequestPost+encodeSHA256+replace: 0.010309
RequestPost+encodeSHA256+variableFromJSON: 0.010309
RequestPost+exception+gather: 0.010309
RequestPost+function+gather: 0.010309
RequestPost+gather+getDateTime: 0.010309
RequestPost+gather+getListLen: 0.010309
RequestPost+gather+go: 0.010309
RequestPost+gather+if_mode1: 0.010309
RequestPost+gather+import: 0.010309
RequestPost+gather+itemFromList: 0.010309
RequestPost+gather+ormAccessInsert: 0.010309
RequestPost+gather+randomString: 0.010309
RequestPost+gather+replace: 0.010309
RequestPost+gather+return: 0.010309
RequestPost+gather+startLoop: 0.010309
RequestPost+gather+try: 0.010309
RequestPost+gather+variableFromJSON: 0.010309
RequestPost+getDateTime+go: 0.010309
RequestPost+go+ormAccessInsert: 0.010309
RequestPost+go+randomString: 0.010309
RequestPost+go+replace: 0.010309
RequestPost+go+variableFromJSON: 0.010309
_status+encodeSHA256+gather: 0.010309
_status+encodeSHA256+go: 0.010309
_status+encodeSHA256+ormAccessInsert: 0.010309
_status+gather+getDateTime: 0.010309
_status+gather+ormAccessInsert: 0.010309
_status+gather+randomString: 0.010309
_status+gather+replace: 0.010309
_status+gather+variableFromJSON: 0.010309
_status+getDateTime+go: 0.010309
_status+go+ormAccessInsert: 0.010309
_status+go+randomString: 0.010309
_status+go+replace: 0.010309
_status+go+variableFromJSON: 0.010309
addParam+encodeSHA256+gather: 0.010309
addParam+encodeSHA256+go: 0.010309
addParam+gather+replace: 0.010309
addParam+go+replace: 0.010309
addVar+encodeSHA256+gather: 0.010309
addVar+encodeSHA256+go: 0.010309
addVar+gather+replace: 0.010309
addVar+go+replace: 0.010309
else+encodeSHA256+gather: 0.010309
else+encodeSHA256+go: 0.010309
else+gather+getDateTime: 0.010309
else+gather+ormAccessInsert: 0.010309
else+gather+replace: 0.010309
else+go+replace: 0.010309
encodeSHA256+exception+gather: 0.010309
encodeSHA256+exception+go: 0.010309
encodeSHA256+function+gather: 0.010309
encodeSHA256+function+go: 0.010309
encodeSHA256+gather+getDateTime: 0.010309
encodeSHA256+gather+getListLen: 0.010309
encodeSHA256+gather+go: 0.010309
encodeSHA256+gather+if_mode1: 0.010309
encodeSHA256+gather+import: 0.010309
encodeSHA256+gather+itemFromList: 0.010309
encodeSHA256+gather+ormAccessInsert: 0.010309
encodeSHA256+gather+randomString: 0.010309
encodeSHA256+gather+replace: 0.010309
encodeSHA256+gather+return: 0.010309
encodeSHA256+gather+startLoop: 0.010309
encodeSHA256+gather+try: 0.010309
encodeSHA256+gather+variableFromJSON: 0.010309
encodeSHA256+getDateTime+getListLen: 0.010309
encodeSHA256+getDateTime+go: 0.010309
encodeSHA256+getDateTime+replace: 0.010309
encodeSHA256+getListLen+go: 0.010309
encodeSHA256+getListLen+ormAccessInsert: 0.010309
encodeSHA256+go+if_mode1: 0.010309
encodeSHA256+go+import: 0.010309
encodeSHA256+go+itemFromList: 0.010309
encodeSHA256+go+ormAccessInsert: 0.010309
encodeSHA256+go+randomString: 0.010309
encodeSHA256+go+replace: 0.010309
encodeSHA256+go+return: 0.010309
encodeSHA256+go+startLoop: 0.010309
encodeSHA256+go+try: 0.010309
encodeSHA256+go+variableFromJSON: 0.010309
encodeSHA256+ormAccessInsert+randomString: 0.010309
encodeSHA256+ormAccessInsert+replace: 0.010309
encodeSHA256+ormAccessInsert+variableFromJSON: 0.010309
exception+gather+replace: 0.010309
exception+go+replace: 0.010309
function+gather+replace: 0.010309
function+go+replace: 0.010309
gather+getDateTime+getListLen: 0.010309
gather+getDateTime+ormAccessInsert: 0.010309
gather+getDateTime+randomString: 0.010309
gather+getDateTime+replace: 0.010309
gather+getDateTime+variableFromJSON: 0.010309
gather+getListLen+ormAccessInsert: 0.010309
gather+getListLen+replace: 0.010309
gather+go+replace: 0.010309
gather+if_mode1+replace: 0.010309
gather+import+replace: 0.010309
gather+itemFromList+replace: 0.010309
gather+ormAccessInsert+randomString: 0.010309
gather+ormAccessInsert+replace: 0.010309
gather+ormAccessInsert+variableFromJSON: 0.010309
gather+randomString+replace: 0.010309
gather+replace+return: 0.010309
gather+replace+startLoop: 0.010309
gather+replace+try: 0.010309
gather+replace+variableFromJSON: 0.010309
getDateTime+go+replace: 0.010309
getDateTime+go+variableFromJSON: 0.010309
getListLen+go+replace: 0.010309
go+if_mode1+replace: 0.010309
go+import+replace: 0.010309
go+itemFromList+replace: 0.010309
go+ormAccessInsert+replace: 0.010309
go+ormAccessInsert+variableFromJSON: 0.010309
go+randomString+replace: 0.010309
go+replace+return: 0.010309
go+replace+startLoop: 0.010309
go+replace+try: 0.010309
go+replace+variableFromJSON: 0.010309
encodeSHA256+getListLen+ormAccessSelect: 0.010309
encodeSHA256+getTimeStamp+ormAccessSelect: 0.010309
encodeSHA256+ormAccessSelect+randomString: 0.010309
AddVariableToJSON+encodeSHA256+ormAccessSelect: 0.010309
AddVariableToJSON+encodeSHA256+ormDirect: 0.010309
encodeSHA256+ormAccessSelect+variableFromJSON: 0.010309
encodeSHA256+ormDirect+variableFromJSON: 0.010309
AddVariableToJSON+_status+ormAccessSelect: 0.010309
AddVariableToJSON+encodeMD5+ormAccessInsert: 0.010309
AddVariableToJSON+ormAccessSelect+replace: 0.010309
RequestGet+encodeMD5+getDateTime: 0.010309
RequestGet+encodeMD5+ormAccessInsert: 0.010309
RequestGet+encodeMD5+ormAccessSelect: 0.010309
RequestGet+encodeMD5+randomString: 0.010309
RequestGet+ormAccessSelect+randomString: 0.010309
RequestPost+encodeMD5+ormAccessInsert: 0.010309
RequestPost+encodeMD5+ormAccessSelect: 0.010309
RequestPost+ormAccessSelect+randomString: 0.010309
_status+encodeMD5+ormAccessInsert: 0.010309
_status+encodeMD5+ormAccessSelect: 0.010309
_status+encodeMD5+variableFromJSON: 0.010309
_status+getDateTime+ormAccessSelect: 0.010309
_status+getDateTime+ormAccessUpdate: 0.010309
_status+getListLen+ormAccessSelect: 0.010309
_status+ormAccessSelect+randomString: 0.010309
encodeMD5+getDateTime+replace: 0.010309
encodeMD5+ormAccessInsert+variableFromJSON: 0.010309
encodeMD5+randomString+replace: 0.010309
ormAccessInsert+ormAccessUpdate+variableFromJSON: 0.010309
ormAccessSelect+randomString+replace: 0.010309
ormAccessSelect+randomString+variableFromJSON: 0.010309
encodeMD5+encodeSHA256+getTimeStamp: 0.010309
encodeMD5+encodeSHA256+ormAccessUpdate: 0.010309
encodeMD5+encodeSHA256+startLoop: 0.010309
encodeMD5+encodeSHA256+variableFromJSON: 0.010309
encodeSHA256+getDateTime+getTimeStamp: 0.010309
RequestPost+encodeMD5+encodeSHA256: 0.010309
_status+encodeMD5+encodeSHA256: 0.010309
gather+getListLen+ormAccessSelect: 0.010309
gather+getTimeStamp+ormAccessSelect: 0.010309
gather+ormAccessSelect+randomString: 0.010309
_status+gather+ormAccessSelect: 0.010309
_status+gather+ormDirect: 0.010309
_status+go+ormAccessSelect: 0.010309
_status+go+ormDirect: 0.010309
addParam+gather+ormDirect: 0.010309
addVar+gather+ormDirect: 0.010309
else+gather+ormDirect: 0.010309
exception+gather+ormDirect: 0.010309
function+gather+ormDirect: 0.010309
gather+go+ormDirect: 0.010309
gather+if_mode1+ormDirect: 0.010309
gather+import+ormDirect: 0.010309
gather+itemFromList+ormDirect: 0.010309
gather+ormAccessSelect+ormDirect: 0.010309
gather+ormDirect+return: 0.010309
gather+ormDirect+startLoop: 0.010309
gather+ormDirect+try: 0.010309
_status+gather+getTimeStamp: 0.010309
_status+getTimeStamp+go: 0.010309
addParam+encodeMD5+go: 0.010309
addParam+encodeMD5+ormDirect: 0.010309
addParam+getTimeStamp+ormAccessInsert: 0.010309
addParam+getTimeStamp+ormDirect: 0.010309
addParam+ormDirect+randomString: 0.010309
addVar+encodeMD5+go: 0.010309
addVar+encodeMD5+ormDirect: 0.010309
addVar+getTimeStamp+ormAccessInsert: 0.010309
addVar+getTimeStamp+ormDirect: 0.010309
addVar+ormDirect+randomString: 0.010309
else+encodeMD5+go: 0.010309
else+encodeMD5+ormDirect: 0.010309
else+getTimeStamp+ormAccessInsert: 0.010309
else+getTimeStamp+ormDirect: 0.010309
else+ormDirect+randomString: 0.010309
encodeMD5+exception+go: 0.010309
encodeMD5+exception+ormDirect: 0.010309
encodeMD5+function+go: 0.010309
encodeMD5+function+ormDirect: 0.010309
encodeMD5+getDateTime+go: 0.010309
encodeMD5+getDateTime+ormDirect: 0.010309
encodeMD5+getListLen+go: 0.010309
encodeMD5+getListLen+ormDirect: 0.010309
encodeMD5+getTimeStamp+go: 0.010309
encodeMD5+getTimeStamp+ormAccessInsert: 0.010309
encodeMD5+getTimeStamp+ormDirect: 0.010309
encodeMD5+go+if_mode1: 0.010309
encodeMD5+go+import: 0.010309
encodeMD5+go+itemFromList: 0.010309
encodeMD5+go+ormAccessInsert: 0.010309
encodeMD5+go+ormAccessSelect: 0.010309
encodeMD5+go+ormAccessUpdate: 0.010309
encodeMD5+go+ormDirect: 0.010309
encodeMD5+go+randomString: 0.010309
encodeMD5+go+return: 0.010309
encodeMD5+go+startLoop: 0.010309
encodeMD5+go+try: 0.010309
encodeMD5+if_mode1+ormDirect: 0.010309
encodeMD5+import+ormDirect: 0.010309
encodeMD5+itemFromList+ormDirect: 0.010309
encodeMD5+ormAccessInsert+ormDirect: 0.010309
encodeMD5+ormAccessSelect+ormDirect: 0.010309
encodeMD5+ormAccessUpdate+ormDirect: 0.010309
encodeMD5+ormDirect+randomString: 0.010309
encodeMD5+ormDirect+return: 0.010309
encodeMD5+ormDirect+startLoop: 0.010309
encodeMD5+ormDirect+try: 0.010309
exception+getTimeStamp+ormDirect: 0.010309
exception+ormDirect+randomString: 0.010309
function+getTimeStamp+ormDirect: 0.010309
function+ormDirect+randomString: 0.010309
getDateTime+getTimeStamp+go: 0.010309
getDateTime+getTimeStamp+ormAccessInsert: 0.010309
getDateTime+getTimeStamp+ormDirect: 0.010309
getDateTime+go+ormAccessSelect: 0.010309
getDateTime+go+ormAccessUpdate: 0.010309
getDateTime+go+ormDirect: 0.010309
getDateTime+ormDirect+randomString: 0.010309
getListLen+getTimeStamp+ormAccessInsert: 0.010309
getListLen+getTimeStamp+ormDirect: 0.010309
getListLen+go+ormDirect: 0.010309
getListLen+ormDirect+randomString: 0.010309
getTimeStamp+go+ormAccessInsert: 0.010309
getTimeStamp+go+ormAccessUpdate: 0.010309
getTimeStamp+go+ormDirect: 0.010309
getTimeStamp+if_mode1+ormDirect: 0.010309
getTimeStamp+import+ormDirect: 0.010309
getTimeStamp+itemFromList+ormAccessInsert: 0.010309
getTimeStamp+itemFromList+ormDirect: 0.010309
getTimeStamp+ormAccessInsert+ormAccessUpdate: 0.010309
getTimeStamp+ormAccessInsert+ormDirect: 0.010309
getTimeStamp+ormAccessInsert+randomString: 0.010309
getTimeStamp+ormAccessSelect+ormAccessUpdate: 0.010309
getTimeStamp+ormAccessSelect+ormDirect: 0.010309
getTimeStamp+ormAccessUpdate+ormDirect: 0.010309
getTimeStamp+ormDirect+randomString: 0.010309
getTimeStamp+ormDirect+return: 0.010309
getTimeStamp+ormDirect+startLoop: 0.010309
getTimeStamp+ormDirect+try: 0.010309
go+ormAccessInsert+ormAccessSelect: 0.010309
go+ormAccessInsert+ormAccessUpdate: 0.010309
go+ormAccessInsert+ormDirect: 0.010309
go+ormAccessSelect+ormAccessUpdate: 0.010309
go+ormAccessUpdate+ormDirect: 0.010309
go+ormAccessUpdate+randomString: 0.010309
go+ormDirect+randomString: 0.010309
if_mode1+ormDirect+randomString: 0.010309
import+ormDirect+randomString: 0.010309
itemFromList+ormDirect+randomString: 0.010309
ormAccessInsert+ormDirect+randomString: 0.010309
ormAccessSelect+ormDirect+randomString: 0.010309
ormAccessUpdate+ormDirect+randomString: 0.010309
ormDirect+randomString+return: 0.010309
ormDirect+randomString+startLoop: 0.010309
ormDirect+randomString+try: 0.010309
go+ormAccessUpdate+variableFromJSON: 0.010309
RequestGet+go+ormAccessSelect: 0.010309
RequestPost+go+ormAccessSelect: 0.010309
AddVariableToJSON+getListLen+ormDirect: 0.010309
RequestGet+ormDirect+variableFromJSON: 0.010309
getListLen+ormDirect+variableFromJSON: 0.010309
RequestGet+gather+getTimeStamp: 0.010309
RequestGet+getTimeStamp+go: 0.010309
AddVariableToJSON+_status+getQueryParamList: 0.010309
AddVariableToJSON+addParam+getQueryParamList: 0.010309
AddVariableToJSON+addVar+getQueryParamList: 0.010309
AddVariableToJSON+else+getQueryParamList: 0.010309
AddVariableToJSON+encodeSHA256+getQueryParamList: 0.010309
AddVariableToJSON+exception+getQueryParamList: 0.010309
AddVariableToJSON+function+getQueryParamList: 0.010309
AddVariableToJSON+getListLen+getQueryParamList: 0.010309
AddVariableToJSON+getQueryParamList+getTimeStamp: 0.010309
AddVariableToJSON+getQueryParamList+if_mode1: 0.010309
AddVariableToJSON+getQueryParamList+import: 0.010309
AddVariableToJSON+getQueryParamList+itemFromList: 0.010309
AddVariableToJSON+getQueryParamList+ormAccessUpdate: 0.010309
AddVariableToJSON+getQueryParamList+randomString: 0.010309
AddVariableToJSON+getQueryParamList+replace: 0.010309
AddVariableToJSON+getQueryParamList+return: 0.010309
AddVariableToJSON+getQueryParamList+startLoop: 0.010309
AddVariableToJSON+getQueryParamList+try: 0.010309
AddVariableToJSON+getQueryParamList+variableFromJSON: 0.010309
_status+addParam+getQueryParamList: 0.010309
_status+addVar+getQueryParamList: 0.010309
_status+else+getQueryParamList: 0.010309
_status+encodeSHA256+getQueryParamList: 0.010309
_status+encodeSHA256+getTimeStamp: 0.010309
_status+encodeSHA256+ormAccessUpdate: 0.010309
_status+exception+getQueryParamList: 0.010309
_status+function+getQueryParamList: 0.010309
_status+getListLen+getQueryParamList: 0.010309
_status+getQueryParamList+getTimeStamp: 0.010309
_status+getQueryParamList+if_mode1: 0.010309
_status+getQueryParamList+import: 0.010309
_status+getQueryParamList+itemFromList: 0.010309
_status+getQueryParamList+ormAccessUpdate: 0.010309
_status+getQueryParamList+randomString: 0.010309
_status+getQueryParamList+replace: 0.010309
_status+getQueryParamList+return: 0.010309
_status+getQueryParamList+startLoop: 0.010309
_status+getQueryParamList+try: 0.010309
_status+getQueryParamList+variableFromJSON: 0.010309
addParam+addVar+getQueryParamList: 0.010309
addParam+else+getQueryParamList: 0.010309
addParam+encodeSHA256+getQueryParamList: 0.010309
addParam+exception+getQueryParamList: 0.010309
addParam+function+getQueryParamList: 0.010309
addParam+getListLen+getQueryParamList: 0.010309
addParam+getQueryParamList+getTimeStamp: 0.010309
addParam+getQueryParamList+if_mode1: 0.010309
addParam+getQueryParamList+import: 0.010309
addParam+getQueryParamList+itemFromList: 0.010309
addParam+getQueryParamList+ormAccessUpdate: 0.010309
addParam+getQueryParamList+randomString: 0.010309
addParam+getQueryParamList+replace: 0.010309
addParam+getQueryParamList+return: 0.010309
addParam+getQueryParamList+startLoop: 0.010309
addParam+getQueryParamList+try: 0.010309
addParam+getQueryParamList+variableFromJSON: 0.010309
addVar+else+getQueryParamList: 0.010309
addVar+encodeSHA256+getQueryParamList: 0.010309
addVar+exception+getQueryParamList: 0.010309
addVar+function+getQueryParamList: 0.010309
addVar+getListLen+getQueryParamList: 0.010309
addVar+getQueryParamList+getTimeStamp: 0.010309
addVar+getQueryParamList+if_mode1: 0.010309
addVar+getQueryParamList+import: 0.010309
addVar+getQueryParamList+itemFromList: 0.010309
addVar+getQueryParamList+ormAccessUpdate: 0.010309
addVar+getQueryParamList+randomString: 0.010309
addVar+getQueryParamList+replace: 0.010309
addVar+getQueryParamList+return: 0.010309
addVar+getQueryParamList+startLoop: 0.010309
addVar+getQueryParamList+try: 0.010309
addVar+getQueryParamList+variableFromJSON: 0.010309
else+encodeSHA256+getQueryParamList: 0.010309
else+exception+getQueryParamList: 0.010309
else+function+getQueryParamList: 0.010309
else+getListLen+getQueryParamList: 0.010309
else+getQueryParamList+getTimeStamp: 0.010309
else+getQueryParamList+if_mode1: 0.010309
else+getQueryParamList+import: 0.010309
else+getQueryParamList+itemFromList: 0.010309
else+getQueryParamList+ormAccessUpdate: 0.010309
else+getQueryParamList+randomString: 0.010309
else+getQueryParamList+replace: 0.010309
else+getQueryParamList+return: 0.010309
else+getQueryParamList+startLoop: 0.010309
else+getQueryParamList+try: 0.010309
else+getQueryParamList+variableFromJSON: 0.010309
encodeSHA256+exception+getQueryParamList: 0.010309
encodeSHA256+function+getQueryParamList: 0.010309
encodeSHA256+getListLen+getQueryParamList: 0.010309
encodeSHA256+getListLen+ormAccessUpdate: 0.010309
encodeSHA256+getQueryParamList+getTimeStamp: 0.010309
encodeSHA256+getQueryParamList+if_mode1: 0.010309
encodeSHA256+getQueryParamList+import: 0.010309
encodeSHA256+getQueryParamList+itemFromList: 0.010309
encodeSHA256+getQueryParamList+ormAccessUpdate: 0.010309
encodeSHA256+getQueryParamList+randomString: 0.010309
encodeSHA256+getQueryParamList+replace: 0.010309
encodeSHA256+getQueryParamList+return: 0.010309
encodeSHA256+getQueryParamList+startLoop: 0.010309
encodeSHA256+getQueryParamList+try: 0.010309
encodeSHA256+getQueryParamList+variableFromJSON: 0.010309
encodeSHA256+ormAccessUpdate+replace: 0.010309
exception+function+getQueryParamList: 0.010309
exception+getListLen+getQueryParamList: 0.010309
exception+getQueryParamList+getTimeStamp: 0.010309
exception+getQueryParamList+if_mode1: 0.010309
exception+getQueryParamList+import: 0.010309
exception+getQueryParamList+itemFromList: 0.010309
exception+getQueryParamList+ormAccessUpdate: 0.010309
exception+getQueryParamList+randomString: 0.010309
exception+getQueryParamList+replace: 0.010309
exception+getQueryParamList+return: 0.010309
exception+getQueryParamList+startLoop: 0.010309
exception+getQueryParamList+try: 0.010309
exception+getQueryParamList+variableFromJSON: 0.010309
function+getListLen+getQueryParamList: 0.010309
function+getQueryParamList+getTimeStamp: 0.010309
function+getQueryParamList+if_mode1: 0.010309
function+getQueryParamList+import: 0.010309
function+getQueryParamList+itemFromList: 0.010309
function+getQueryParamList+ormAccessUpdate: 0.010309
function+getQueryParamList+randomString: 0.010309
function+getQueryParamList+replace: 0.010309
function+getQueryParamList+return: 0.010309
function+getQueryParamList+startLoop: 0.010309
function+getQueryParamList+try: 0.010309
function+getQueryParamList+variableFromJSON: 0.010309
getListLen+getQueryParamList+getTimeStamp: 0.010309
getListLen+getQueryParamList+if_mode1: 0.010309
getListLen+getQueryParamList+import: 0.010309
getListLen+getQueryParamList+itemFromList: 0.010309
getListLen+getQueryParamList+ormAccessUpdate: 0.010309
getListLen+getQueryParamList+randomString: 0.010309
getListLen+getQueryParamList+replace: 0.010309
getListLen+getQueryParamList+return: 0.010309
getListLen+getQueryParamList+startLoop: 0.010309
getListLen+getQueryParamList+try: 0.010309
getListLen+getQueryParamList+variableFromJSON: 0.010309
getQueryParamList+getTimeStamp+if_mode1: 0.010309
getQueryParamList+getTimeStamp+import: 0.010309
getQueryParamList+getTimeStamp+itemFromList: 0.010309
getQueryParamList+getTimeStamp+ormAccessUpdate: 0.010309
getQueryParamList+getTimeStamp+randomString: 0.010309
getQueryParamList+getTimeStamp+replace: 0.010309
getQueryParamList+getTimeStamp+return: 0.010309
getQueryParamList+getTimeStamp+startLoop: 0.010309
getQueryParamList+getTimeStamp+try: 0.010309
getQueryParamList+getTimeStamp+variableFromJSON: 0.010309
getQueryParamList+if_mode1+import: 0.010309
getQueryParamList+if_mode1+itemFromList: 0.010309
getQueryParamList+if_mode1+ormAccessUpdate: 0.010309
getQueryParamList+if_mode1+randomString: 0.010309
getQueryParamList+if_mode1+replace: 0.010309
getQueryParamList+if_mode1+return: 0.010309
getQueryParamList+if_mode1+startLoop: 0.010309
getQueryParamList+if_mode1+try: 0.010309
getQueryParamList+if_mode1+variableFromJSON: 0.010309
getQueryParamList+import+itemFromList: 0.010309
getQueryParamList+import+ormAccessUpdate: 0.010309
getQueryParamList+import+randomString: 0.010309
getQueryParamList+import+replace: 0.010309
getQueryParamList+import+return: 0.010309
getQueryParamList+import+startLoop: 0.010309
getQueryParamList+import+try: 0.010309
getQueryParamList+import+variableFromJSON: 0.010309
getQueryParamList+itemFromList+ormAccessUpdate: 0.010309
getQueryParamList+itemFromList+randomString: 0.010309
getQueryParamList+itemFromList+replace: 0.010309
getQueryParamList+itemFromList+return: 0.010309
getQueryParamList+itemFromList+startLoop: 0.010309
getQueryParamList+itemFromList+try: 0.010309
getQueryParamList+itemFromList+variableFromJSON: 0.010309
getQueryParamList+ormAccessUpdate+randomString: 0.010309
getQueryParamList+ormAccessUpdate+replace: 0.010309
getQueryParamList+ormAccessUpdate+return: 0.010309
getQueryParamList+ormAccessUpdate+startLoop: 0.010309
getQueryParamList+ormAccessUpdate+try: 0.010309
getQueryParamList+ormAccessUpdate+variableFromJSON: 0.010309
getQueryParamList+randomString+replace: 0.010309
getQueryParamList+randomString+return: 0.010309
getQueryParamList+randomString+startLoop: 0.010309
getQueryParamList+randomString+try: 0.010309
getQueryParamList+randomString+variableFromJSON: 0.010309
getQueryParamList+replace+return: 0.010309
getQueryParamList+replace+startLoop: 0.010309
getQueryParamList+replace+try: 0.010309
getQueryParamList+replace+variableFromJSON: 0.010309
getQueryParamList+return+startLoop: 0.010309
getQueryParamList+return+try: 0.010309
getQueryParamList+return+variableFromJSON: 0.010309
getQueryParamList+startLoop+try: 0.010309
getQueryParamList+startLoop+variableFromJSON: 0.010309
getQueryParamList+try+variableFromJSON: 0.010309
getTimeStamp+randomString+replace: 0.010309