heimdall-api-platform 2.9.4 → 2.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. package/dist/lib/clients/http-client.js +1 -1
  2. package/dist/lib/environment.js +1 -1
  3. package/dist/lib/factory/api-gateway.js +1 -1
  4. package/dist/lib/factory/client-factory.js +1 -1
  5. package/dist/lib/factory/function-factory.js +1 -1
  6. package/dist/lib/factory/operation-flow-factory.js +1 -1
  7. package/dist/lib/factory/server-factory.js +1 -1
  8. package/dist/lib/factory/transformation-function-factory.js +1 -1
  9. package/dist/lib/handle-route.js +1 -1
  10. package/dist/lib/index.js +1 -1
  11. package/dist/lib/integrations/commons-elasticsearch.js +1 -1
  12. package/dist/lib/integrations/commons-opensearch.js +1 -1
  13. package/dist/lib/integrations/commons-splunk.js +1 -1
  14. package/dist/lib/license/license-service.js +1 -1
  15. package/dist/lib/models/base-context.js +1 -1
  16. package/dist/lib/models/flow-context.js +1 -1
  17. package/dist/lib/models/monitor-request-view.js +1 -1
  18. package/dist/lib/models/route-context.js +1 -1
  19. package/dist/lib/models/security-route.js +1 -1
  20. package/dist/lib/models/service-context.js +1 -1
  21. package/dist/lib/models/service-group.js +1 -1
  22. package/dist/lib/models/service-route.js +1 -1
  23. package/dist/lib/models/splunk-data.js +1 -1
  24. package/dist/lib/observability/gateway-log-capture.js +1 -1
  25. package/dist/lib/observability/live-streams.js +1 -1
  26. package/dist/lib/observability/models/monitor-flow-step.js +1 -1
  27. package/dist/lib/observability/models/monitor-function-operation.js +1 -1
  28. package/dist/lib/observability/models/monitor-function-transformation.js +1 -1
  29. package/dist/lib/observability/models/monitor-http-operation.js +1 -1
  30. package/dist/lib/observability/models/monitor-mock-operation.js +1 -1
  31. package/dist/lib/observability/monitor-event-bus.js +1 -1
  32. package/dist/lib/observability/monitor-event.js +1 -1
  33. package/dist/lib/observability/subscribers/monitor-event-subscriber.js +1 -1
  34. package/dist/lib/observability/subscribers/opensearch-event-subscriber.js +1 -1
  35. package/dist/lib/observability/subscribers/redis-event-subscriber.js +1 -1
  36. package/dist/lib/observability/subscribers/spans-event-subscriber.js +1 -1
  37. package/dist/lib/observability/subscribers/splunk-event-subscriber.js +1 -1
  38. package/dist/lib/operations/abstract-operation.js +1 -1
  39. package/dist/lib/operations/function.js +1 -1
  40. package/dist/lib/operations/http.js +1 -1
  41. package/dist/lib/operations/mock.js +1 -1
  42. package/dist/lib/operations/monitor-check.js +1 -1
  43. package/dist/lib/orchestration-flow.js +1 -1
  44. package/dist/lib/router.js +1 -1
  45. package/dist/lib/routes/default-routes-admin.js +1 -1
  46. package/dist/lib/routes/default-routes-docs.js +1 -1
  47. package/dist/lib/routes/default-routes-ingest.js +1 -1
  48. package/dist/lib/routes/default-routes-mcp.js +1 -1
  49. package/dist/lib/routes/default-routes-monitor-metrics.js +1 -1
  50. package/dist/lib/routes/default-routes-opensearch.js +1 -1
  51. package/dist/lib/routes/default-routes-pos.js +1 -1
  52. package/dist/lib/routes/default-routes-pre.js +1 -1
  53. package/dist/lib/routes/default-routes-redis.js +1 -1
  54. package/dist/lib/routes/native-routes-catalog.js +1 -1
  55. package/dist/lib/routes/route-catalog-builder.js +1 -1
  56. package/dist/lib/security/api-key-validator.js +1 -1
  57. package/dist/lib/security/basic-auth-validator.js +1 -1
  58. package/dist/lib/security/ingest-token-validator.js +1 -1
  59. package/dist/lib/security/jwt-util.js +1 -1
  60. package/dist/lib/security/quota-enforcer.js +1 -1
  61. package/dist/lib/security/rate-limiter.js +1 -1
  62. package/dist/lib/security/resolve-auth-secret.js +1 -1
  63. package/dist/lib/security/security-validation.js +1 -1
  64. package/dist/lib/services/api-key-service.js +1 -1
  65. package/dist/lib/services/consumer-service.js +1 -1
  66. package/dist/lib/services/fixed-window-rate-limit-service.js +1 -1
  67. package/dist/lib/services/health-service.js +1 -1
  68. package/dist/lib/services/ingest-error-service.js +1 -1
  69. package/dist/lib/services/log-ingest-service.js +1 -1
  70. package/dist/lib/services/logfmt-kv.js +1 -1
  71. package/dist/lib/services/metrics-service.js +1 -1
  72. package/dist/lib/services/monitor-metrics-service.js +1 -1
  73. package/dist/lib/services/quota-service.js +1 -1
  74. package/dist/lib/services/rate-limit-service.js +1 -1
  75. package/dist/lib/services/server.js +1 -1
  76. package/dist/lib/services/trace-link-repair.js +1 -1
  77. package/dist/lib/storage/key-value-storage.js +1 -1
  78. package/dist/lib/utils/commons-cache.js +1 -1
  79. package/dist/lib/utils/commons-const.js +1 -1
  80. package/dist/lib/utils/commons-context.js +1 -1
  81. package/dist/lib/utils/commons-cookie.js +1 -1
  82. package/dist/lib/utils/commons-date.js +1 -1
  83. package/dist/lib/utils/commons-encoding.js +1 -1
  84. package/dist/lib/utils/commons-errors.js +1 -1
  85. package/dist/lib/utils/commons-headers.js +1 -1
  86. package/dist/lib/utils/commons-logger.js +1 -1
  87. package/dist/lib/utils/commons-trace.js +1 -1
  88. package/dist/lib/utils/commons-util.js +1 -1
  89. package/dist/lib/utils/document-utils.js +1 -1
  90. package/dist/lib/utils/monitor-filter-builder.js +1 -1
  91. package/dist/lib/utils/monitor-query-language.js +1 -1
  92. package/package.json +1 -1
@@ -1 +1 @@
1
- 'use strict';const _0x28ca6b=_0x14fa;(function(_0x51b36d,_0x2e8a5f){const _0x20dc04=_0x14fa,_0x475126=_0x51b36d();while(!![]){try{const _0x75d07e=parseInt(_0x20dc04(0x322))/0x1+-parseInt(_0x20dc04(0x3c7))/0x2*(-parseInt(_0x20dc04(0x1f4))/0x3)+parseInt(_0x20dc04(0x35c))/0x4*(-parseInt(_0x20dc04(0x370))/0x5)+-parseInt(_0x20dc04(0x311))/0x6+-parseInt(_0x20dc04(0x342))/0x7+parseInt(_0x20dc04(0x43b))/0x8*(parseInt(_0x20dc04(0x2cc))/0x9)+-parseInt(_0x20dc04(0x330))/0xa;if(_0x75d07e===_0x2e8a5f)break;else _0x475126['push'](_0x475126['shift']());}catch(_0x14ec6b){_0x475126['push'](_0x475126['shift']());}}}(_0x4cbb,0xb05b6));const MAX_QUERY_LEN=0xfa0,MAX_REGEXES=0x8,MAX_REGEX_LEN=0x3e8,MAX_SCAN_DOCS=0x1388,TERMS_CAP=0x32,DEFAULT_HIT_SIZE=0x32,MAX_HIT_SIZE=0xc8,TIME_FIELD='timestamp',LOG_FIELD_ALLOWLIST=new Set([_0x28ca6b(0x353),_0x28ca6b(0x22b),_0x28ca6b(0x2bb),'clientId',_0x28ca6b(0x3cb),_0x28ca6b(0x388),_0x28ca6b(0x21a),_0x28ca6b(0x3d2),_0x28ca6b(0x3ca),'spanId',_0x28ca6b(0x46a),_0x28ca6b(0x28b),_0x28ca6b(0x3ff),_0x28ca6b(0x1ee),_0x28ca6b(0x467),_0x28ca6b(0x387),_0x28ca6b(0x206),'errorType',_0x28ca6b(0x38e),'httpStatus',_0x28ca6b(0x448),_0x28ca6b(0x267),_0x28ca6b(0x1f6),_0x28ca6b(0x363),_0x28ca6b(0x249),_0x28ca6b(0x22e),_0x28ca6b(0x3e7),_0x28ca6b(0x1d7),_0x28ca6b(0x462),_0x28ca6b(0x454),_0x28ca6b(0x246),_0x28ca6b(0x277),_0x28ca6b(0x30b),'durationMs','duration',_0x28ca6b(0x32b),'latencyMs','elapsedMs','bytes',_0x28ca6b(0x1fe),_0x28ca6b(0x207)]),LOG_NUMERIC_FIELDS=new Set(['durationMs',_0x28ca6b(0x337),_0x28ca6b(0x32b),_0x28ca6b(0x3d9),_0x28ca6b(0x306),'bytes',_0x28ca6b(0x1fe),_0x28ca6b(0x207),_0x28ca6b(0x448),_0x28ca6b(0x267)]),KV_PATH_RE=/^kv\.[A-Za-z0-9_][A-Za-z0-9_.-]{0,127}$/,KVN_FIELDS=new Set(['durationMs',_0x28ca6b(0x337),_0x28ca6b(0x306),'latencyMs','responseTime',_0x28ca6b(0x40b),_0x28ca6b(0x448),'httpStatus','bytes',_0x28ca6b(0x1fe)]);function isKvPath(_0x260ce0){return KV_PATH_RE['test'](_0x260ce0);}function isKvnPath(_0x2d7d9e){const _0x3086d8=_0x28ca6b,_0x142a68={'bSMht':_0x3086d8(0x3dc)};return _0x2d7d9e['startsWith'](_0x142a68[_0x3086d8(0x205)])&&KVN_FIELDS[_0x3086d8(0x33e)](_0x2d7d9e[_0x3086d8(0x276)](0x4));}const METRIC_FUNCS=new Set(['avg',_0x28ca6b(0x24d),'p99','min','max',_0x28ca6b(0x359)]);class DslError extends Error{constructor(_0x26a8c3,_0x2b79b3,_0x25daaa={}){const _0x25938a=_0x28ca6b,_0x1f403f={'bFnTA':_0x25938a(0x41a)};super(_0x2b79b3),this['name']=_0x1f403f['bFnTA'],this[_0x25938a(0x461)]=_0x26a8c3,Object['assign'](this,_0x25daaa);}}function matchingParen(_0x2a1c32,_0xba7f7d){const _0xa012d1=_0x28ca6b,_0x350280={'wkwVF':function(_0x46769b,_0xd2c774,_0x18f77f){return _0x46769b(_0xd2c774,_0x18f77f);},'FwtdH':function(_0x3a80b7,_0x2cda48){return _0x3a80b7!==_0x2cda48;},'RXxJh':function(_0x36d9e8,_0x1d48ae){return _0x36d9e8<_0x1d48ae;},'Mzatw':function(_0x5729bc,_0x41863a){return _0x5729bc===_0x41863a;},'gMgmu':_0xa012d1(0x288),'LGkra':function(_0x4be65,_0x576678){return _0x4be65<_0x576678;},'kcyaw':function(_0x190874,_0x48307e){return _0x190874===_0x48307e;},'bJpkB':function(_0x1bce8a,_0x2213c4){return _0x1bce8a===_0x2213c4;},'RJnMZ':function(_0x50608d,_0x22694b){return _0x50608d===_0x22694b;},'YkqEh':function(_0x4cc466,_0x537145){return _0x4cc466===_0x537145;}};let _0x40d56a=0x0;for(let _0x32b581=_0xba7f7d;_0x350280[_0xa012d1(0x360)](_0x32b581,_0x2a1c32[_0xa012d1(0x2a9)]);_0x32b581++){const _0x3e4be5=_0x2a1c32[_0x32b581];if(_0x350280[_0xa012d1(0x22d)](_0x3e4be5,'\x22')||_0x350280[_0xa012d1(0x22d)](_0x3e4be5,'\x27')){if(_0xa012d1(0x288)!==_0x350280[_0xa012d1(0x2ed)]){const _0x345e3b=_0x11f723[_0xa012d1(0x33e)](_0xa335b8['field'])?_0x2c3a24[_0x292864[_0xa012d1(0x26b)]]:_0x350280[_0xa012d1(0x1bb)](_0x5a0392,_0x490274,_0x19c716[_0xa012d1(0x26b)]),_0x5d09e2=_0x43fa18(_0x345e3b);if(_0x350280[_0xa012d1(0x3cf)](_0x5d09e2,null))_0x3ebeac['values']['push'](_0x5d09e2);}else{const _0x3f866d=_0x3e4be5;_0x32b581++;while(_0x350280[_0xa012d1(0x414)](_0x32b581,_0x2a1c32[_0xa012d1(0x2a9)])&&_0x2a1c32[_0x32b581]!==_0x3f866d){if(_0x2a1c32[_0x32b581]==='\x5c')_0x32b581++;_0x32b581++;}continue;}}if(_0x350280['Mzatw'](_0x3e4be5,'/')){_0x32b581++;while(_0x350280[_0xa012d1(0x360)](_0x32b581,_0x2a1c32[_0xa012d1(0x2a9)])&&_0x2a1c32[_0x32b581]!=='/'){if(_0x350280['kcyaw'](_0x2a1c32[_0x32b581],'\x5c'))_0x32b581++;_0x32b581++;}continue;}if(_0x350280['bJpkB'](_0x3e4be5,'('))_0x40d56a++;else{if(_0x350280[_0xa012d1(0x3e5)](_0x3e4be5,')')){_0x40d56a--;if(_0x350280[_0xa012d1(0x31f)](_0x40d56a,0x0))return _0x32b581;}}}return-0x1;}function findSection(_0x2012b9,_0xc414c6){const _0x17bf2c=_0x28ca6b,_0x315bf7={'AzmGT':function(_0x13d77d,_0x3d3728){return _0x13d77d+_0x3d3728;},'hSWNv':function(_0x3517cc,_0x3f39cc,_0x151d8a){return _0x3517cc(_0x3f39cc,_0x151d8a);},'vWtcO':function(_0x239e04,_0x1de030){return _0x239e04<_0x1de030;},'hnlMu':_0x17bf2c(0x1d0)},_0x3bc3c0=new RegExp(_0x17bf2c(0x36e)+_0xc414c6+_0x17bf2c(0x2ff),'i'),_0x1df20b=_0x3bc3c0[_0x17bf2c(0x43c)](_0x2012b9);if(!_0x1df20b)return null;const _0x546c68=_0x2012b9[_0x17bf2c(0x275)]('(',_0x315bf7['AzmGT'](_0x1df20b[_0x17bf2c(0x345)],_0x1df20b[0x0][_0x17bf2c(0x2a9)])-0x1),_0x321d9b=_0x315bf7[_0x17bf2c(0x302)](matchingParen,_0x2012b9,_0x546c68);if(_0x315bf7[_0x17bf2c(0x30c)](_0x321d9b,0x0))throw new DslError(_0x315bf7[_0x17bf2c(0x1d4)],_0x17bf2c(0x27b)+_0xc414c6+'(...)',{'detail':_0xc414c6+_0x17bf2c(0x2a2)});return{'content':_0x2012b9[_0x17bf2c(0x276)](_0x315bf7[_0x17bf2c(0x2c3)](_0x546c68,0x1),_0x321d9b),'start':_0x1df20b[_0x17bf2c(0x345)]+(_0x1df20b[0x1]?_0x1df20b[0x1]['length']:0x0),'end':_0x321d9b+0x1};}function tokenizeWhere(_0x462ce6){const _0xe61bdb=_0x28ca6b,_0x47c2a6={'KQnQM':'field','rphmP':'regex','VFAic':function(_0x5a5426,_0x7b2ffd){return _0x5a5426!==_0x7b2ffd;},'Atzqn':function(_0x41b08e,_0x1231ad){return _0x41b08e===_0x1231ad;},'MVdCt':_0xe61bdb(0x1d0),'fDsex':function(_0x4ec21f,_0x5edd1f){return _0x4ec21f<_0x5edd1f;},'yzVij':function(_0xe550a8,_0x3ed989){return _0xe550a8===_0x3ed989;},'BoMlS':_0xe61bdb(0x2e9),'YiyQr':function(_0xe8e88c,_0xd1acc4){return _0xe8e88c===_0xd1acc4;},'PoGAe':function(_0x5e35a0,_0x5dabc7){return _0x5e35a0===_0x5dabc7;},'QFhDW':_0xe61bdb(0x1c3),'sVsEF':_0xe61bdb(0x29f),'RhpNC':function(_0x5514f1,_0x38028f){return _0x5514f1+_0x38028f;},'IzwaL':function(_0x2a40e9,_0x4e5e4e){return _0x2a40e9!==_0x4e5e4e;},'XGMpu':_0xe61bdb(0x220),'YtSAh':function(_0x583e64,_0x363c0d){return _0x583e64+_0x363c0d;},'RWXiZ':function(_0x3b912f,_0x394005){return _0x3b912f>=_0x394005;},'sedSA':'aspas\x20não\x20fechadas\x20no\x20where','IOvnw':function(_0x3f9e82,_0x38ffdf){return _0x3f9e82===_0x38ffdf;},'MHrpo':function(_0x3370bd,_0x3ee9d5){return _0x3370bd===_0x3ee9d5;},'VcILm':'DuTUD','TzYaw':function(_0x420eea,_0x21a291){return _0x420eea===_0x21a291;},'wgKeX':'wvKrD','UggNk':function(_0x1e4942,_0x239ea3){return _0x1e4942+_0x239ea3;},'fcpit':function(_0x591849,_0x128ef5){return _0x591849+_0x128ef5;},'cYvKH':function(_0x20b942,_0x2af8bd){return _0x20b942>=_0x2af8bd;},'MWNhS':'barra\x20de\x20regex\x20não\x20fechada\x20no\x20where','uIMUn':function(_0x48cb70,_0x526d38){return _0x48cb70+_0x526d38;},'OtjHB':function(_0x3ae683,_0x3ef9c1){return _0x3ae683===_0x3ef9c1;},'Lzhod':_0xe61bdb(0x3ad)},_0x1bee5b=[];let _0x2b1572=0x0;const _0x50260f=_0x462ce6['length'];while(_0x47c2a6[_0xe61bdb(0x42d)](_0x2b1572,_0x50260f)){const _0x39e317=_0x462ce6[_0x2b1572];if(/\s/['test'](_0x39e317)){_0x2b1572++;continue;}if(_0x39e317==='('||_0x47c2a6['Atzqn'](_0x39e317,')')||_0x47c2a6[_0xe61bdb(0x45b)](_0x39e317,',')){if(_0x47c2a6[_0xe61bdb(0x25d)](_0xe61bdb(0x2e9),_0x47c2a6['BoMlS']))throw new _0x5657ba(_0x47c2a6['KQnQM'],_0xe61bdb(0x2fa)+_0x5dc481,{'field':_0x3caad7});else{_0x1bee5b[_0xe61bdb(0x3f9)]({'type':_0x39e317}),_0x2b1572++;continue;}}if(_0x47c2a6[_0xe61bdb(0x2c7)](_0x39e317,'\x22')||_0x39e317==='\x27'){if(_0x47c2a6[_0xe61bdb(0x3af)](_0x47c2a6[_0xe61bdb(0x1dc)],_0x47c2a6[_0xe61bdb(0x2de)]))return _0x110f34++,{'kind':_0x47c2a6[_0xe61bdb(0x2f1)],'source':_0x50e4db['source'],'flags':_0x7db242[_0xe61bdb(0x313)]};else{const _0x7e9cba=_0x39e317;let _0x19b923=_0x47c2a6[_0xe61bdb(0x312)](_0x2b1572,0x1),_0x21d780='';while(_0x47c2a6[_0xe61bdb(0x42d)](_0x19b923,_0x50260f)&&_0x47c2a6[_0xe61bdb(0x25d)](_0x462ce6[_0x19b923],_0x7e9cba)){if(_0x462ce6[_0x19b923]==='\x5c'){if(_0x47c2a6[_0xe61bdb(0x259)](_0x47c2a6[_0xe61bdb(0x244)],_0x47c2a6[_0xe61bdb(0x244)])){const _0x8195ca=_0x389f71[_0x3b2b67];if(!_0x8195ca||_0x47c2a6['VFAic'](_0x8195ca['type'],_0x3ac81c))throw new _0x451249(_0xe61bdb(0x1d0),_0xe61bdb(0x1f1)+_0x11e3b2+'\x22\x20no\x20where');_0x25727d++;}else _0x21d780+=_0x462ce6[_0x47c2a6[_0xe61bdb(0x1ef)](_0x19b923,0x1)]||'',_0x19b923+=0x2;}else _0x21d780+=_0x462ce6[_0x19b923],_0x19b923++;}if(_0x47c2a6[_0xe61bdb(0x203)](_0x19b923,_0x50260f))throw new DslError(_0xe61bdb(0x1d0),_0x47c2a6[_0xe61bdb(0x21d)],{'detail':_0x462ce6});_0x1bee5b[_0xe61bdb(0x3f9)]({'type':_0xe61bdb(0x3a4),'value':_0x21d780}),_0x2b1572=_0x47c2a6[_0xe61bdb(0x1ef)](_0x19b923,0x1);continue;}}if(_0x47c2a6['IOvnw'](_0x39e317,'/')){if(_0x47c2a6[_0xe61bdb(0x406)](_0x47c2a6[_0xe61bdb(0x2ce)],_0x47c2a6[_0xe61bdb(0x2ce)])){let _0xc8508c=_0x2b1572+0x1,_0x4efc51='';while(_0xc8508c<_0x50260f&&_0x47c2a6[_0xe61bdb(0x25d)](_0x462ce6[_0xc8508c],'/')){if(_0x47c2a6[_0xe61bdb(0x3de)](_0x462ce6[_0xc8508c],'\x5c')){if(_0x47c2a6[_0xe61bdb(0x44d)](_0xe61bdb(0x377),_0x47c2a6[_0xe61bdb(0x362)]))throw new _0x14d886(_0x47c2a6['KQnQM'],_0xe61bdb(0x1f9)+_0xac6d43,{'field':_0x45ee31});else _0x4efc51+=_0x47c2a6[_0xe61bdb(0x35a)]('\x5c',_0x462ce6[_0x47c2a6[_0xe61bdb(0x286)](_0xc8508c,0x1)]||''),_0xc8508c+=0x2;}else _0x4efc51+=_0x462ce6[_0xc8508c],_0xc8508c++;}if(_0x47c2a6['cYvKH'](_0xc8508c,_0x50260f))throw new DslError(_0x47c2a6['MVdCt'],_0x47c2a6[_0xe61bdb(0x218)],{'detail':_0x462ce6});let _0xe4756f=_0x47c2a6[_0xe61bdb(0x2b3)](_0xc8508c,0x1),_0x581372='';while(_0xe4756f<_0x50260f&&/[a-z]/i['test'](_0x462ce6[_0xe4756f])){if(_0x47c2a6[_0xe61bdb(0x3c2)](_0xe61bdb(0x33f),_0xe61bdb(0x3f8))){if(_0x47c2a6[_0xe61bdb(0x304)](_0x58fc32[_0x4bbf39],'\x5c'))_0x3f9e4e++;_0x5bbf84++;}else _0x581372+=_0x462ce6[_0xe4756f],_0xe4756f++;}_0x1bee5b[_0xe61bdb(0x3f9)]({'type':_0x47c2a6[_0xe61bdb(0x2f1)],'source':_0x4efc51,'flags':_0x581372}),_0x2b1572=_0xe4756f;continue;}else throw new _0x5da563(_0x47c2a6[_0xe61bdb(0x2b8)],'dataset\x20desconhecido:\x20'+_0x2c197b+'\x20(use\x20logs|requests|spans|traces)');}let _0x475273=_0x2b1572,_0x412b34='';while(_0x47c2a6[_0xe61bdb(0x42d)](_0x475273,_0x50260f)&&!/[\s(),"'/]/[_0xe61bdb(0x1f5)](_0x462ce6[_0x475273])){_0x412b34+=_0x462ce6[_0x475273],_0x475273++;}_0x1bee5b[_0xe61bdb(0x3f9)]({'type':_0x47c2a6[_0xe61bdb(0x34d)],'value':_0x412b34}),_0x2b1572=_0x475273;}return _0x1bee5b;}function toClause(_0x879002){const _0x57e9b1=_0x28ca6b,_0x52fd52={'rSiMl':function(_0x2afcf5,_0x42287a){return _0x2afcf5===_0x42287a;},'kGDPp':_0x57e9b1(0x3a4),'RhWQu':_0x57e9b1(0x335),'eLzYf':function(_0x380366,_0x9cd94f){return _0x380366>_0x9cd94f;},'tcFiX':function(_0x46a1b0,_0x36f866){return _0x46a1b0!==_0x36f866;},'UVPlk':_0x57e9b1(0x2d9),'QxOHi':_0x57e9b1(0x1c8),'sYkMr':function(_0x387f2c,_0x98e0ec){return _0x387f2c+_0x98e0ec;},'Xukol':function(_0x576718,_0x84e03a){return _0x576718>=_0x84e03a;},'kpHHE':function(_0x4dd95d,_0x484da4){return _0x4dd95d===_0x484da4;},'tddUP':function(_0x2b3eba,_0x383ac0){return _0x2b3eba===_0x383ac0;},'eHyxn':_0x57e9b1(0x26b),'GCOHL':_0x57e9b1(0x271)};if(_0x52fd52[_0x57e9b1(0x297)](_0x879002[_0x57e9b1(0x41b)],_0x52fd52[_0x57e9b1(0x3c0)]))return{'kind':_0x52fd52[_0x57e9b1(0x3c0)],'value':_0x879002[_0x57e9b1(0x26f)]};if(_0x52fd52[_0x57e9b1(0x297)](_0x879002[_0x57e9b1(0x41b)],_0x52fd52[_0x57e9b1(0x29c)]))return{'kind':_0x52fd52[_0x57e9b1(0x29c)],'source':_0x879002[_0x57e9b1(0x355)],'flags':_0x879002[_0x57e9b1(0x313)]};const _0x566222=_0x879002[_0x57e9b1(0x26f)][_0x57e9b1(0x275)](':');if(_0x52fd52[_0x57e9b1(0x34b)](_0x566222,0x0)){if(_0x52fd52[_0x57e9b1(0x1cf)](_0x52fd52[_0x57e9b1(0x2e6)],_0x52fd52['QxOHi'])){const _0x2e3122=_0x879002[_0x57e9b1(0x26f)][_0x57e9b1(0x276)](0x0,_0x566222);let _0x47ac29=_0x879002[_0x57e9b1(0x26f)][_0x57e9b1(0x276)](_0x52fd52['sYkMr'](_0x566222,0x1));return _0x52fd52[_0x57e9b1(0x36d)](_0x47ac29['length'],0x2)&&(_0x52fd52[_0x57e9b1(0x240)](_0x47ac29[0x0],'\x22')&&_0x47ac29['endsWith']('\x22')||_0x52fd52[_0x57e9b1(0x1b2)](_0x47ac29[0x0],'\x27')&&_0x47ac29[_0x57e9b1(0x423)]('\x27'))&&(_0x47ac29=_0x47ac29[_0x57e9b1(0x276)](0x1,-0x1)),{'kind':_0x52fd52[_0x57e9b1(0x3ef)],'field':_0x2e3122,'value':_0x47ac29};}else _0x499318=_0x2b4986[_0x57e9b1(0x276)](0x1,-0x1);}return{'kind':_0x52fd52['GCOHL'],'value':_0x879002[_0x57e9b1(0x26f)]};}const CMP_OPS=[{'tok':'!=','cmp':'ne'},{'tok':'>=','cmp':_0x28ca6b(0x3f4)},{'tok':'<=','cmp':_0x28ca6b(0x41f)},{'tok':'~','cmp':_0x28ca6b(0x336)},{'tok':'>','cmp':'gt'},{'tok':'<','cmp':'lt'},{'tok':'=','cmp':'eq'},{'tok':':','cmp':'eq'}];function splitFieldOp(_0x3f513c){const _0x1a0de4=_0x28ca6b,_0x440439={'nvbQs':function(_0x49d681,_0x4b263d){return _0x49d681!==_0x4b263d;},'MeGjn':_0x1a0de4(0x365),'OtrKA':function(_0x2f6034,_0x507c80){return _0x2f6034>_0x507c80;},'tNNFo':function(_0xb97855,_0x52a796){return _0xb97855===_0x52a796;},'qcgoF':function(_0x49230e,_0x23871c){return _0x49230e===_0x23871c;},'Ghhvx':function(_0xd0985f,_0x47b43f){return _0xd0985f+_0x47b43f;}};let _0x5aa0cb=null;for(const {tok:_0x42e4b1,cmp:_0x46340a}of CMP_OPS){if(_0x440439[_0x1a0de4(0x23c)](_0x440439['MeGjn'],_0x1a0de4(0x365)))_0x3009c3++,_0x3dd990[_0x1a0de4(0x3f9)](_0x5c2c60());else{const _0x4aaf99=_0x3f513c['indexOf'](_0x42e4b1);_0x440439[_0x1a0de4(0x351)](_0x4aaf99,0x0)&&(_0x440439[_0x1a0de4(0x340)](_0x5aa0cb,null)||_0x4aaf99<_0x5aa0cb[_0x1a0de4(0x21c)]||_0x440439[_0x1a0de4(0x35b)](_0x4aaf99,_0x5aa0cb['idx'])&&_0x42e4b1[_0x1a0de4(0x2a9)]>_0x5aa0cb[_0x1a0de4(0x2e7)]['length'])&&(_0x5aa0cb={'idx':_0x4aaf99,'tok':_0x42e4b1,'cmp':_0x46340a});}}if(!_0x5aa0cb)return null;const _0x3623eb=_0x3f513c[_0x1a0de4(0x276)](0x0,_0x5aa0cb[_0x1a0de4(0x21c)]);if(!/^[A-Za-z_][A-Za-z0-9_.-]*$/[_0x1a0de4(0x1f5)](_0x3623eb))return null;return{'field':_0x3623eb,'cmp':_0x5aa0cb['cmp'],'op':_0x5aa0cb['tok'],'value':_0x3f513c['slice'](_0x440439[_0x1a0de4(0x1d1)](_0x5aa0cb[_0x1a0de4(0x21c)],_0x5aa0cb[_0x1a0de4(0x2e7)][_0x1a0de4(0x2a9)]))};}function unquoteValue(_0x5a6296){const _0x160d99=_0x28ca6b,_0xf644b9={'PSmDX':function(_0x3b29f6,_0x24844c){return _0x3b29f6===_0x24844c;},'ROeuv':'phrase','aqDMx':function(_0x4cda6b,_0x4623f5){return _0x4cda6b===_0x4623f5;},'lIcXO':_0x160d99(0x2f6),'AQQSv':_0x160d99(0x455),'UDZOA':function(_0x571746,_0x42d848){return _0x571746===_0x42d848;},'rfYZC':_0x160d99(0x317),'gyKGF':function(_0x12391d,_0x5f8a1b,_0xf1750){return _0x12391d(_0x5f8a1b,_0xf1750);},'WLATp':function(_0x31b14c,_0x5b66b5){return _0x31b14c>=_0x5b66b5;},'xArkN':_0x160d99(0x26a)};if(_0xf644b9['WLATp'](_0x5a6296[_0x160d99(0x2a9)],0x2)&&(_0xf644b9[_0x160d99(0x2a7)](_0x5a6296[0x0],'\x22')&&_0x5a6296[_0x160d99(0x423)]('\x22')||_0xf644b9[_0x160d99(0x211)](_0x5a6296[0x0],'\x27')&&_0x5a6296[_0x160d99(0x423)]('\x27'))){if(_0xf644b9['aqDMx'](_0xf644b9[_0x160d99(0x217)],_0x160d99(0x26a)))return _0x5a6296['slice'](0x1,-0x1);else{const _0x24c273=_0xf644b9['PSmDX'](_0x2f4927[_0x160d99(0x461)],_0xf644b9[_0x160d99(0x31d)]);if(_0xf644b9['aqDMx'](_0x1b2b57[_0x160d99(0x356)],_0xf644b9['lIcXO']))return{'multi_match':{'query':_0x21fe86['value'],'fields':_0x6f1da4,'type':_0x24c273?_0xf644b9[_0x160d99(0x31d)]:_0xf644b9[_0x160d99(0x443)]}};if(_0xf644b9['PSmDX'](_0xfe7dfb[_0x160d99(0x356)],_0x160d99(0x3b3))||_0xf644b9['UDZOA'](_0x3e88bb[_0x160d99(0x356)],_0xf644b9[_0x160d99(0x1c9)]))return _0xf644b9[_0x160d99(0x293)](_0xdf38a4,_0x34f4b3['value'],_0x24c273);return _0x24c273?{'match_phrase':{'message':_0x4b8e59[_0x160d99(0x26f)]}}:{'match':{'message':_0x513bec[_0x160d99(0x26f)]}};}}return _0x5a6296;}function parseWhereAst(_0x26acb6){const _0x2dfb3e=_0x28ca6b,_0x5715f9={'Afshn':_0x2dfb3e(0x45e),'xDpkS':function(_0x292421,_0x348584){return _0x292421!==_0x348584;},'XXIBC':'malformed','Ymmla':function(_0x219467){return _0x219467();},'uKYha':function(_0x30caf8,_0x56ba91,_0x3b1b41){return _0x30caf8(_0x56ba91,_0x3b1b41);},'liMhK':function(_0x2fcf44,_0x44ebe7){return _0x2fcf44===_0x44ebe7;},'lUUcO':_0x2dfb3e(0x31c),'Mhxjo':_0x2dfb3e(0x394),'hRczU':function(_0x5573c3){return _0x5573c3();},'BKCNO':function(_0x300ad5,_0x197d6c){return _0x300ad5===_0x197d6c;},'rACoR':function(_0x3a888e,_0x13e410){return _0x3a888e<_0x13e410;},'RChTW':function(_0x4a91d5,_0x3e99d3){return _0x4a91d5===_0x3e99d3;},'yefBK':_0x2dfb3e(0x24a),'OIXpU':_0x2dfb3e(0x3a4),'MNJiu':function(_0x153f06,_0x47b887){return _0x153f06===_0x47b887;},'UhXTP':_0x2dfb3e(0x3ad),'LQkHg':function(_0x2f800a){return _0x2f800a();},'DJlES':function(_0x28a0ad,_0x41aceb){return _0x28a0ad===_0x41aceb;},'mQQjl':'and','SfrJs':function(_0x1af1ab,_0x38e294){return _0x1af1ab>_0x38e294;},'VqdQe':function(_0x1211f6,_0x33d7b0){return _0x1211f6+_0x33d7b0;},'TjCux':function(_0x2f9d76){return _0x2f9d76();},'bmhuf':_0x2dfb3e(0x3e6),'EWsOR':_0x2dfb3e(0x2df),'xQFaD':function(_0x202aa1,_0x3a1d1a){return _0x202aa1===_0x3a1d1a;},'dzWEF':function(_0x5b54c3,_0x6ea1cc){return _0x5b54c3(_0x6ea1cc);},'gxMFR':function(_0x2c3efd){return _0x2c3efd();},'NyKNj':function(_0x4c7116){return _0x4c7116();},'Wxeos':function(_0x4943a6){return _0x4943a6();},'oAObl':function(_0x4f0023,_0x12bc59){return _0x4f0023===_0x12bc59;},'hDLML':function(_0x49612e,_0x1d6e2d){return _0x49612e(_0x1d6e2d);},'bxhlz':_0x2dfb3e(0x2f3),'VQyga':function(_0x4bd206,_0x2a8d76){return _0x4bd206!==_0x2a8d76;},'OGmiz':function(_0x2e4848,_0x344648,_0x1af92b,_0x2696da,_0x82e62b){return _0x2e4848(_0x344648,_0x1af92b,_0x2696da,_0x82e62b);},'MnfXS':_0x2dfb3e(0x3c9),'PNKMW':function(_0x314629,_0x4b164f){return _0x314629(_0x4b164f);},'iiddi':'traceId.keyword','mHaZZ':_0x2dfb3e(0x2a3),'xNhUc':function(_0x204fd4,_0x11b91e){return _0x204fd4(_0x11b91e);},'ZVaaR':function(_0x35d242,_0x23e3aa){return _0x35d242(_0x23e3aa);},'gDube':_0x2dfb3e(0x323),'xIAwP':function(_0x34f3e5,_0x18d16d){return _0x34f3e5(_0x18d16d);},'xJhlt':_0x2dfb3e(0x38a),'pscoE':function(_0x4c14b8,_0x3b4022){return _0x4c14b8(_0x3b4022);},'SoTVr':_0x2dfb3e(0x2f9),'HRnvZ':function(_0xde8b76,_0x33dedb){return _0xde8b76(_0x33dedb);},'QfCko':'gatewayId.keyword','MrOlJ':'clientId.keyword','pspag':function(_0x4db059,_0x48ded2){return _0x4db059<_0x48ded2;},'YeqLT':_0x2dfb3e(0x40d),'rZKgV':function(_0x519bca,_0x4f5428){return _0x519bca!==_0x4f5428;},'rkAGN':_0x2dfb3e(0x1d8),'DBSVE':'xLMSi','NSzzF':function(_0x155c7f,_0x45c493){return _0x155c7f===_0x45c493;},'WCkGr':'regex','WwMyg':function(_0x315a3b,_0x3a3975){return _0x315a3b===_0x3a3975;},'CVuUg':'parêntese\x20fechando\x20sem\x20operando','BgaEw':function(_0x28e553,_0x5c4964){return _0x28e553!==_0x5c4964;},'UbLGu':'CtCSm','tLBes':'contains','eCGgn':_0x2dfb3e(0x3c6),'PMUzi':_0x2dfb3e(0x29e),'NQxNj':'exists','LPcch':_0x2dfb3e(0x32d),'pCOZX':function(_0x5a77d7,_0x53156d){return _0x5a77d7===_0x53156d;},'KkDVy':_0x2dfb3e(0x204),'AqtWk':function(_0xea1641,_0x4d2803){return _0xea1641===_0x4d2803;},'EXbTD':function(_0x5df3bd,_0x3cdbb6){return _0x5df3bd===_0x3cdbb6;},'psPVW':function(_0x2511a2,_0xeff579){return _0x2511a2!==_0xeff579;},'tarkt':_0x2dfb3e(0x2ad),'EFgju':_0x2dfb3e(0x375),'EvLuL':function(_0x5304e8,_0x271538){return _0x5304e8(_0x271538);},'bCBTh':_0x2dfb3e(0x200),'EKphR':_0x2dfb3e(0x26b),'ibYWH':'term','Svbiu':function(_0x105e28){return _0x105e28();},'zwgFx':function(_0x339545,_0x2b664c){return _0x339545<_0x2b664c;}};let _0x1de996=0x0;const _0x332438=()=>_0x26acb6[_0x1de996],_0x50b450=(_0x45a879,_0x5e82b4)=>Boolean(_0x45a879&&_0x45a879[_0x2dfb3e(0x41b)]===_0x2dfb3e(0x3ad)&&_0x5e82b4[_0x2dfb3e(0x1f5)](_0x45a879[_0x2dfb3e(0x26f)])),_0x406eee=_0x4bce4b=>{const _0x5201cc=_0x2dfb3e;if(_0x5715f9['Afshn']===_0x5201cc(0x45e)){const _0x44c6c4=_0x26acb6[_0x1de996];if(!_0x44c6c4||_0x5715f9[_0x5201cc(0x38f)](_0x44c6c4[_0x5201cc(0x41b)],_0x4bce4b))throw new DslError(_0x5201cc(0x1d0),'esperado\x20\x22'+_0x4bce4b+'\x22\x20no\x20where');_0x1de996++;}else _0x269369['add'](_0x3d682a[_0x5201cc(0x2be)][_0x5201cc(0x26b)]);};function _0x528507(){const _0x5da2e4=_0x2dfb3e,_0x2abac9=[_0x5715f9[_0x5da2e4(0x2d7)](_0x23d795)];while(_0x5715f9[_0x5da2e4(0x1ea)](_0x50b450,_0x5715f9['Ymmla'](_0x332438),/^or$/i)){if(_0x5715f9[_0x5da2e4(0x294)](_0x5715f9['lUUcO'],_0x5715f9['Mhxjo']))throw new _0x55cc6f(_0x5715f9[_0x5da2e4(0x3a9)],'contains(...)\x20só\x20é\x20suportado\x20no\x20dataset\x20traces\x20(recebido:\x20'+_0x5e6b7b['name']+')');else _0x1de996++,_0x2abac9[_0x5da2e4(0x3f9)](_0x5715f9[_0x5da2e4(0x266)](_0x23d795));}return _0x5715f9[_0x5da2e4(0x233)](_0x2abac9[_0x5da2e4(0x2a9)],0x1)?_0x2abac9[0x0]:{'op':'or','children':_0x2abac9};}function _0x23d795(){const _0x563f32=_0x2dfb3e,_0x5d7be8={'lzggh':function(_0x463543,_0x54ae63){return _0x463543-_0x54ae63;},'tfnmo':function(_0x21a530,_0x5b7dec,_0x2343b0){return _0x5715f9['uKYha'](_0x21a530,_0x5b7dec,_0x2343b0);},'oFIeQ':function(_0x67831a,_0x50c70f){const _0x418094=_0x14fa;return _0x5715f9[_0x418094(0x38d)](_0x67831a,_0x50c70f);},'PVOEQ':_0x5715f9[_0x563f32(0x3a9)],'ecYTV':function(_0x8eab91,_0x2b5385){return _0x8eab91+_0x2b5385;}};if(_0x5715f9[_0x563f32(0x27a)]('InhPn',_0x5715f9[_0x563f32(0x307)])){const _0x26faf2=new _0x213caa(_0x563f32(0x36e)+_0x35d42d+_0x563f32(0x2ff),'i'),_0x937c08=_0x26faf2[_0x563f32(0x43c)](_0x441618);if(!_0x937c08)return null;const _0x2470fc=_0x474aba[_0x563f32(0x275)]('(',_0x5d7be8[_0x563f32(0x451)](_0x937c08[_0x563f32(0x345)]+_0x937c08[0x0]['length'],0x1)),_0x278256=_0x5d7be8[_0x563f32(0x3f3)](_0x5a513a,_0x54724b,_0x2470fc);if(_0x5d7be8[_0x563f32(0x420)](_0x278256,0x0))throw new _0x321c2d(_0x5d7be8['PVOEQ'],_0x563f32(0x27b)+_0x3be25d+_0x563f32(0x2a2),{'detail':_0xf16b3d+_0x563f32(0x2a2)});return{'content':_0x4bf5dd[_0x563f32(0x276)](_0x5d7be8['ecYTV'](_0x2470fc,0x1),_0x278256),'start':_0x937c08['index']+(_0x937c08[0x1]?_0x937c08[0x1][_0x563f32(0x2a9)]:0x0),'end':_0x5d7be8['ecYTV'](_0x278256,0x1)};}else{const _0x4a81b8=[_0x2ca525()];for(;;){const _0x4ff4c4=_0x5715f9[_0x563f32(0x266)](_0x332438);if(_0x50b450(_0x4ff4c4,/^and$/i)){_0x1de996++,_0x4a81b8[_0x563f32(0x3f9)](_0x5715f9[_0x563f32(0x266)](_0x2ca525));continue;}const _0x412224=_0x4ff4c4&&(_0x4ff4c4[_0x563f32(0x41b)]===_0x5715f9[_0x563f32(0x28e)]||_0x5715f9[_0x563f32(0x294)](_0x4ff4c4[_0x563f32(0x41b)],_0x563f32(0x335))||_0x5715f9['MNJiu'](_0x4ff4c4['type'],'(')||_0x5715f9[_0x563f32(0x233)](_0x4ff4c4[_0x563f32(0x41b)],_0x5715f9[_0x563f32(0x386)])&&!/^or$/i['test'](_0x4ff4c4[_0x563f32(0x26f)]));if(_0x412224){if(_0x563f32(0x321)===_0x563f32(0x321)){_0x4a81b8['push'](_0x5715f9[_0x563f32(0x34c)](_0x2ca525));continue;}else return{'bool':{'filter':[_0x106aac]}};}break;}return _0x5715f9[_0x563f32(0x30d)](_0x4a81b8[_0x563f32(0x2a9)],0x1)?_0x4a81b8[0x0]:{'op':_0x5715f9['mQQjl'],'children':_0x4a81b8};}}function _0x2ca525(){const _0x4eb011=_0x2dfb3e,_0x267a20={'BoFcr':function(_0x551d18,_0x1005f7){return _0x551d18>_0x1005f7;},'hpzBk':function(_0x36373c,_0x1787ec){const _0x1aac3f=_0x14fa;return _0x5715f9[_0x1aac3f(0x38d)](_0x36373c,_0x1787ec);},'KwGtZ':function(_0xa81bb2,_0x19552c){const _0x4b2141=_0x14fa;return _0x5715f9[_0x4b2141(0x2e1)](_0xa81bb2,_0x19552c);},'gFhzD':function(_0x331bf5,_0xede859){const _0xe0bb16=_0x14fa;return _0x5715f9[_0xe0bb16(0x433)](_0x331bf5,_0xede859);},'PQGBU':function(_0x168442,_0x5bead6){const _0x5024cf=_0x14fa;return _0x5715f9[_0x5024cf(0x1dd)](_0x168442,_0x5bead6);}},_0x40eb1f=_0x5715f9[_0x4eb011(0x2bc)](_0x332438);if(_0x50b450(_0x40eb1f,/^not$/i)){if(_0x5715f9[_0x4eb011(0x30e)]!==_0x5715f9[_0x4eb011(0x30e)]){let _0x4f85dc=null;for(const {tok:_0x20efef,cmp:_0x35e0f7}of _0x572f82){const _0x5e9d6a=_0x5f5555[_0x4eb011(0x275)](_0x20efef);_0x267a20[_0x4eb011(0x2fb)](_0x5e9d6a,0x0)&&(_0x4f85dc===null||_0x267a20[_0x4eb011(0x357)](_0x5e9d6a,_0x4f85dc['idx'])||_0x267a20['KwGtZ'](_0x5e9d6a,_0x4f85dc[_0x4eb011(0x21c)])&&_0x267a20[_0x4eb011(0x3ab)](_0x20efef[_0x4eb011(0x2a9)],_0x4f85dc[_0x4eb011(0x2e7)][_0x4eb011(0x2a9)]))&&(_0x4f85dc={'idx':_0x5e9d6a,'tok':_0x20efef,'cmp':_0x35e0f7});}if(!_0x4f85dc)return null;const _0x54c371=_0x4b4fcf['slice'](0x0,_0x4f85dc['idx']);if(!/^[A-Za-z_][A-Za-z0-9_.-]*$/[_0x4eb011(0x1f5)](_0x54c371))return null;return{'field':_0x54c371,'cmp':_0x4f85dc[_0x4eb011(0x21b)],'op':_0x4f85dc[_0x4eb011(0x2e7)],'value':_0x349820['slice'](_0x267a20[_0x4eb011(0x43f)](_0x4f85dc[_0x4eb011(0x21c)],_0x4f85dc[_0x4eb011(0x2e7)][_0x4eb011(0x2a9)]))};}else return _0x1de996++,{'op':_0x5715f9[_0x4eb011(0x301)],'child':_0x2ca525()};}if(_0x40eb1f&&_0x5715f9[_0x4eb011(0x36a)](_0x40eb1f[_0x4eb011(0x41b)],'(')){_0x1de996++;const _0x2208e9=_0x5715f9[_0x4eb011(0x34c)](_0x528507);return _0x5715f9[_0x4eb011(0x422)](_0x406eee,')'),_0x2208e9;}return _0x5715f9['gxMFR'](_0x1db0b2);}function _0x1db0b2(){const _0x430aca=_0x2dfb3e,_0x5da83b={'kmxVf':function(_0x2a9419,_0x5cc270){const _0x36eba1=_0x14fa;return _0x5715f9[_0x36eba1(0x433)](_0x2a9419,_0x5cc270);},'tlJFF':function(_0x4fc4a6,_0xdb07d0){const _0x2bf2f8=_0x14fa;return _0x5715f9[_0x2bf2f8(0x36c)](_0x4fc4a6,_0xdb07d0);},'XVvQR':function(_0x4da5d4,_0x58b6e5){const _0xef86e2=_0x14fa;return _0x5715f9[_0xef86e2(0x294)](_0x4da5d4,_0x58b6e5);}};if(_0x5715f9[_0x430aca(0x32c)]===_0x430aca(0x221))_0x18b643+=_0x1d8191[_0x4bd30b+0x1]||'',_0x4966bd+=0x2;else{const _0xe5eff9=_0x26acb6[_0x1de996];if(!_0xe5eff9)throw new DslError(_0x430aca(0x1d0),_0x430aca(0x42a));if(_0x5715f9[_0x430aca(0x27c)](_0xe5eff9[_0x430aca(0x41b)],_0x5715f9[_0x430aca(0x28e)])){if(_0x5715f9[_0x430aca(0x1fb)](_0x5715f9[_0x430aca(0x3eb)],_0x5715f9[_0x430aca(0x263)]))return _0x1de996++,{'kind':_0x5715f9[_0x430aca(0x28e)],'value':_0xe5eff9[_0x430aca(0x26f)]};else{const _0x50f88a=_0x8af650[_0x430aca(0x275)](_0x3e29eb);_0x5da83b[_0x430aca(0x1fa)](_0x50f88a,0x0)&&(_0x1f9f36===null||_0x5da83b[_0x430aca(0x417)](_0x50f88a,_0x38cb60[_0x430aca(0x21c)])||_0x5da83b[_0x430aca(0x424)](_0x50f88a,_0x407c02[_0x430aca(0x21c)])&&_0x3b67e8[_0x430aca(0x2a9)]>_0x44226b[_0x430aca(0x2e7)][_0x430aca(0x2a9)])&&(_0x4e42d6={'idx':_0x50f88a,'tok':_0x33734e,'cmp':_0xebb80f});}}if(_0x5715f9[_0x430aca(0x3e4)](_0xe5eff9[_0x430aca(0x41b)],_0x5715f9[_0x430aca(0x1e0)]))return _0x1de996++,{'kind':_0x5715f9[_0x430aca(0x1e0)],'source':_0xe5eff9['source'],'flags':_0xe5eff9[_0x430aca(0x313)]};if(_0x5715f9[_0x430aca(0x23d)](_0xe5eff9[_0x430aca(0x41b)],')'))throw new DslError(_0x5715f9[_0x430aca(0x3a9)],_0x5715f9['CVuUg']);if(_0x5715f9['liMhK'](_0xe5eff9[_0x430aca(0x41b)],','))throw new DslError(_0x5715f9[_0x430aca(0x3a9)],_0x430aca(0x2e0));_0x1de996++;const _0x2152d1=_0xe5eff9[_0x430aca(0x26f)];if(/^contains$/i[_0x430aca(0x1f5)](_0x2152d1)&&_0x26acb6[_0x1de996]&&_0x26acb6[_0x1de996][_0x430aca(0x41b)]==='('){if(_0x5715f9[_0x430aca(0x1e1)](_0x5715f9['UbLGu'],_0x430aca(0x1bd))){const _0x411da9=_0x5715f9['NyKNj'](_0x5cedf2);if(_0x4dc9c9(_0x411da9,/^not$/i))return _0x189513++,{'op':_0x5715f9[_0x430aca(0x301)],'child':_0x5715f9[_0x430aca(0x3b9)](_0x56833d)};if(_0x411da9&&_0x5715f9[_0x430aca(0x27c)](_0x411da9['type'],'(')){_0x3c5523++;const _0x518eda=_0x5715f9[_0x430aca(0x258)](_0x5d062d);return _0x5715f9['hDLML'](_0x152d91,')'),_0x518eda;}return _0x172cea();}else{_0x1de996++;const _0x43fded=_0x528507();return _0x406eee(')'),{'kind':_0x5715f9[_0x430aca(0x436)],'expr':_0x43fded};}}if(/^exists$/i['test'](_0x2152d1)){if(_0x5715f9[_0x430aca(0x463)](_0x5715f9['eCGgn'],_0x5715f9['eCGgn']))_0x5d26ef['terms'][_0x430aca(0x28f)]={'_count':_0x5715f9[_0x430aca(0x2fd)]};else{_0x5715f9[_0x430aca(0x281)](_0x406eee,'(');const _0x3bc930=_0x26acb6[_0x1de996];if(!_0x3bc930||_0x5715f9[_0x430aca(0x38f)](_0x3bc930[_0x430aca(0x41b)],_0x5715f9[_0x430aca(0x386)]))throw new DslError(_0x5715f9[_0x430aca(0x3a9)],_0x5715f9[_0x430aca(0x431)]);return _0x1de996++,_0x5715f9[_0x430aca(0x279)](_0x406eee,')'),{'kind':_0x5715f9[_0x430aca(0x318)],'field':_0x3bc930['value']};}}const _0x590327=_0x26acb6[_0x1de996];if(_0x5715f9[_0x430aca(0x1ea)](_0x50b450,_0x590327,/^in$/i)&&_0x26acb6[_0x1de996+0x1]&&_0x5715f9[_0x430aca(0x3e4)](_0x26acb6[_0x5715f9[_0x430aca(0x1dd)](_0x1de996,0x1)][_0x430aca(0x41b)],'(')&&!_0x5715f9[_0x430aca(0x398)](splitFieldOp,_0x2152d1)){_0x1de996+=0x2;const _0x347750=[];for(;;){const _0x191e93=_0x26acb6[_0x1de996];if(!_0x191e93)throw new DslError(_0x5715f9[_0x430aca(0x3a9)],_0x5715f9[_0x430aca(0x428)]);if(_0x5715f9[_0x430aca(0x3ea)](_0x191e93[_0x430aca(0x41b)],')')){if(_0x5715f9[_0x430aca(0x1fb)](_0x5715f9[_0x430aca(0x2c0)],_0x5715f9[_0x430aca(0x2c0)]))_0x2f587e['aggs']=_0x5715f9[_0x430aca(0x1ea)](_0x23d928,_0x1d6a42,_0x2d3b7a[_0x430aca(0x391)]),_0xd881ed[_0x430aca(0x30f)]['order']=_0x6d4a6b;else{_0x1de996++;break;}}if(_0x5715f9[_0x430aca(0x435)](_0x191e93[_0x430aca(0x41b)],',')){_0x1de996++;continue;}if(_0x5715f9[_0x430aca(0x2ef)](_0x191e93[_0x430aca(0x41b)],_0x430aca(0x3ad))||_0x5715f9['liMhK'](_0x191e93[_0x430aca(0x41b)],_0x5715f9[_0x430aca(0x28e)])){if(_0x5715f9[_0x430aca(0x3e8)](_0x5715f9[_0x430aca(0x383)],_0x5715f9[_0x430aca(0x383)])){if(_0x5715f9[_0x430aca(0x463)](_0xd051f7[_0x430aca(0x356)],'traces'))throw new _0xac7f81('malformed',_0x430aca(0x2fc)+_0x5f5b0a[_0x430aca(0x356)]+')');if(_0x3c430e)throw new _0x1966e4(_0x5715f9[_0x430aca(0x3a9)],_0x430aca(0x35e));_0x5715f9[_0x430aca(0x33a)](_0x270ee9,_0x416c6c[_0x430aca(0x3b1)],_0xadd9f1,_0x39a5aa['spans'],![]);return;}else{_0x347750[_0x430aca(0x3f9)](unquoteValue(_0x191e93['value'])),_0x1de996++;continue;}}throw new DslError('malformed',_0x5715f9[_0x430aca(0x380)]);}if(_0x5715f9[_0x430aca(0x435)](_0x347750[_0x430aca(0x2a9)],0x0))throw new DslError(_0x430aca(0x1d0),_0x430aca(0x222));return{'kind':'in','field':_0x2152d1,'values':_0x347750};}const _0x5b0b86=_0x5715f9['EvLuL'](splitFieldOp,_0x2152d1);if(_0x5b0b86){let _0x57775f=_0x5b0b86[_0x430aca(0x26f)];if(_0x5715f9[_0x430aca(0x233)](_0x57775f,'')){if(_0x5715f9[_0x430aca(0x3b7)]===_0x5715f9[_0x430aca(0x3b7)]){const _0x9711f=_0x26acb6[_0x1de996];if(_0x9711f&&_0x5715f9['WwMyg'](_0x9711f['type'],_0x5715f9[_0x430aca(0x28e)]))_0x57775f=_0x9711f['value'],_0x1de996++;else throw new DslError(_0x430aca(0x1d0),_0x430aca(0x223)+_0x5b0b86[_0x430aca(0x26b)]+_0x5b0b86['op']+'\x22');}else{const _0xf5866=_0x26fc28=>({'wildcard':{[_0x26fc28]:{'value':'*'+_0xc94aee+'*','case_insensitive':!![]}}});return{'bool':{'should':[_0x905de2?{'match_phrase':{'name':_0x41d7f7}}:{'match':{'name':{'query':_0x7eb3b7,'boost':0x3}}},_0xf5866(_0x5715f9[_0x430aca(0x33c)]),_0x5715f9['PNKMW'](_0xf5866,_0x5715f9[_0x430aca(0x1e5)]),_0xf5866(_0x5715f9[_0x430aca(0x20a)]),_0x5715f9[_0x430aca(0x403)](_0xf5866,_0x430aca(0x2cf)),_0x5715f9[_0x430aca(0x279)](_0xf5866,_0x5715f9[_0x430aca(0x44c)]),_0x5715f9['xIAwP'](_0xf5866,_0x5715f9[_0x430aca(0x2ee)]),_0x5715f9[_0x430aca(0x28d)](_0xf5866,_0x5715f9['SoTVr']),_0x5715f9[_0x430aca(0x398)](_0xf5866,_0x5715f9[_0x430aca(0x1fc)]),_0x5715f9[_0x430aca(0x398)](_0xf5866,_0x5715f9[_0x430aca(0x21f)])],'minimum_should_match':0x1}};}}else _0x57775f=unquoteValue(_0x57775f);return{'kind':_0x5715f9[_0x430aca(0x2d5)],'field':_0x5b0b86[_0x430aca(0x26b)],'cmp':_0x5b0b86[_0x430aca(0x21b)],'value':_0x57775f};}return{'kind':_0x5715f9[_0x430aca(0x379)],'value':_0x2152d1};}}const _0xf14e85=_0x5715f9['Svbiu'](_0x528507);if(_0x5715f9[_0x2dfb3e(0x27d)](_0x1de996,_0x26acb6[_0x2dfb3e(0x2a9)])){const _0x4407ff=_0x26acb6[_0x1de996];throw new DslError(_0x5715f9['XXIBC'],'token\x20inesperado\x20no\x20where:\x20\x22'+(_0x4407ff[_0x2dfb3e(0x26f)]||_0x4407ff[_0x2dfb3e(0x41b)])+'\x22');}return _0xf14e85;}function flattenAstLeaves(_0x43241e,_0x1e234a=[]){const _0x23f742=_0x28ca6b,_0xe0cd6b={'doLqM':_0x23f742(0x399),'VxUAu':function(_0x1a19bc,_0x26935e){return _0x1a19bc===_0x26935e;},'QPmXl':_0x23f742(0x26b),'hxKgn':'message','zpZPi':_0x23f742(0x28a),'IjhpH':function(_0x26b62d,_0x43c541){return _0x26b62d===_0x43c541;},'GHrmk':_0x23f742(0x1b3),'RHclG':function(_0x25673e,_0x3ac649){return _0x25673e===_0x3ac649;},'kDMtH':'not','YyIop':_0x23f742(0x1b7),'sFSDT':function(_0x446439,_0x45ba36,_0x220316){return _0x446439(_0x45ba36,_0x220316);}};if(!_0x43241e)return _0x1e234a;if(_0xe0cd6b['VxUAu'](_0x43241e['op'],_0xe0cd6b[_0x23f742(0x429)])||_0xe0cd6b[_0x23f742(0x2cd)](_0x43241e['op'],'or'))return _0xe0cd6b[_0x23f742(0x29a)]===_0x23f742(0x1b3)?(_0x43241e['children'][_0x23f742(0x295)](_0x2a01bc=>flattenAstLeaves(_0x2a01bc,_0x1e234a)),_0x1e234a):_0x4dc883[_0x23f742(0x41b)]===_0xe0cd6b[_0x23f742(0x3e1)]?_0xe0cd6b[_0x23f742(0x3e1)]:_0x2fc3a4[_0x23f742(0x41b)]+'('+_0x19d51f['field']+')';if(_0xe0cd6b['RHclG'](_0x43241e['op'],_0xe0cd6b[_0x23f742(0x2a8)])){if(_0xe0cd6b[_0x23f742(0x2e3)](_0xe0cd6b['YyIop'],_0xe0cd6b[_0x23f742(0x38c)]))return _0xe0cd6b[_0x23f742(0x225)](flattenAstLeaves,_0x43241e[_0x23f742(0x1e7)],_0x1e234a),_0x1e234a;else{const _0x27f9dc=new _0x42793b([_0xe0cd6b[_0x23f742(0x427)],_0x27099c]);return _0x39a7a6[_0x23f742(0x2ba)][_0x23f742(0x295)](_0xd5e14a=>{const _0x4055b9=_0x23f742;if(!_0x30fcfc[_0x4055b9(0x299)][_0x4055b9(0x33e)](_0xd5e14a))_0x27f9dc[_0x4055b9(0x1e9)](_0xd5e14a);}),_0x5711f6['calculate'][_0x23f742(0x41b)]!==_0xe0cd6b[_0x23f742(0x3e1)]&&!_0x2a7b3a[_0x23f742(0x299)][_0x23f742(0x33e)](_0x3b7d73['calculate']['field'])&&_0x27f9dc[_0x23f742(0x1e9)](_0x37b7d6[_0x23f742(0x2be)][_0x23f742(0x26b)]),_0x30a78f['clauses']['forEach'](_0x3df415=>{const _0x54cbd7=_0x23f742;if(_0xe0cd6b[_0x54cbd7(0x2e3)](_0x3df415[_0x54cbd7(0x461)],_0xe0cd6b[_0x54cbd7(0x2b5)]))_0x27f9dc[_0x54cbd7(0x1e9)](_0x3df415[_0x54cbd7(0x26b)]);}),_0x579712['from'](_0x27f9dc);}}return _0x1e234a[_0x23f742(0x3f9)](_0x43241e),_0x1e234a;}const RANGE_CMPS=new Set(['gt','gte','lt',_0x28ca6b(0x41f)]);function isRangeableField(_0x3db616){const _0x1e1651=_0x28ca6b,_0x216715={'FunDO':function(_0x5120d5,_0x538945){return _0x5120d5(_0x538945);},'NUsSG':function(_0x51a919,_0x492c19){return _0x51a919===_0x492c19;}};return _0x216715[_0x1e1651(0x430)](isKvnPath,_0x3db616)||LOG_NUMERIC_FIELDS[_0x1e1651(0x33e)](_0x3db616)||_0x216715[_0x1e1651(0x25c)](_0x3db616,_0x1e1651(0x3ce));}function isKnownField(_0x19bb86,_0xc26c8f){const _0x36c6ac=_0x28ca6b,_0x416baf={'dTCMl':function(_0xe9504d,_0x1eee79){return _0xe9504d===_0x1eee79;},'YFcxE':_0x36c6ac(0x28b),'jquHT':_0x36c6ac(0x3ce),'EgCQq':function(_0x376c6e,_0x4a2703){return _0x376c6e(_0x4a2703);}};return _0x416baf[_0x36c6ac(0x3df)](_0x19bb86,_0x416baf[_0x36c6ac(0x1d5)])||_0x416baf[_0x36c6ac(0x3df)](_0x19bb86,_0x416baf['jquHT'])||LOG_FIELD_ALLOWLIST['has'](_0x19bb86)||isKvPath(_0x19bb86)||_0x416baf[_0x36c6ac(0x1cd)](isKvnPath,_0x19bb86)||_0xc26c8f&&_0xc26c8f[_0x36c6ac(0x33e)](_0x19bb86);}function validateWhereAst(_0x31d3e8,_0x55dedc,_0x57f6af,_0x5cbe94=![]){const _0x4b078d=_0x28ca6b,_0x3bd01b={'JSRKY':_0x4b078d(0x1d0),'ZAegP':function(_0x25780b,_0x3f271c){return _0x25780b===_0x3f271c;},'FqnsZ':_0x4b078d(0x3a4),'NfjOS':function(_0x19859f,_0x383057){return _0x19859f===_0x383057;},'tUqYc':function(_0x489cd8,_0x3e9af1){return _0x489cd8>_0x3e9af1;},'MYsHf':function(_0x2b36bc,_0x2c5f94){return _0x2b36bc>=_0x2c5f94;},'UimeL':function(_0x19b1ac,_0x5b6054){return _0x19b1ac===_0x5b6054;},'ydEpU':function(_0x42e61a,_0x28a0d3){return _0x42e61a===_0x28a0d3;},'sVWuJ':'term','LvHxq':function(_0x3de538,_0x1b9dbf){return _0x3de538===_0x1b9dbf;},'tJHeX':function(_0x23ee65,_0x4adf47){return _0x23ee65===_0x4adf47;},'cZxkf':function(_0x2a45b4,_0x52cb76){return _0x2a45b4(_0x52cb76);},'OqdrU':function(_0x12a02f,_0x5c4ffa){return _0x12a02f-_0x5c4ffa;},'xZjdL':function(_0x5df864,_0x3512d3,_0x5b09f8){return _0x5df864(_0x3512d3,_0x5b09f8);},'XxCNZ':function(_0x46d09a,_0x110393){return _0x46d09a+_0x110393;},'pWKIL':function(_0x4a7112,_0x401b59){return _0x4a7112===_0x401b59;},'mdMni':_0x4b078d(0x28a),'gCRWp':function(_0x55aea4,_0x1dd979){return _0x55aea4===_0x1dd979;},'bdmVU':function(_0x341ea9,_0x536cb7){return _0x341ea9===_0x536cb7;},'jYcTq':_0x4b078d(0x2df),'FLkKY':function(_0x48e477,_0x205c79,_0x5447f5,_0x3cab17,_0x308b09){return _0x48e477(_0x205c79,_0x5447f5,_0x3cab17,_0x308b09);},'OUBJg':_0x4b078d(0x335),'nHDli':_0x4b078d(0x366),'WVgfI':'contains','SadLW':_0x4b078d(0x1b6),'jdczz':_0x4b078d(0x361),'BxFaK':function(_0x46a8a7,_0x2f6e5a){return _0x46a8a7!==_0x2f6e5a;},'nnAmg':_0x4b078d(0x35e),'AeTVm':function(_0x3f3478,_0xc5c952,_0x4fb46a,_0x260196,_0x935024){return _0x3f3478(_0xc5c952,_0x4fb46a,_0x260196,_0x935024);},'SRYjv':_0x4b078d(0x3e2),'Bbvmz':_0x4b078d(0x42b),'ChqAQ':_0x4b078d(0x26b),'OiAoY':_0x4b078d(0x3d8),'OzyFn':function(_0x3625a0,_0x108c45){return _0x3625a0===_0x108c45;},'ePwfU':_0x4b078d(0x1b5),'ojbkf':function(_0x340175,_0x59143f){return _0x340175===_0x59143f;},'fuzqA':_0x4b078d(0x39e),'ACiuh':function(_0x1243fd,_0x4a1d55){return _0x1243fd===_0x4a1d55;},'sKMZB':_0x4b078d(0x2ca),'wmVQh':function(_0x13b583,_0x43cbf0){return _0x13b583===_0x43cbf0;},'XinID':'text'};if(!_0x31d3e8)return;if(_0x3bd01b[_0x4b078d(0x3e9)](_0x31d3e8['op'],_0x3bd01b[_0x4b078d(0x2bf)])){_0x31d3e8[_0x4b078d(0x269)]['forEach'](_0x12d76e=>validateWhereAst(_0x12d76e,_0x55dedc,_0x57f6af,_0x5cbe94));return;}if(_0x3bd01b[_0x4b078d(0x257)](_0x31d3e8['op'],'or')){_0x31d3e8[_0x4b078d(0x269)][_0x4b078d(0x295)](_0x1218e=>validateWhereAst(_0x1218e,_0x55dedc,_0x57f6af,!![]));return;}if(_0x3bd01b[_0x4b078d(0x237)](_0x31d3e8['op'],_0x3bd01b[_0x4b078d(0x273)])){_0x3bd01b[_0x4b078d(0x402)](validateWhereAst,_0x31d3e8[_0x4b078d(0x1e7)],_0x55dedc,_0x57f6af,!![]);return;}if(_0x3bd01b[_0x4b078d(0x32a)](_0x31d3e8[_0x4b078d(0x461)],_0x4b078d(0x335))){if(!_0x57f6af[_0x4b078d(0x364)])throw new DslError(_0x3bd01b['OUBJg'],_0x4b078d(0x21e)+_0x57f6af[_0x4b078d(0x356)]);if(_0x5cbe94)throw new DslError(_0x4b078d(0x335),_0x3bd01b['nHDli']);return;}if(_0x31d3e8['kind']===_0x3bd01b[_0x4b078d(0x1c7)]){if(_0x3bd01b[_0x4b078d(0x2a5)](_0x3bd01b['SadLW'],_0x3bd01b[_0x4b078d(0x30a)])){const _0x44babc=_0x4339cf[_0x3920e2];throw new _0x15b005(_0x3bd01b['JSRKY'],_0x4b078d(0x437)+(_0x44babc[_0x4b078d(0x26f)]||_0x44babc[_0x4b078d(0x41b)])+'\x22');}else{if(_0x3bd01b[_0x4b078d(0x1fd)](_0x57f6af[_0x4b078d(0x356)],_0x4b078d(0x317)))throw new DslError(_0x3bd01b[_0x4b078d(0x2cb)],_0x4b078d(0x2fc)+_0x57f6af[_0x4b078d(0x356)]+')');if(_0x5cbe94)throw new DslError('malformed',_0x3bd01b['nnAmg']);_0x3bd01b[_0x4b078d(0x1cc)](validateWhereAst,_0x31d3e8['expr'],_0x55dedc,DATASET_PROFILES[_0x4b078d(0x3b3)],![]);return;}}if(_0x3bd01b['NfjOS'](_0x31d3e8[_0x4b078d(0x461)],_0x3bd01b['FqnsZ'])||_0x31d3e8[_0x4b078d(0x461)]===_0x3bd01b[_0x4b078d(0x39c)])return;const _0xd7d4ea=_0x31d3e8[_0x4b078d(0x26b)];if(!_0x57f6af[_0x4b078d(0x2e5)](_0xd7d4ea,_0x55dedc)){if(_0x3bd01b[_0x4b078d(0x1fd)](_0x3bd01b[_0x4b078d(0x3fa)],_0x3bd01b[_0x4b078d(0x232)]))throw new DslError('field','campo\x20não\x20permitido:\x20'+_0xd7d4ea,{'field':_0xd7d4ea});else{if(_0x3bd01b[_0x4b078d(0x32a)](_0x3680c5[_0x4b078d(0x41b)],_0x3bd01b[_0x4b078d(0x2c4)]))return{'kind':_0x3bd01b[_0x4b078d(0x2c4)],'value':_0x4f16c5[_0x4b078d(0x26f)]};if(_0x3bd01b[_0x4b078d(0x385)](_0x5b4418['type'],_0x4b078d(0x335)))return{'kind':'regex','source':_0x40b3fa[_0x4b078d(0x355)],'flags':_0x2f3e35[_0x4b078d(0x313)]};const _0x598e2f=_0x54f283[_0x4b078d(0x26f)][_0x4b078d(0x275)](':');if(_0x3bd01b[_0x4b078d(0x3b2)](_0x598e2f,0x0)){const _0x2ec818=_0x2729dd[_0x4b078d(0x26f)]['slice'](0x0,_0x598e2f);let _0x40f396=_0x1ee06d[_0x4b078d(0x26f)][_0x4b078d(0x276)](_0x598e2f+0x1);return _0x3bd01b[_0x4b078d(0x3a0)](_0x40f396[_0x4b078d(0x2a9)],0x2)&&(_0x3bd01b['UimeL'](_0x40f396[0x0],'\x22')&&_0x40f396['endsWith']('\x22')||_0x3bd01b['ydEpU'](_0x40f396[0x0],'\x27')&&_0x40f396[_0x4b078d(0x423)]('\x27'))&&(_0x40f396=_0x40f396[_0x4b078d(0x276)](0x1,-0x1)),{'kind':_0x4b078d(0x26b),'field':_0x2ec818,'value':_0x40f396};}return{'kind':_0x3bd01b[_0x4b078d(0x39c)],'value':_0xfd71f9[_0x4b078d(0x26f)]};}}const _0x412c3e=_0x57f6af[_0x4b078d(0x224)](_0xd7d4ea)||{};if(_0x3bd01b[_0x4b078d(0x444)](_0x31d3e8[_0x4b078d(0x461)],_0x3bd01b[_0x4b078d(0x238)])&&RANGE_CMPS[_0x4b078d(0x33e)](_0x31d3e8[_0x4b078d(0x21b)])&&!_0x57f6af[_0x4b078d(0x40e)](_0xd7d4ea)){if(_0x4b078d(0x354)!==_0x4b078d(0x354)){if(_0x3bd01b[_0x4b078d(0x2a5)](_0x2671ac,null)||_0x23cd66===_0x44f361||_0x3bd01b[_0x4b078d(0x439)](_0x354c67,''))return null;const _0x414f1f=_0x3bd01b[_0x4b078d(0x346)](_0x1aa67d,_0x5280c0);return _0x54608d[_0x4b078d(0x378)](_0x414f1f)?_0x414f1f:null;}else throw new DslError(_0x3bd01b[_0x4b078d(0x238)],_0x4b078d(0x20f)+_0xd7d4ea+'\x20—\x20use\x20campos\x20numéricos',{'field':_0xd7d4ea});}if(_0x31d3e8[_0x4b078d(0x461)]===_0x3bd01b[_0x4b078d(0x238)]&&_0x31d3e8[_0x4b078d(0x21b)]==='contains'&&(_0x3bd01b[_0x4b078d(0x260)](_0x412c3e[_0x4b078d(0x41b)],_0x3bd01b[_0x4b078d(0x320)])||_0x3bd01b[_0x4b078d(0x315)](_0x412c3e[_0x4b078d(0x41b)],_0x3bd01b[_0x4b078d(0x324)])||_0x3bd01b[_0x4b078d(0x1ba)](_0x412c3e[_0x4b078d(0x41b)],_0x3bd01b['fuzqA']))){if(_0x3bd01b[_0x4b078d(0x3f5)](_0x4b078d(0x1e8),_0x3bd01b['sKMZB'])){const _0xbcaf0d=_0x4bf1ac[_0x4b078d(0x45f)]({},_0x55d17c,{[_0x190402[_0x372b3b]]:_0xe85e9f[_0x4b078d(0x3cd)]});_0x3bd01b[_0x4b078d(0x385)](_0x196b5a,_0x3bd01b[_0x4b078d(0x227)](_0x5f4e69[_0x4b078d(0x2a9)],0x1))?_0x2398e3['push'](_0x1455bd[_0x4b078d(0x45f)]({},_0xbcaf0d,{'value':_0x3bd01b[_0x4b078d(0x339)](_0x3d4228,_0x360f51,_0x36e5d3)})):_0x1daeb4(_0x389fef[_0x4b078d(0x1de)]&&_0x2046c2[_0x4b078d(0x1de)][_0x4b078d(0x465)]||[],_0x3bd01b[_0x4b078d(0x2ec)](_0x14fb7d,0x1),_0xbcaf0d);}else throw new DslError('field',_0x4b078d(0x2d8)+_0xd7d4ea,{'field':_0xd7d4ea});}if((_0x3bd01b[_0x4b078d(0x444)](_0x31d3e8[_0x4b078d(0x461)],'in')||_0x3bd01b[_0x4b078d(0x260)](_0x31d3e8[_0x4b078d(0x461)],_0x4b078d(0x24c)))&&_0x3bd01b[_0x4b078d(0x29d)](_0x412c3e[_0x4b078d(0x41b)],_0x3bd01b[_0x4b078d(0x371)]))throw new DslError('field',_0x31d3e8['kind']+'(...)\x20não\x20se\x20aplica\x20a\x20'+_0xd7d4ea,{'field':_0xd7d4ea});if(_0x3bd01b['pWKIL'](_0x31d3e8[_0x4b078d(0x461)],_0x3bd01b[_0x4b078d(0x238)])&&_0x412c3e[_0x4b078d(0x41b)]===_0x3bd01b[_0x4b078d(0x324)]&&!RANGE_CMPS[_0x4b078d(0x33e)](_0x31d3e8[_0x4b078d(0x21b)]))throw new DslError(_0x3bd01b['ChqAQ'],_0xd7d4ea+_0x4b078d(0x43a),{'field':_0xd7d4ea});}function fieldPathInfo(_0x5d70e9){const _0x50ac83=_0x28ca6b,_0x4f6911={'ocnrZ':'5|4|3|0|1|2','eGtSM':_0x50ac83(0x28b),'bmbWS':_0x50ac83(0x395),'TAPHC':function(_0x16e68d,_0x4131dd){return _0x16e68d===_0x4131dd;},'KWANP':'timestamp','hIRyb':_0x50ac83(0x1b5),'hylWW':'keyword','fdDIc':_0x50ac83(0x3d8),'EMFFi':function(_0x28f94b,_0x3f56c1){return _0x28f94b(_0x3f56c1);},'fHIxA':function(_0x4b250a,_0x12ca18){return _0x4b250a(_0x12ca18);}},_0x2ff8c3=_0x4f6911[_0x50ac83(0x29b)][_0x50ac83(0x334)]('|');let _0x1658c3=0x0;while(!![]){switch(_0x2ff8c3[_0x1658c3++]){case'0':if(_0x5d70e9===_0x4f6911['eGtSM'])return{'path':_0x4f6911[_0x50ac83(0x3ee)],'type':_0x4f6911['bmbWS'],'keywordPath':_0x50ac83(0x350),'existsPath':_0x4f6911[_0x50ac83(0x3ee)]};continue;case'1':if(_0x4f6911['TAPHC'](_0x5d70e9,_0x4f6911[_0x50ac83(0x272)]))return{'path':TIME_FIELD,'type':_0x4f6911[_0x50ac83(0x23e)],'existsPath':TIME_FIELD};continue;case'2':return{'path':_0x5d70e9+_0x50ac83(0x2fe),'type':_0x4f6911[_0x50ac83(0x3b5)],'existsPath':_0x5d70e9};case'3':if(LOG_NUMERIC_FIELDS['has'](_0x5d70e9))return{'path':_0x5d70e9,'type':_0x4f6911['fdDIc'],'existsPath':_0x5d70e9};continue;case'4':if(_0x4f6911[_0x50ac83(0x3a1)](isKvnPath,_0x5d70e9))return{'path':_0x5d70e9,'type':_0x4f6911[_0x50ac83(0x1ce)],'existsPath':_0x5d70e9};continue;case'5':if(_0x4f6911[_0x50ac83(0x25a)](isKvPath,_0x5d70e9))return{'path':_0x5d70e9,'type':'kv','existsPath':_0x5d70e9};continue;}break;}}const REQUESTS_FIELD_MAP={'serviceName':{'path':_0x28ca6b(0x1bc),'type':'keyword','existsPath':'service.name'},'service':{'path':'service.name.keyword','type':_0x28ca6b(0x37d),'existsPath':_0x28ca6b(0x236)},'method':{'path':_0x28ca6b(0x416),'type':'keyword','existsPath':'request.method','upper':!![]},'path':{'path':_0x28ca6b(0x245),'type':_0x28ca6b(0x395),'keywordPath':_0x28ca6b(0x291),'existsPath':_0x28ca6b(0x245)},'body':{'path':_0x28ca6b(0x3f0),'type':_0x28ca6b(0x395),'keywordPath':'request.body.keyword','existsPath':_0x28ca6b(0x3f0)},'response':{'path':_0x28ca6b(0x458),'type':_0x28ca6b(0x395),'keywordPath':'response.result.keyword','existsPath':_0x28ca6b(0x458)},'statusCode':{'path':_0x28ca6b(0x348),'type':_0x28ca6b(0x3d8),'existsPath':_0x28ca6b(0x348)},'duration':{'path':_0x28ca6b(0x27f),'type':_0x28ca6b(0x3d8),'existsPath':_0x28ca6b(0x27f)},'durationMs':{'path':_0x28ca6b(0x27f),'type':_0x28ca6b(0x3d8),'existsPath':_0x28ca6b(0x27f)},'uuid':{'path':_0x28ca6b(0x3d6),'type':_0x28ca6b(0x37d),'existsPath':_0x28ca6b(0x24e)},'correlationId':{'path':_0x28ca6b(0x2a3),'type':'keyword','existsPath':_0x28ca6b(0x3d2)},'traceId':{'path':'traceId.keyword','type':'keyword','existsPath':_0x28ca6b(0x21a)},'gatewayId':{'path':_0x28ca6b(0x3c3),'type':_0x28ca6b(0x37d),'existsPath':_0x28ca6b(0x2bb)},'remoteAddress':{'path':_0x28ca6b(0x409),'type':_0x28ca6b(0x37d),'existsPath':'request.socket.remoteAddress'},'timestamp':{'path':'timers.finished.at','type':_0x28ca6b(0x1b5),'existsPath':_0x28ca6b(0x3b8)}},SPANS_FIELD_MAP={'service':{'path':_0x28ca6b(0x2f9),'type':'keyword','existsPath':_0x28ca6b(0x353)},'name':{'path':_0x28ca6b(0x356),'type':'text','keywordPath':'name.keyword','existsPath':'name'},'kind':{'path':_0x28ca6b(0x3aa),'type':_0x28ca6b(0x37d),'existsPath':_0x28ca6b(0x461)},'gatewayId':{'path':_0x28ca6b(0x3c3),'type':'keyword','existsPath':_0x28ca6b(0x2bb)},'clientId':{'path':_0x28ca6b(0x410),'type':_0x28ca6b(0x37d),'existsPath':_0x28ca6b(0x2b7)},'traceId':{'path':_0x28ca6b(0x210),'type':'keyword','existsPath':_0x28ca6b(0x21a)},'spanId':{'path':'spanId.keyword','type':_0x28ca6b(0x37d),'existsPath':'spanId'},'parentSpanId':{'path':_0x28ca6b(0x32f),'type':_0x28ca6b(0x37d),'existsPath':'parentSpanId'},'correlationId':{'path':_0x28ca6b(0x2a3),'type':_0x28ca6b(0x37d),'existsPath':_0x28ca6b(0x3d2)},'requestId':{'path':_0x28ca6b(0x2cf),'type':'keyword','existsPath':_0x28ca6b(0x3ca)},'flowId':{'path':_0x28ca6b(0x38a),'type':_0x28ca6b(0x37d),'existsPath':'flowId'},'statusCode':{'path':'statusCode','type':_0x28ca6b(0x3d8),'existsPath':_0x28ca6b(0x448)},'durationMs':{'path':_0x28ca6b(0x2ac),'type':_0x28ca6b(0x3d8),'existsPath':'durationMs'},'hasError':{'path':_0x28ca6b(0x3f6),'type':_0x28ca6b(0x39e),'existsPath':'hasError'},'timestamp':{'path':_0x28ca6b(0x3bb),'type':_0x28ca6b(0x1b5),'existsPath':_0x28ca6b(0x3bb)}},TRACES_FIELD_MAP={'serviceName':SPANS_FIELD_MAP[_0x28ca6b(0x353)],'service':SPANS_FIELD_MAP['service'],'name':SPANS_FIELD_MAP[_0x28ca6b(0x356)],'gatewayId':SPANS_FIELD_MAP['gatewayId'],'clientId':SPANS_FIELD_MAP[_0x28ca6b(0x2b7)],'traceId':SPANS_FIELD_MAP[_0x28ca6b(0x21a)],'correlationId':SPANS_FIELD_MAP[_0x28ca6b(0x3d2)],'requestId':SPANS_FIELD_MAP[_0x28ca6b(0x3ca)],'statusCode':SPANS_FIELD_MAP[_0x28ca6b(0x448)],'durationMs':SPANS_FIELD_MAP['durationMs'],'hasError':SPANS_FIELD_MAP[_0x28ca6b(0x3f6)],'timestamp':SPANS_FIELD_MAP[_0x28ca6b(0x3ce)]},ATTRIBUTES_PATH_RE=/^attributes\.[A-Za-z0-9_][A-Za-z0-9_.-]{0,127}$/;function isAttributesPath(_0xd52c76){const _0x2857cf=_0x28ca6b;return ATTRIBUTES_PATH_RE[_0x2857cf(0x1f5)](_0xd52c76);}const DATASET_PROFILES={'logs':{'name':_0x28ca6b(0x278),'allowRegex':!![],'timeField':TIME_FIELD,'known':(_0x33090b,_0x290026)=>isKnownField(_0x33090b,_0x290026),'rangeable':_0x2d2b6e=>isRangeableField(_0x2d2b6e),'info':_0x23b64c=>fieldPathInfo(_0x23b64c),'groupbyOk':(_0x4c80f8,_0x1a036a)=>_0x1a036a['has'](_0x4c80f8)||LOG_FIELD_ALLOWLIST['has'](_0x4c80f8)||isKvPath(_0x4c80f8)||isKvnPath(_0x4c80f8),'metricOk':(_0xb99464,_0x568762)=>_0x568762[_0x28ca6b(0x33e)](_0xb99464)||LOG_NUMERIC_FIELDS['has'](_0xb99464)||isKvnPath(_0xb99464),'aggPath':(_0x411a55,_0x374c97)=>_0x374c97[_0x28ca6b(0x33e)](_0x411a55)||isKvPath(_0x411a55)||isKvnPath(_0x411a55)?_0x411a55:_0x411a55+'.keyword','metricPath':_0x311269=>_0x311269},'spans':{'name':_0x28ca6b(0x3b3),'allowRegex':![],'timeField':_0x28ca6b(0x3bb),'known':_0x2b3ebf=>Object[_0x28ca6b(0x389)]['hasOwnProperty'][_0x28ca6b(0x283)](SPANS_FIELD_MAP,_0x2b3ebf)||isAttributesPath(_0x2b3ebf),'rangeable':_0x4d3232=>{const _0x1ca266=_0x28ca6b,_0x2d41d8={'QYJNE':function(_0xbfb856,_0x260741){return _0xbfb856===_0x260741;},'WVOro':_0x1ca266(0x3d8),'uNNJl':function(_0x3bbfba,_0x4c9ab0){return _0x3bbfba===_0x4c9ab0;},'vQrAp':_0x1ca266(0x1b5)},_0x1bc66b=SPANS_FIELD_MAP[_0x4d3232];return Boolean(_0x1bc66b&&(_0x2d41d8[_0x1ca266(0x2b4)](_0x1bc66b['type'],_0x2d41d8[_0x1ca266(0x305)])||_0x2d41d8['uNNJl'](_0x1bc66b[_0x1ca266(0x41b)],_0x2d41d8[_0x1ca266(0x3d7)])));},'info':_0x8a1881=>isAttributesPath(_0x8a1881)?{'path':_0x8a1881,'type':'kv','existsPath':_0x8a1881}:SPANS_FIELD_MAP[_0x8a1881],'groupbyOk':_0x433af1=>[_0x28ca6b(0x353),_0x28ca6b(0x356),_0x28ca6b(0x461),_0x28ca6b(0x2bb),'statusCode',_0x28ca6b(0x3f6)][_0x28ca6b(0x268)](_0x433af1),'metricOk':_0x49f861=>[_0x28ca6b(0x2ac),_0x28ca6b(0x448)][_0x28ca6b(0x268)](_0x49f861),'aggPath':_0x4d85fa=>{const _0x4b24c8=_0x28ca6b,_0xfb861b=SPANS_FIELD_MAP[_0x4d85fa];return _0xfb861b?_0xfb861b[_0x4b24c8(0x3b6)]||_0xfb861b[_0x4b24c8(0x22e)]:_0x4d85fa;},'metricPath':_0x4dca3d=>SPANS_FIELD_MAP[_0x4dca3d]?SPANS_FIELD_MAP[_0x4dca3d]['path']:_0x4dca3d},'traces':{'name':_0x28ca6b(0x317),'allowRegex':![],'timeField':_0x28ca6b(0x3bb),'known':_0x5b1a4c=>Object['prototype'][_0x28ca6b(0x3fb)]['call'](TRACES_FIELD_MAP,_0x5b1a4c),'rangeable':_0x3905ef=>{const _0x25c5d2=_0x28ca6b,_0x1ba2ef={'LkFwb':function(_0x3bd363,_0x294bc5){return _0x3bd363(_0x294bc5);},'tARfB':function(_0x5ab969,_0x43ebed){return _0x5ab969===_0x43ebed;},'rMgJP':_0x25c5d2(0x3d8)},_0xbbe720=TRACES_FIELD_MAP[_0x3905ef];return _0x1ba2ef[_0x25c5d2(0x45d)](Boolean,_0xbbe720&&(_0x1ba2ef[_0x25c5d2(0x289)](_0xbbe720['type'],_0x1ba2ef[_0x25c5d2(0x3b0)])||_0x1ba2ef[_0x25c5d2(0x289)](_0xbbe720[_0x25c5d2(0x41b)],_0x25c5d2(0x1b5))));},'info':_0x4bea95=>TRACES_FIELD_MAP[_0x4bea95],'groupbyOk':_0x79fd32=>[_0x28ca6b(0x285),_0x28ca6b(0x353),_0x28ca6b(0x2bb),_0x28ca6b(0x448)][_0x28ca6b(0x268)](_0x79fd32),'metricOk':_0x344d4a=>[_0x28ca6b(0x2ac),_0x28ca6b(0x448)][_0x28ca6b(0x268)](_0x344d4a),'aggPath':_0x2bbb46=>TRACES_FIELD_MAP[_0x2bbb46]?TRACES_FIELD_MAP[_0x2bbb46][_0x28ca6b(0x22e)]:_0x2bbb46,'metricPath':_0x3a7655=>TRACES_FIELD_MAP[_0x3a7655]?TRACES_FIELD_MAP[_0x3a7655][_0x28ca6b(0x22e)]:_0x3a7655},'requests':{'name':_0x28ca6b(0x2f6),'allowRegex':![],'timeField':_0x28ca6b(0x3b8),'known':_0x43ceba=>Object['prototype'][_0x28ca6b(0x3fb)][_0x28ca6b(0x283)](REQUESTS_FIELD_MAP,_0x43ceba),'rangeable':_0x589b0b=>{const _0x670f9f=_0x28ca6b,_0x17946e={'rhfIR':function(_0x221d12,_0x2e63b3){return _0x221d12(_0x2e63b3);},'EOZHd':function(_0x415987,_0x4ab5d1){return _0x415987===_0x4ab5d1;},'UbUcP':_0x670f9f(0x3d8),'mFRei':_0x670f9f(0x1b5)},_0x5bdf0d=REQUESTS_FIELD_MAP[_0x589b0b];return _0x17946e[_0x670f9f(0x22f)](Boolean,_0x5bdf0d&&(_0x17946e[_0x670f9f(0x38b)](_0x5bdf0d['type'],_0x17946e[_0x670f9f(0x264)])||_0x17946e['EOZHd'](_0x5bdf0d[_0x670f9f(0x41b)],_0x17946e[_0x670f9f(0x466)])));},'info':_0x201787=>REQUESTS_FIELD_MAP[_0x201787],'groupbyOk':_0x75e211=>['serviceName',_0x28ca6b(0x353),_0x28ca6b(0x363),_0x28ca6b(0x448),_0x28ca6b(0x2bb),_0x28ca6b(0x22e)]['includes'](_0x75e211),'metricOk':_0x51523e=>[_0x28ca6b(0x337),_0x28ca6b(0x2ac),_0x28ca6b(0x448)][_0x28ca6b(0x268)](_0x51523e),'aggPath':_0x4407c4=>{const _0x5da72c=_0x28ca6b,_0x56811b=REQUESTS_FIELD_MAP[_0x4407c4];return _0x56811b?_0x56811b[_0x5da72c(0x3b6)]||_0x56811b['path']:_0x4407c4;},'metricPath':_0x23b0e9=>REQUESTS_FIELD_MAP[_0x23b0e9]?REQUESTS_FIELD_MAP[_0x23b0e9]['path']:_0x23b0e9}};function aggPathFor(_0x17ad94,_0x996791,_0x493512){const _0x29c329=_0x28ca6b,_0x89c09f={'cfQrA':function(_0x3df57a,_0x25ad68){return _0x3df57a||_0x25ad68;},'gMmqP':'logs'},_0x4336f7=DATASET_PROFILES[_0x89c09f[_0x29c329(0x3bf)](_0x17ad94,_0x89c09f[_0x29c329(0x212)])]||DATASET_PROFILES[_0x29c329(0x278)];return _0x4336f7[_0x29c329(0x419)](_0x996791,_0x493512||new Set());}function timeFieldFor(_0x2fd92b){const _0x22046a={'xVSLY':function(_0x407561,_0x538eaa){return _0x407561||_0x538eaa;},'vzDch':'logs'};return(DATASET_PROFILES[_0x22046a['xVSLY'](_0x2fd92b,_0x22046a['vzDch'])]||DATASET_PROFILES['logs'])['timeField'];}const REQUESTS_HITS_SOURCE=[_0x28ca6b(0x24e),'correlationId',_0x28ca6b(0x21a),'gatewayId',_0x28ca6b(0x236),'request.method',_0x28ca6b(0x245),_0x28ca6b(0x348),_0x28ca6b(0x316)];function toNumberOrThrow(_0x214a28,_0x1b9080){const _0x152342=_0x28ca6b,_0x3a6a8a={'lGvVC':_0x152342(0x26b)},_0x4f533c=Number(_0x1b9080);if(!Number[_0x152342(0x378)](_0x4f533c))throw new DslError(_0x3a6a8a['lGvVC'],'valor\x20numérico\x20inválido\x20para\x20'+_0x214a28+':\x20'+_0x1b9080,{'field':_0x214a28});return _0x4f533c;}const REQUESTS_TEXT_FIELDS=[_0x28ca6b(0x282),'service.description',_0x28ca6b(0x245),_0x28ca6b(0x3f0),_0x28ca6b(0x458),_0x28ca6b(0x24e)];function spanTextClause(_0x24daae,_0x3ff377){const _0x271315=_0x28ca6b,_0x3a774e={'lKlXe':function(_0xf745f,_0x5ace77){return _0xf745f(_0x5ace77);},'vaiur':_0x271315(0x3c9),'uVyGN':_0x271315(0x210),'FrgOC':function(_0x14e89b,_0x1bec91){return _0x14e89b(_0x1bec91);},'EICnB':_0x271315(0x2a3),'VTOYB':_0x271315(0x2cf),'KxIan':function(_0x32c9d3,_0x15116b){return _0x32c9d3(_0x15116b);},'GkeNM':_0x271315(0x38a),'zTsda':function(_0x39bb63,_0x58eb6d){return _0x39bb63(_0x58eb6d);},'kHcPO':_0x271315(0x2f9),'yegOO':function(_0x3c1b8f,_0x1ccf5b){return _0x3c1b8f(_0x1ccf5b);},'JcFVd':_0x271315(0x3c3),'YfQfM':'clientId.keyword'},_0x501adc=_0x3f0583=>({'wildcard':{[_0x3f0583]:{'value':'*'+_0x24daae+'*','case_insensitive':!![]}}});return{'bool':{'should':[_0x3ff377?{'match_phrase':{'name':_0x24daae}}:{'match':{'name':{'query':_0x24daae,'boost':0x3}}},_0x3a774e[_0x271315(0x2aa)](_0x501adc,_0x3a774e['vaiur']),_0x3a774e[_0x271315(0x2aa)](_0x501adc,_0x3a774e[_0x271315(0x384)]),_0x3a774e[_0x271315(0x449)](_0x501adc,_0x3a774e['EICnB']),_0x501adc(_0x3a774e[_0x271315(0x25f)]),_0x3a774e['FrgOC'](_0x501adc,_0x271315(0x323)),_0x3a774e[_0x271315(0x3dd)](_0x501adc,_0x3a774e[_0x271315(0x408)]),_0x3a774e[_0x271315(0x2c6)](_0x501adc,_0x3a774e['kHcPO']),_0x3a774e[_0x271315(0x290)](_0x501adc,_0x3a774e['JcFVd']),_0x3a774e[_0x271315(0x290)](_0x501adc,_0x3a774e[_0x271315(0x247)])],'minimum_should_match':0x1}};}function leafToOpenSearch(_0x5972ae,_0x606a7a){const _0x369ded=_0x28ca6b,_0x228492={'KSlfD':function(_0x364b19,_0x42638a){return _0x364b19===_0x42638a;},'rDHDn':_0x369ded(0x28a),'xyqSZ':function(_0x462043,_0x4effd8){return _0x462043===_0x4effd8;},'pLkBw':'not','hSiqN':function(_0x2c50e2,_0x4388d5){return _0x2c50e2-_0x4388d5;},'MPROL':function(_0x3d17a1,_0x1f315e,_0x1f1c8d,_0x4f8539){return _0x3d17a1(_0x1f315e,_0x1f1c8d,_0x4f8539);},'mDUfF':function(_0x19eb5e,_0x4efca0){return _0x19eb5e+_0x4efca0;},'vpBlY':function(_0x2c1d7,_0x29c243){return _0x2c1d7===_0x29c243;},'apfYX':_0x369ded(0x3a4),'xcBCU':function(_0x283bf0,_0x380eff){return _0x283bf0===_0x380eff;},'ykegt':function(_0x51c808,_0x5a21ac){return _0x51c808!==_0x5a21ac;},'GzhhF':_0x369ded(0x1db),'aAFEH':_0x369ded(0x3b3),'WFXCP':_0x369ded(0x317),'RCbJC':function(_0x404f49,_0x34fd85,_0x33cf4e){return _0x404f49(_0x34fd85,_0x33cf4e);},'wjGxK':function(_0xa7774a,_0x202274){return _0xa7774a===_0x202274;},'lEzqG':_0x369ded(0x335),'iIDeh':'numeric','vsdFf':function(_0x350724,_0x1893e8,_0x5dad18){return _0x350724(_0x1893e8,_0x5dad18);},'QxBPe':_0x369ded(0x39e),'eHRvF':function(_0x12499f,_0x3e29ea){return _0x12499f(_0x3e29ea);},'XZnOj':function(_0xac8b34,_0x3b1842){return _0xac8b34(_0x3b1842);},'sKQpb':function(_0x525b93,_0x1a1d59,_0x2c60b4){return _0x525b93(_0x1a1d59,_0x2c60b4);},'MOhoH':_0x369ded(0x3f4),'OrIBS':'lte','YMKPr':_0x369ded(0x336),'BMqTl':_0x369ded(0x395),'BihrI':function(_0x3f1ff6,_0x31d9ac){return _0x3f1ff6!==_0x31d9ac;},'cLKlf':'RgutH','YSBcM':function(_0x239adc,_0x4deac9){return _0x239adc(_0x4deac9);},'EKZIv':_0x369ded(0x1d0)};if(_0x228492[_0x369ded(0x262)](_0x5972ae['kind'],_0x228492['apfYX'])||_0x228492['KSlfD'](_0x5972ae[_0x369ded(0x461)],'term')){const _0x6323c9=_0x5972ae[_0x369ded(0x461)]===_0x228492[_0x369ded(0x3f2)];if(_0x228492['xcBCU'](_0x606a7a[_0x369ded(0x356)],_0x369ded(0x2f6))){if(_0x228492['ykegt'](_0x228492['GzhhF'],_0x228492['GzhhF'])){if(!_0x3035c9)return null;if(_0x228492['KSlfD'](_0x69266b['op'],_0x228492[_0x369ded(0x33b)])){const _0x1163c7=_0x5acb8f['children']['map'](_0x27e740=>_0x59e3cd(_0x27e740,_0x385b9b))[_0x369ded(0x2d6)](_0x2cd49d);if(_0x228492[_0x369ded(0x2f0)](_0x1163c7[_0x369ded(0x2a9)],0x0))return null;return _0x228492[_0x369ded(0x2f0)](_0x1163c7[_0x369ded(0x2a9)],0x1)?_0x1163c7[0x0]:{'bool':{'filter':_0x1163c7}};}if(_0x228492[_0x369ded(0x42e)](_0x5d0256['op'],'or')){const _0xad42bb=_0x145c72[_0x369ded(0x269)]['map'](_0x503691=>_0x47f7d3(_0x503691,_0x14e3e9))['filter'](_0x2d0600);if(_0xad42bb[_0x369ded(0x2a9)]===0x0)return null;return{'bool':{'should':_0xad42bb,'minimum_should_match':0x1}};}if(_0x228492[_0x369ded(0x2f0)](_0xdb8a70['op'],_0x228492[_0x369ded(0x34a)])){const _0x5dad10=_0x33dafd(_0x2d1b92[_0x369ded(0x1e7)],_0x2de70c);return _0x5dad10?{'bool':{'must_not':[_0x5dad10]}}:null;}return _0x4a83d3(_0x216a4a,_0x4832bf);}else return{'multi_match':{'query':_0x5972ae['value'],'fields':REQUESTS_TEXT_FIELDS,'type':_0x6323c9?_0x228492[_0x369ded(0x3f2)]:_0x369ded(0x455)}};}if(_0x228492[_0x369ded(0x262)](_0x606a7a[_0x369ded(0x356)],_0x228492[_0x369ded(0x28c)])||_0x606a7a[_0x369ded(0x356)]===_0x228492['WFXCP'])return _0x228492[_0x369ded(0x453)](spanTextClause,_0x5972ae[_0x369ded(0x26f)],_0x6323c9);return _0x6323c9?{'match_phrase':{'message':_0x5972ae[_0x369ded(0x26f)]}}:{'match':{'message':_0x5972ae[_0x369ded(0x26f)]}};}if(_0x228492[_0x369ded(0x314)](_0x5972ae[_0x369ded(0x461)],_0x228492['lEzqG']))return null;if(_0x228492[_0x369ded(0x22a)](_0x5972ae[_0x369ded(0x461)],_0x369ded(0x336)))return null;const _0x26d3df=_0x606a7a[_0x369ded(0x224)](_0x5972ae['field'])||{},_0x10b3d7=_0x1a67bf=>_0x26d3df[_0x369ded(0x459)]?String(_0x1a67bf)[_0x369ded(0x3db)]():_0x1a67bf;if(_0x228492[_0x369ded(0x2f0)](_0x5972ae[_0x369ded(0x461)],_0x369ded(0x24c)))return{'exists':{'field':_0x26d3df[_0x369ded(0x208)]||_0x5972ae[_0x369ded(0x26b)]}};if(_0x228492['xcBCU'](_0x5972ae['kind'],'in')){const _0xc91e0c=_0x228492['xyqSZ'](_0x26d3df[_0x369ded(0x41b)],_0x228492['iIDeh'])?_0x5972ae[_0x369ded(0x3da)][_0x369ded(0x44b)](_0x263459=>toNumberOrThrow(_0x5972ae[_0x369ded(0x26b)],_0x263459)):_0x5972ae[_0x369ded(0x3da)][_0x369ded(0x44b)](_0x10b3d7);return{'terms':{[_0x26d3df[_0x369ded(0x22e)]]:_0xc91e0c}};}switch(_0x5972ae[_0x369ded(0x21b)]){case'eq':if(_0x26d3df['type']===_0x369ded(0x395))return{'match':{[_0x26d3df[_0x369ded(0x22e)]]:_0x5972ae['value']}};if(_0x26d3df[_0x369ded(0x41b)]===_0x228492['iIDeh'])return{'term':{[_0x26d3df[_0x369ded(0x22e)]]:_0x228492['vsdFf'](toNumberOrThrow,_0x5972ae['field'],_0x5972ae[_0x369ded(0x26f)])}};if(_0x228492['KSlfD'](_0x26d3df['type'],_0x228492[_0x369ded(0x3b4)]))return{'term':{[_0x26d3df[_0x369ded(0x22e)]]:_0x228492['eHRvF'](String,_0x5972ae['value'])[_0x369ded(0x3e3)]()===_0x369ded(0x329)}};return{'term':{[_0x26d3df[_0x369ded(0x22e)]]:_0x228492[_0x369ded(0x20d)](_0x10b3d7,_0x5972ae[_0x369ded(0x26f)])}};case'ne':{const _0x41086f=_0x228492[_0x369ded(0x287)](leafToOpenSearch,{..._0x5972ae,'cmp':'eq'},_0x606a7a);return{'bool':{'must_not':[_0x41086f]}};}case'gt':case _0x228492[_0x369ded(0x1eb)]:case'lt':case _0x228492[_0x369ded(0x367)]:{const _0x4a5085=_0x228492['xcBCU'](_0x26d3df['type'],_0x228492['iIDeh'])?_0x228492[_0x369ded(0x453)](toNumberOrThrow,_0x5972ae[_0x369ded(0x26b)],_0x5972ae[_0x369ded(0x26f)]):_0x5972ae['value'];return{'range':{[_0x26d3df[_0x369ded(0x22e)]]:{[_0x5972ae[_0x369ded(0x21b)]]:_0x4a5085}}};}case _0x228492[_0x369ded(0x441)]:{const _0x2936cc=_0x2b79aa=>({'wildcard':{[_0x2b79aa]:{'value':'*'+_0x5972ae[_0x369ded(0x26f)]+'*','case_insensitive':!![]}}});if(_0x228492[_0x369ded(0x22a)](_0x26d3df[_0x369ded(0x41b)],_0x228492[_0x369ded(0x341)])){if(_0x228492['BihrI'](_0x228492['cLKlf'],_0x228492['cLKlf']))for(const _0x56ac21 of _0xdd369b||[]){const _0x2e6e52=_0x38c8cf[_0x369ded(0x45f)]({},_0xf7d09d,{[_0x4397c7[_0x4215c4]]:_0x56ac21[_0x369ded(0x3cd)]});_0x228492[_0x369ded(0x2f0)](_0x47e43b,_0x228492['hSiqN'](_0x2ba073[_0x369ded(0x2a9)],0x1))?_0x3b0a28[_0x369ded(0x3f9)](_0x317ae3[_0x369ded(0x45f)]({},_0x2e6e52,{'value':_0x51c658(_0x56ac21,_0x574103)})):_0x228492[_0x369ded(0x45a)](_0x5e1220,_0x56ac21['sub']&&_0x56ac21[_0x369ded(0x1de)]['buckets']||[],_0x228492[_0x369ded(0x37c)](_0x5d2863,0x1),_0x2e6e52);}else return{'bool':{'should':[_0x228492[_0x369ded(0x36b)](_0x2936cc,_0x26d3df['keywordPath']),{'match_phrase':{[_0x26d3df[_0x369ded(0x22e)]]:_0x5972ae['value']}}],'minimum_should_match':0x1}};}return _0x228492['YSBcM'](_0x2936cc,_0x26d3df['path']);}default:throw new DslError(_0x228492['EKZIv'],_0x369ded(0x39f)+_0x5972ae[_0x369ded(0x21b)]);}}function astToOpenSearch(_0x9dca16,_0x26c937){const _0x73fc4c=_0x28ca6b,_0xb6994c={'dVtOm':function(_0x254976,_0x34653d){return _0x254976===_0x34653d;},'sgwvm':_0x73fc4c(0x28a),'zKoxh':function(_0x1b133d,_0x108192){return _0x1b133d===_0x108192;},'NbNYQ':function(_0xd04548,_0x42a9e3){return _0xd04548===_0x42a9e3;},'ZMShu':function(_0x6b699e,_0x56416b){return _0x6b699e===_0x56416b;},'dzRvj':function(_0x3743c7,_0x353e53){return _0x3743c7===_0x353e53;},'WmHJZ':'ylOMY','RUdVH':_0x73fc4c(0x3d4),'Mfhdn':function(_0x405340,_0xe3838f,_0x4d4f44){return _0x405340(_0xe3838f,_0x4d4f44);}};if(!_0x9dca16)return null;if(_0xb6994c['dVtOm'](_0x9dca16['op'],_0xb6994c[_0x73fc4c(0x452)])){const _0x38cfd3=_0x9dca16[_0x73fc4c(0x269)][_0x73fc4c(0x44b)](_0x384eea=>astToOpenSearch(_0x384eea,_0x26c937))[_0x73fc4c(0x2d6)](Boolean);if(_0xb6994c[_0x73fc4c(0x219)](_0x38cfd3[_0x73fc4c(0x2a9)],0x0))return null;return _0xb6994c['NbNYQ'](_0x38cfd3[_0x73fc4c(0x2a9)],0x1)?_0x38cfd3[0x0]:{'bool':{'filter':_0x38cfd3}};}if(_0xb6994c['ZMShu'](_0x9dca16['op'],'or')){if(_0xb6994c['dzRvj'](_0xb6994c[_0x73fc4c(0x372)],_0xb6994c[_0x73fc4c(0x1d2)]))throw new _0x3f678c(_0x73fc4c(0x335),_0x492976[_0x73fc4c(0x28b)],{'detail':_0xe12f57[_0x73fc4c(0x355)]});else{const _0x1ee277=_0x9dca16[_0x73fc4c(0x269)][_0x73fc4c(0x44b)](_0x4ae840=>astToOpenSearch(_0x4ae840,_0x26c937))[_0x73fc4c(0x2d6)](Boolean);if(_0x1ee277[_0x73fc4c(0x2a9)]===0x0)return null;return{'bool':{'should':_0x1ee277,'minimum_should_match':0x1}};}}if(_0x9dca16['op']===_0x73fc4c(0x2df)){const _0x141b68=astToOpenSearch(_0x9dca16[_0x73fc4c(0x1e7)],_0x26c937);return _0x141b68?{'bool':{'must_not':[_0x141b68]}}:null;}return _0xb6994c[_0x73fc4c(0x352)](leafToOpenSearch,_0x9dca16,_0x26c937);}function extractContains(_0x16df43){const _0x5190d4=_0x28ca6b,_0x1b5db9={'JohCi':_0x5190d4(0x390),'TvqST':_0x5190d4(0x2f3),'UrYgO':_0x5190d4(0x1d0),'iNkSa':_0x5190d4(0x35e),'VSMBX':function(_0x21df2a,_0x4cd26f){return _0x21df2a!==_0x4cd26f;},'lQukh':'blVoN','NCSvg':function(_0x19b1ad,_0xe55588){return _0x19b1ad===_0xe55588;},'DkNRS':function(_0x54e576,_0x1c8088){return _0x54e576!==_0x1c8088;},'fdOJW':_0x5190d4(0x310),'HkDGz':_0x5190d4(0x3a3),'gopEy':function(_0x2b8440,_0x194ceb){return _0x2b8440===_0x194ceb;},'nUZwA':_0x5190d4(0x28a),'XDcSh':function(_0x3e62e3,_0x54018e){return _0x3e62e3(_0x54018e);}},_0x5f516c=[],_0x36f60b=_0x2813a4=>{const _0x2b782e=_0x5190d4,_0x43b86e={'YUuIp':function(_0x363cc9,_0x4432ad){return _0x363cc9!==_0x4432ad;},'ibFpV':_0x1b5db9[_0x2b782e(0x27e)],'HfrAr':_0x1b5db9[_0x2b782e(0x2d3)],'ehbCJ':_0x1b5db9[_0x2b782e(0x450)],'nYTNj':_0x1b5db9[_0x2b782e(0x308)]};if(_0x1b5db9[_0x2b782e(0x1f2)](_0x1b5db9[_0x2b782e(0x43d)],_0x1b5db9[_0x2b782e(0x43d)])){const _0x4573f2=_0x29c4ec[_0x2b782e(0x3a5)][_0x2b782e(0x1d3)]()[_0x2b782e(0x3e3)]();if(_0x43b86e[_0x2b782e(0x392)](_0x4573f2,_0x43b86e[_0x2b782e(0x325)])&&_0x4573f2!==_0x43b86e[_0x2b782e(0x270)])throw new _0x2ca0e4(_0x43b86e[_0x2b782e(0x1c0)],_0x2b782e(0x1f8)+_0x4573f2+'\x20(use\x20asc|desc)');_0x255164=_0x4573f2;}else{if(!_0x2813a4)return null;if(_0x1b5db9[_0x2b782e(0x2dd)](_0x2813a4['kind'],_0x2b782e(0x336)))return _0x5f516c[_0x2b782e(0x3f9)](_0x2813a4[_0x2b782e(0x3b1)]),null;if(_0x1b5db9['NCSvg'](_0x2813a4['op'],_0x2b782e(0x28a))){if(_0x1b5db9['DkNRS'](_0x1b5db9[_0x2b782e(0x2f7)],_0x1b5db9[_0x2b782e(0x1e2)])){const _0x431859=_0x2813a4[_0x2b782e(0x269)][_0x2b782e(0x44b)](_0x36f60b)[_0x2b782e(0x2d6)](Boolean);if(_0x1b5db9[_0x2b782e(0x1ec)](_0x431859[_0x2b782e(0x2a9)],0x0))return null;return _0x431859['length']===0x1?_0x431859[0x0]:{'op':_0x1b5db9[_0x2b782e(0x1c5)],'children':_0x431859};}else throw new _0x3f270a(_0x43b86e['ehbCJ'],_0x43b86e[_0x2b782e(0x3a7)]);}return _0x2813a4;}},_0x146642=_0x1b5db9[_0x5190d4(0x442)](_0x36f60b,_0x16df43&&_0x16df43['where']);return{'containsExprs':_0x5f516c,'rootWhere':_0x146642};}function compileAstFor(_0x572644,_0x5ddaad){const _0x3d23e4=_0x28ca6b,_0x33e82d={'BZLUw':function(_0x2a35e0,_0x555bba){return _0x2a35e0||_0x555bba;},'RrytF':'logs'};return astToOpenSearch(_0x572644,DATASET_PROFILES[_0x33e82d[_0x3d23e4(0x1b4)](_0x5ddaad,_0x33e82d[_0x3d23e4(0x1c2)])]);}function compileWhere(_0x809786){const _0x4da42d=_0x28ca6b,_0x3f7ad4={'zOwzK':_0x4da42d(0x278)},_0x1eb1b0=DATASET_PROFILES[_0x809786&&_0x809786[_0x4da42d(0x391)]||_0x3f7ad4[_0x4da42d(0x2eb)]];return astToOpenSearch(_0x809786&&_0x809786[_0x4da42d(0x39d)],_0x1eb1b0);}function normalizeRegexSource(_0x468d43){const _0x3aa3bf=_0x28ca6b,_0xd351d3={'khyuh':function(_0x53189c,_0x43cabe){return _0x53189c!==_0x43cabe;}},_0x36385a=[],_0x57683a=_0x468d43['replace'](/\(\?P<([A-Za-z_][A-Za-z0-9_]*)>/g,(_0x52fbaa,_0x590f72)=>{const _0x18bf57=_0x14fa;return _0x36385a[_0x18bf57(0x3f9)](_0x590f72),_0x18bf57(0x1d6)+_0x590f72+'>';}),_0x1507a1=/\(\?<([A-Za-z_][A-Za-z0-9_]*)>/g;let _0x57414d;while(_0xd351d3[_0x3aa3bf(0x44a)](_0x57414d=_0x1507a1[_0x3aa3bf(0x43c)](_0x57683a),null)){if(!_0x36385a[_0x3aa3bf(0x268)](_0x57414d[0x1]))_0x36385a[_0x3aa3bf(0x3f9)](_0x57414d[0x1]);}return{'jsSource':_0x57683a,'names':_0x36385a};}function compileRegexes(_0x2ceab){const _0x401eb6=_0x28ca6b,_0x37ca3e={'XpsMm':'phrase','jAdCh':_0x401eb6(0x455),'TxDso':function(_0x49d526,_0xba7f27){return _0x49d526===_0xba7f27;},'PRNTJ':_0x401eb6(0x333),'VXfnr':function(_0x18b947,_0x147ca6){return _0x18b947!==_0x147ca6;},'GsSfu':_0x401eb6(0x335),'mQlsb':function(_0x2ff7a5,_0x4ce95c){return _0x2ff7a5>=_0x4ce95c;},'IwZUR':_0x401eb6(0x3c5),'WiNqk':_0x401eb6(0x3cc)},_0x31f3f4=[],_0x49a95a=new Set();for(const _0x569bbd of _0x2ceab){if(_0x37ca3e[_0x401eb6(0x413)](_0x37ca3e['PRNTJ'],_0x37ca3e[_0x401eb6(0x37e)])){if(_0x37ca3e[_0x401eb6(0x426)](_0x569bbd['kind'],_0x37ca3e[_0x401eb6(0x292)]))continue;if(_0x37ca3e['mQlsb'](_0x31f3f4[_0x401eb6(0x2a9)],MAX_REGEXES))throw new DslError(_0x37ca3e['GsSfu'],_0x401eb6(0x2b1)+MAX_REGEXES+'\x20regexes\x20no\x20where');if(_0x569bbd['source'][_0x401eb6(0x2a9)]>MAX_REGEX_LEN)throw new DslError(_0x37ca3e['GsSfu'],_0x37ca3e[_0x401eb6(0x251)]);const {jsSource:_0x3b99d3,names:_0x28034c}=normalizeRegexSource(_0x569bbd[_0x401eb6(0x355)]);let _0x5b7c6e;try{if(_0x37ca3e[_0x401eb6(0x413)](_0x401eb6(0x3cc),_0x37ca3e[_0x401eb6(0x230)])){const _0x111c6a=(_0x569bbd[_0x401eb6(0x313)]||'')['replace'](/[^gimsuy]/g,'');_0x5b7c6e=new RegExp(_0x3b99d3,_0x111c6a[_0x401eb6(0x268)]('g')?_0x111c6a:_0x111c6a);}else return _0x54ca65[_0x401eb6(0x1f5)](_0x49523e);}catch(_0x4bf9de){throw new DslError('regex',_0x4bf9de[_0x401eb6(0x28b)],{'detail':_0x569bbd[_0x401eb6(0x355)]});}_0x28034c['forEach'](_0x2da2ce=>_0x49a95a[_0x401eb6(0x1e9)](_0x2da2ce)),_0x31f3f4[_0x401eb6(0x3f9)]({'regex':_0x5b7c6e,'names':_0x28034c});}else return{'multi_match':{'query':_0x1b7601[_0x401eb6(0x26f)],'fields':_0x10bb4d,'type':_0x3c6adb?_0x37ca3e[_0x401eb6(0x3a6)]:_0x37ca3e[_0x401eb6(0x445)]}};}return{'regexes':_0x31f3f4,'extracted':_0x49a95a};}function _0x4cbb(){const _0x37b7e5=['Bwv0CMLJ','v0TwyNG','ChvZAa','u1jzANy','AgfZt3DUuhjVCgvYDhK','DNn3rNK','s212yvm','vMTwsKu','Bgv2zwW','ve1JD0i','r2LNtxG','rKXRs1K','Ee5Ovwm','u3vbwMu','DvndEuS','tuHYCg8','Bw1AquC','r2TLtK0','CMvXDwvZDc5ZB2nRzxqUCMvTB3rLqwrKCMvZCY5RzxL3B3jK','vfnlqwO','Dg9VAW','r2TdsKm','DKvlELO','CMfUz2vHyMXL','DKnAv2u','y2XPzw50swqUA2v5D29Yza','ysbXDwvYEsbKzxzLignVBwxdP2fYignVBsb3AgvYzsGUlI4P','C0nyAfe','vhHeC28','teDRCMe','ywzQv3e','CMvXDwvZDc5TzxrOB2qUA2v5D29Yza','DgXkrKy','vu1TtK0','ywDNugf0Aa','rhnSrxjYB3i','DhLWzq','qu5jChK','Ae9etfi','svPpr2W','BhrL','B0zjzve','C3rHCNq','zhPxruy','zw5KC1DPDgG','wfz2uvi','Bufhz1K','vLHMBNi','AhHlz24','tfbJy2G','ENbAugK','B3bLCMfUzg8GyxvZzw50zsbUBYb3AgvYzq','uuTwEKe','B3DPsNy','zKrZzxG','EhLXu1O','txL4yum','rNvUre8','ue1vEMK','zNvUW6FdO28GzguGBCoPDhjPy2eGzgvZy29UAgvJAwrHoIa','u2zYsNm','vKLXAeq','qxf0v2S','DeXczxm','Dg9Rzw4GAw5LC3bLCMfKBYbUBYb3AgvYztOGiG','vNzTB1y','DePizvG','igfJzwL0ysbHCgvUyxmGCMfUz2vZicG+lca+psWGpcWGpd0P','mJC5nda4y05nBerH','zxHLyW','Bff1A2G','Eg56wM0','uffhqLu','v0f0sg0','wu1luhi','werJu2G','qvfru3y','vwLTzuW','AKfKq2G','DvfZANe','uxHrwwG','C3rHDhvZq29Kzq','rNjNt0m','A2H5DwG','BwfW','z0r1yMu','vhPzyxC','vgnezLK','v1nrrwG','vxjzz08','BhPNz2G','C2D3DM0','uKnIsKm','zw52','yMvZDf9MAwvSzhm','A2TJq3a','De5yq3C','CMvZCg9UC2uUCMvZDwX0','DxbWzxi','tvbst0W','ExPwAwO','wenAuwi','tgTgD2i','DhjQtw0','yxnZAwDU','BKP4v1u','A2LUza','Ag9ZDg5HBwu','vLf5z2e','CMvWzwf0','yNvJA2v0CW','BuzszwK','zxHJzxb0Aw9UlM1LC3nHz2u','CdK5','wgvksvC','zMXVD0LK','DgrKvva','r0PevKO','qLPmvxC','zgf0zq','r0zOseG','wfzyrvu','uLrwsg4','EgTSwMW','B2PIA2y','D2T3vKy','C2vYDMLJzs5Uyw1LlMTLExDVCMq','q3rdu20','AwTbtNa','y2vPBa','zwHIq0O','BwnuB0O','uNj5Dey','sgT5EwS','z05uAMK','BLvAD0e','ALDVA3K','v1zNzKK','vM1iA1a','CMzzwKm','icH1C2uGyxnJFgrLC2mP','ALzZuK4','qwvuvM0','rwDduxe','zMreswm','DgngAvG','BwfSzM9YBwvK','r2HODNG','uLvKvKG','DhjPBq','Ag5Stxu','wuzJEeu','kd88','Ag9ZDa','A0PVCfe','sMzzD1m','thjjEMq','BNPSwMy','uuzOrfC','vNfKuwu','C3vI','tvbeEvi','v0nRr3i','qMDHrxC','sgTer3O','v05JsuS','Dg9Rzw4GAw5LC3bLCMfKBYbHCmoZCYb3AgvYzsGUlI4PoIaI','AwLKzgK','Exz3uwu','y2HPBgq','s0Xmv3a','ywrK','DuTzAge','tu9OB0G','z29WrxK','vfP0rKW','DgHYzwfK','wxrtqwG','twDNBKe','zxnWzxjHzg8GiG','vLnnqLG','rwzdEvC','m1zkCwDlAW','DgvZDa','y29Kzq','zvLlAK4','C29YDcbPBNBdOwXPzg86ia','y2fTCg8GBSoJBYbWzxjTAxrPzg8GBMeGBCoPDhjPy2e6ia','A214vMy','CLPlz1y','uwzdA28','qNHgyuS','y29UDgvUDeXLBMD0Aa','DvvMB2O','tvfjvhq','wMLPA0K','otuUma','uLDyAvO','CLjNse4','yLnnAhq','zxHJzxb0Aw9UvhLWzq','CMvZCg9UC2vtAxPL','zxHPC3rZugf0Aa','BNDesKy','BuHHwLO','uvDOy04','y3jwCwu','wfPUt2O','s3Hssg4','CMfUz2uGkd4SidWPig7dO28GC3vWB3j0ywrVihbHCMeG','DhjHy2vjzc5RzxL3B3jK','vurAt0e','z01TCva','zw5K','C1LPvg4','DxbyC0m','rNPyBuy','EefYA04','tvDoAfm','EKTVEgG','DhjHy2vjza','y21W','Awr4','C2vKu0e','CMvNzxGGBSoJBYddQsbZDxbVCNrHzgeGBM8Gzgf0yxnLDca','txjpBeO','Cw1PB20','yxvrAMy','BgLZDgeGAw4OlI4Uksb2yxPPyq','DMfSB3iGyxvZzw50zsbLBsaI','Aw5MBW','C0ztrfq','B0zMwKG','t3fKCLu','BgfZDeLUzgv4','tNnVvK0','Egncq1u','z2f0zxDHEvnLCNzPy2u','q3vrthO','txPHDhC','Cgf0Aa','CMHMsvi','v2LoCwS','AKfjvMi','qMj2BxO','qKTdtK8','tKPfDem','tMnVwKW','C2vYDMLJzs5Uyw1L','yMrTvLu','q2HXqve','EKTbyNm','icH1C2uGBg9NC3XYzxf1zxn0C3XZCgfUC3X0CMfJzxmP','DMzKqwW','BNzIuxm','v3DnEwC','AeLsEwi','Cwn1Bxq','A3biseu','uK9Iug8','rKvlwuS','Bwv0CMLJt2S','weDnChu','CMvXDwvZDc51CMWUCgf0Aa','zw52AxjVBM1LBNq','wwzrzK0','tuvUAgu','Ahr0Ce1LDgHVza','zfzOBhe','z3jVDxbZ','zxHPC3rZ','CdK1','DxvPza','swzcqwO','BM90A04','sxDAvvi','DuHmzNK','zgf0yxnLDcbKzxnJB25OzwnPzg86ia','yMHusxe','Bwf4','BwLU','z0nsv3a','z3HnrLi','sxP3yuW','zKHjEee','tuLvAM8','tLvZu0C','vKzbAwm','Cvn3y1G','vLrpwui','EwrfCfu','C3rYAw5N','DNbcBfK','rejtvKu','vwjvy1a','uhPQz0i','AfjJELu','Ahr0Cfn0yxr1C0nVzgu','Aw5JBhvKzxm','y2HPBgrYzw4','AM15z1G','zMLLBgq','wwvLwum','BM15ugy','Ew5MzNe','DMfSDwu','sgzYqxi','DgvYBq','s1DbtLa','ALLJvhe','tufuq00','Aw5KzxHpzG','C2XPy2u','yxbWBgLJyxrPB24','Bg9NCW','wLzHyvi','uKnOvfC','CgfYW6PUDgvZzxmGBSoJBYbIywXHBMnLywrVCYbLBsa','B0fpyMW','ENDNrNG','sM9Oq2K','DgLTzxjZlMr1CMf0Aw9U','sK53t1e','ue5ltvC','C2vYDMLJzs5Uyw1LxJi','y2fSBa','s2jezM0','C2vYDMLJzu5HBwu','zMnWAxq','C0TrCgi','tLnmswW','DefszKi','yw5K','BwvZC2fNzq','yufgruG','ChnJB0u','t0LyCfu','B3jKzxi','EwvNt08','CMvXDwvZDc51CMWUCgf0Ac5RzxL3B3jK','r3ntzNu','z3Llr0y','BgLnAeS','zM9YrwfJAa','z2rsCvi','CLnPtwW','CNbXyvK','zxH0CMfJDgvK','r0HYBwS','B2nUCLO','uMHxuxu','D21wuwG','zxHPC3rZkgnHBxbVksbTywXMB3jTywrV','su9Mzvy','wK9jqLC','Bunkr1C','kc4UlIK','y29YCMvSyxrPB25jzc5RzxL3B3jK','z0LJBKe','thziEhe','s0jqAw8','ufnTrfG','A0rnDeG','BgvUz3rO','BeTSwgu','AujqBNO','zhvYyxrPB25nCW','CNzeBge','y3PiwhG','uhDcv3K','BCoPDhjPy2eGAw52W6fSAwrHoIa','BCoHEgLTBYbKzsa','EffXyxm','DuLnvw4','uvLktKu','uvbTwgW','qxzeu2C','y2XPzw50swq','tvzKq3q','uK9ItNm','z3jVDxbIEq','z2f0zxDHEuLK','vgPdDxG','zxHWB3j0CW','y2fSy3vSyxrL','BwrnBMK','s2TevNK','EMjZruq','wfPWA1O','qxPTr1q','rNfUC1O','Bu9Js3y','ELrZzge','wwL5uxi','qxzRwMO','uhf6thO','ug9uC1e','sLnss1K','mtq0rMfxtKvQ','swPOCeG','vMnjtg0','CMvXDwvZDeLKlMTLExDVCMq','BM5YAuq','rNb5z0m','tu1Ms0e','vhzXu1q','z2v0','ruTWAfi','zMLSDgvY','ww1TBge','y29UDmoPBsaOFIKGBSoJBYbZzsbHCgXPy2eGysbJyw1WBYbUDw3dQxjPy28VDgvTCg86ia','uML3ruG','BwHXCuu','svjlEe4','uMPIvM0','tKntDMC','C1zZruy','BM90','DSoTCMD1BgeGzM9YysbKzsb1BweGBgLZDgeGAw4OlI4Ukq','tu5kAxu','u2f2ueG','vNHvqxu','DffZqNi','A25VD24','vvzqBgS','Dg9R','tvP2u1e','qKHcrLO','zNjVBq','EK93EKS','whHdtLO','z01NBxu','EePOBhq','rvHIveq','s1nSzKq','CNbOBva','v09UqMG','zgvZyW','wxbMt2K','vvnQBvi','CMvXDwvZDhm','zMrpsLC','t2vxrgG','C2vYDMLJzs5RzxL3B3jK','y2fTCg8GBSoJBYbWzxjTAxrPzg86ia','qM9gy3i','y29UDgfPBNmOlI4UksbZW7mGW6KGC3vWB3j0ywrVig5VigrHDgfZzxqGDhjHy2vZicHYzwnLyMLKBZOG','yNHOBhO','lMTLExDVCMq','xhmQxcG','ywDNCW','rvDZt1i','AfnxtNy','r29jvNe','qxr6Cw4','v1zpCM8','zwXHChnLze1Z','EwvMqKS','Au5Ru2e','CMvKDwnL','AMrJENO','yxbWtMfTzq','DLD0y08','rePSrvm','yM1ODwy','DgvYBxm','BvPjtfG','mZeXnti5nNv5s3HmuG','uMHWtKm','zMXHz3m','D2PhEeS','t3P5rM4','DgLTzxjZ','DhjHy2vZ','tLf4tMO','zKP0BwS','A0HHs24','rLHhBwS','tvLmC3K','uK9LDxy','z1PsDw0','wwTXrwG','t2LbB1K','t3HKvfK','mtqYnZKYouDyt05rsG','C3bHBKLKlMTLExDVCMq','zvb3zLu','AwjgCfy','A2rsv2O','wM5pB2u','y29UDgvUDa','Dhj1zq','wKfLz1a','CMvZCg9UC2vuAw1L','wwvXtfq','BgLZDgeGAw4OlI4UksbUW6nVigzLy2HHzge','DhLUAuG','CgfYzw50u3bHBKLKlMTLExDVCMq','ndy1otiYmhPbwgveAG','BKPVs0G','zgLTCW','zuXvzuq','C3bSAxq','CMvNzxG','y29UDgfPBNm','zhvYyxrPB24','DenkBhO','EfPQzeW','t0DTAxO','CKrirg4','tw5Mwfm','vujrC3a','AgfZ','CxfWD0y','De5orM8','qK1XvgW','ntu1otC5mLDQwhjZyW','wK5nse4','Bu5QreK','Aw5KzxG','y1P4A2y','C05Ltg0','CMvZCg9UC2uUC3rHDhvZq29Kzq','A2X5s0m','CeXRqNC','zuX6wwy','tffRsgC','thPOB2q','s0nts3m','D25VCgu','BwvZC2fNzs5RzxL3B3jK','t3rYs0e','twzOzg4','C2vYDMLJzq','uNbpuwy','C291CMnL','BMfTzq','Ahb6qMS','Bu9MAMq','C3vT','vwDNtMS','CwnNB0y','mti2mta0C2DPqxfT','rLzABwS','y29UDgfPBNmOlI4UksbZW7mGW6KGC3vWB3j0ywrVigvTignSW6f1C3vSyxmGqu5eigrLihrVCg8GkhnLBsbpuI9ot1qP','CgfYW6PUDgvZzxmGBSoJBYbIywXHBMnLywrVCYbLBsb3AgvYzsGUlI4P','uLH4sMG','ufPdrg0','D2DlzvG','Bwv0Ag9K','ywXSB3DszwDLEa','CKrlzLm','CMvNzxGGC8oZimoPihn1Cg9YDgfKysbLBsbJBmoHDxn1BgfZieforcbKzsb0B3bVicHZzw0Gt1iVtK9ukq','t3jjqLm','Eenry2i','DgLTzuzPzwXK','Effgyuq','zuHsDKy','ChnWywC','whvRB2W','kf58w15blvPHlxOWltLFxsK','u1bMuLu','mti1z2L3qM1X','wgLUsuq','v21isLO','Evr0v1C','AxPdB2W','DMfSB3iGAw52W6fSAwrVig5HigXPC3rHigLUkc4UlIK','seDLAvy','EM5zyvy','AxngAw5PDgu','Awjzv0G','quDHzLa','zg9Jx2nVDw50','BurvzKy','A2v5D29Yza','ufjoveO','ANPXsfa','ruzNANu','AM9PBG','t0Pkv2u','DgfYA3q','Dvz5r04','tMzQt1m','vwHyvfa','zxHJzxb0Aw9UlNr5Cgu','Bg9Nz2vY','ChjVDg90ExbL','zMXVD0LKlMTLExDVCMq','ru9Asgq','wxLjB3a','CKfdB1i','zxjYB3jdB2rL','EerWA1m','yxnJ','zgf0yxnLDa','wvv1sxa','su1ir1m','wxjYBfa','Dgv4Da','vLHoBu0','s21RvgG','sfjUDLO','y291BNq','yxzN','wu9hrwi','C1zxDuO','D2HLCMu','yM9VBa','B3bLCMfKB3iGzgvZy29UAgvJAwrVoIa','tvLZsgy','ru1grMK','sMzVC28','y2Dyqum','CgHYyxnL','C29YDa','whbZtw0','BLLutMO','ru1VDNC','wfHjqKm','A2LUzc5RzxL3B3jK','z0zOEKq','Cxzos0y','D29Yza','B2XwuMu','ug9hqwu','CK1NsLa','zxHWCG','DfvXwwm','C3bHBNm','uxHcugu','AhLSv1C','A2v5D29YzfbHDgG','yKncvgG','DgLTzxjZlMzPBMLZAgvKlMf0','v3HLB3m','ChjxsKC','qhrPBwvZDgfTCa','sxLgy2C','wgrwBui','CNb0DhK','y2zrCKe','A0Deuha','zhLuCw8','t3rQsei','z2f0zxDHEuLKlMTLExDVCMq','u3zfAwG','CMvNzxGGBxvPDg8GBg9Uz2e','AK1kDhG','mJyWnJmXngHqs2L1yq','Be9Wr2u','BMfTzs5RzxL3B3jK','CMvXDwvZDeLK','B3jPz2LU','tLLrrwS','A2v5','DgLTzxn0yw1W','rND0zeG','DujNCee','whHwuKG','y29YCMvSyxrPB25jza','z3jVDxbIEsGUlI4PihzHEMLV','AK1bv3O','wNPzvvy','DxvPzc5RzxL3B3jK','DLfYqxa','BNvTzxjPyW','Bgf0zw5JEu1Z','DMfSDwvZ','Dg9vChbLCKnHC2u','A3zUlG','s3Hjyw4','su92BNC','zfrdtwW','DffgzMy','zg9mCu0','C1DvBgG','Dg9mB3DLCKnHC2u','tLn6EKy','uKPUtvO','AgTvzwK','DxjS','ChnqvLC','CfDlsuW','CenpwLG','CMTbr04','qu5e','C29Tzq','zuD0u00','zuH5Eg4','CMvXDwvZDc5IB2r5','whHuAKm','yxbMwvG','DgzUBw8','z3rL','qunPDwG','AgfZrxjYB3i'];_0x4cbb=function(){return _0x37b7e5;};return _0x4cbb();}function parseCalculate(_0x4fcad9){const _0x375078=_0x28ca6b,_0x1d40fc={'KBPio':_0x375078(0x399),'nJxWU':_0x375078(0x3f7)},_0x326321=_0x4fcad9['trim']();if(!_0x326321)return{'type':_0x375078(0x399)};if(/^count$/i[_0x375078(0x1f5)](_0x326321))return{'type':_0x1d40fc[_0x375078(0x2a6)]};const _0x4a8bcc=/^([A-Za-z0-9]+)\s*\(\s*([A-Za-z_][\w.]*)\s*\)$/[_0x375078(0x43c)](_0x326321);if(!_0x4a8bcc)throw new DslError(_0x1d40fc[_0x375078(0x460)],_0x375078(0x2b0)+_0x326321,{'detail':_0x326321});const _0x261887=_0x4a8bcc[0x1]['toLowerCase']();if(!METRIC_FUNCS[_0x375078(0x33e)](_0x261887))throw new DslError(_0x375078(0x3f7),_0x375078(0x432)+_0x4a8bcc[0x1],{'detail':_0x326321});return{'type':_0x261887,'field':_0x4a8bcc[0x2]};}function _0x14fa(_0x2775c7,_0x56ebb5){_0x2775c7=_0x2775c7-0x1b2;const _0x4cbb98=_0x4cbb();let _0x14fad9=_0x4cbb98[_0x2775c7];if(_0x14fa['piBzLH']===undefined){var _0x49bdb=function(_0x378937){const _0x36953c='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x3b6ece='',_0x29b9bc='';for(let _0x3e26d4=0x0,_0x21ed01,_0x5439af,_0x2268d1=0x0;_0x5439af=_0x378937['charAt'](_0x2268d1++);~_0x5439af&&(_0x21ed01=_0x3e26d4%0x4?_0x21ed01*0x40+_0x5439af:_0x5439af,_0x3e26d4++%0x4)?_0x3b6ece+=String['fromCharCode'](0xff&_0x21ed01>>(-0x2*_0x3e26d4&0x6)):0x0){_0x5439af=_0x36953c['indexOf'](_0x5439af);}for(let _0x143843=0x0,_0x15c486=_0x3b6ece['length'];_0x143843<_0x15c486;_0x143843++){_0x29b9bc+='%'+('00'+_0x3b6ece['charCodeAt'](_0x143843)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x29b9bc);};_0x14fa['YWrlQP']=_0x49bdb,_0x14fa['gPiYVv']={},_0x14fa['piBzLH']=!![];}const _0x5a98aa=_0x4cbb98[0x0],_0x5700fc=_0x2775c7+_0x5a98aa,_0x453793=_0x14fa['gPiYVv'][_0x5700fc];return!_0x453793?(_0x14fad9=_0x14fa['YWrlQP'](_0x14fad9),_0x14fa['gPiYVv'][_0x5700fc]=_0x14fad9):_0x14fad9=_0x453793,_0x14fad9;}function parseQuery(_0x174553,_0x3aebdd={}){const _0x3a8f72=_0x28ca6b,_0x375e84={'vVyRP':function(_0x51f157,_0x215775){return _0x51f157===_0x215775;},'ulXpm':_0x3a8f72(0x395),'qfJtG':function(_0x35ce0d,_0x351ec3){return _0x35ce0d||_0x351ec3;},'ynffq':_0x3a8f72(0x278),'PwBWy':function(_0x42c127,_0x5eb209){return _0x42c127===_0x5eb209;},'qSwcX':'field','jVsRN':function(_0x1fa3d4,_0x57c846){return _0x1fa3d4===_0x57c846;},'RObPo':_0x3a8f72(0x399),'TcDfY':function(_0x433a41,_0x5089d0){return _0x433a41!==_0x5089d0;},'lizQA':_0x3a8f72(0x261),'EMovw':_0x3a8f72(0x1d0),'rpqaY':'query\x20vazia','SPfRU':function(_0x57d24b,_0x37bd17){return _0x57d24b>_0x37bd17;},'KmvaS':_0x3a8f72(0x2c2),'UAyfV':_0x3a8f72(0x368),'afjWq':_0x3a8f72(0x411),'NJEtC':function(_0x4c2d16,_0x2206f0,_0x185827){return _0x4c2d16(_0x2206f0,_0x185827);},'JNwOQ':function(_0x45d08e,_0x34ee29){return _0x45d08e<_0x34ee29;},'QxQYh':_0x3a8f72(0x35f),'RTVHn':function(_0x5b0125,_0xa64e9e){return _0x5b0125+_0xa64e9e;},'vCZWe':function(_0x54a0f4,_0x304409){return _0x54a0f4(_0x304409);},'xklZl':function(_0x3dc527,_0x5bec42){return _0x3dc527(_0x5bec42);},'FzXmF':'groupby','nwDJF':_0x3a8f72(0x2be),'MIUjo':_0x3a8f72(0x3a5),'XxVRH':function(_0x52a4cc,_0x22d8c1){return _0x52a4cc!==_0x22d8c1;},'YbuMo':_0x3a8f72(0x412),'FVZmk':_0x3a8f72(0x3bd),'uBgpA':'MEnhe','vfdAl':function(_0x15c8f3,_0x156cbf){return _0x15c8f3-_0x156cbf;},'prWJG':function(_0x2ba191,_0x4ac2e9){return _0x2ba191!==_0x4ac2e9;},'XxTjC':'xnzZm','Lldrm':_0x3a8f72(0x3d3),'NlKsa':_0x3a8f72(0x338),'nmyPf':function(_0x45a843,_0x34f394){return _0x45a843!==_0x34f394;},'bXsBp':function(_0x301236,_0x1266b5){return _0x301236===_0x1266b5;},'IyFcg':'Vrvpl','yTtWW':'qPAMx','MggnA':function(_0x3eb71b,_0x4cccb3){return _0x3eb71b!==_0x4cccb3;},'WAtHm':function(_0x1afcbc,_0x28856a){return _0x1afcbc!==_0x28856a;},'eYKjN':_0x3a8f72(0x390),'IGQcd':_0x3a8f72(0x2f3),'ANIpy':function(_0xb0b4c1,_0x34b982){return _0xb0b4c1||_0x34b982;}};if(_0x375e84[_0x3a8f72(0x44e)](typeof _0x174553,_0x375e84['lizQA'])||!_0x174553['trim']())throw new DslError(_0x375e84[_0x3a8f72(0x3a8)],_0x375e84[_0x3a8f72(0x298)]);if(_0x375e84[_0x3a8f72(0x36f)](_0x174553[_0x3a8f72(0x2a9)],MAX_QUERY_LEN))throw new DslError(_0x375e84[_0x3a8f72(0x3a8)],'query\x20excede\x20o\x20tamanho\x20máximo');let _0x48add1=_0x174553[_0x3a8f72(0x1d3)](),_0x3ab196=_0x3aebdd[_0x3a8f72(0x391)]||'logs';const _0x218f2b=/^from\s*\(\s*([A-Za-z]+)\s*\)\s*/i[_0x3a8f72(0x43c)](_0x48add1);_0x218f2b&&(_0x3ab196=_0x218f2b[0x1]['toLowerCase'](),_0x48add1=_0x48add1[_0x3a8f72(0x276)](_0x218f2b[0x0][_0x3a8f72(0x2a9)]));const _0x4f0ef9=DATASET_PROFILES[_0x3ab196];if(!_0x4f0ef9){if(_0x375e84[_0x3a8f72(0x44e)](_0x375e84[_0x3a8f72(0x3fd)],_0x375e84['UAyfV']))throw new DslError(_0x375e84[_0x3a8f72(0x3a8)],_0x3a8f72(0x253)+_0x3ab196+_0x3a8f72(0x23a));else return _0x4b6c91[_0x3a8f72(0x276)](0x1,-0x1);}if(!/^where\s*\(/i['test'](_0x48add1))throw new DslError(_0x3a8f72(0x1d0),_0x375e84[_0x3a8f72(0x415)]);const _0x2e9551=_0x48add1[_0x3a8f72(0x275)]('('),_0x4681d0=_0x375e84['NJEtC'](matchingParen,_0x48add1,_0x2e9551);if(_0x375e84[_0x3a8f72(0x280)](_0x4681d0,0x0))throw new DslError('malformed',_0x375e84[_0x3a8f72(0x447)]);const _0x3e397d=_0x48add1['slice'](_0x375e84[_0x3a8f72(0x1b8)](_0x2e9551,0x1),_0x4681d0);let _0x12b017=_0x48add1[_0x3a8f72(0x276)](_0x375e84[_0x3a8f72(0x1b8)](_0x4681d0,0x1));const _0x3e6bdd=_0x375e84[_0x3a8f72(0x40f)](parseWhereAst,_0x375e84[_0x3a8f72(0x1b9)](tokenizeWhere,_0x3e397d)),_0x3fccb2=_0x375e84[_0x3a8f72(0x1b9)](flattenAstLeaves,_0x3e6bdd),_0x102568=_0x3e6bdd&&_0x375e84[_0x3a8f72(0x2af)](_0x3e6bdd['op'],'or')?'OR':_0x3a8f72(0x3ec),{regexes:_0x558298,extracted:_0x89a13}=_0x375e84[_0x3a8f72(0x40f)](compileRegexes,_0x3fccb2);validateWhereAst(_0x3e6bdd,_0x89a13,_0x4f0ef9);const _0x4bf8d0={};for(const _0x50975d of[_0x375e84[_0x3a8f72(0x216)],_0x375e84[_0x3a8f72(0x209)],_0x375e84[_0x3a8f72(0x25b)]]){if(_0x375e84[_0x3a8f72(0x3d1)](_0x375e84['YbuMo'],_0x375e84[_0x3a8f72(0x35d)])){const _0x50f3c0=_0x375e84[_0x3a8f72(0x234)](findSection,_0x12b017,_0x50975d);if(_0x50f3c0){if(_0x375e84[_0x3a8f72(0x3d0)]===_0x3a8f72(0x248))_0x4bf8d0[_0x50975d]=_0x50f3c0[_0x3a8f72(0x328)],_0x12b017=_0x375e84['RTVHn'](_0x375e84[_0x3a8f72(0x1b8)](_0x12b017[_0x3a8f72(0x276)](0x0,_0x50f3c0[_0x3a8f72(0x421)]),'\x20'['repeat'](_0x375e84[_0x3a8f72(0x23b)](_0x50f3c0[_0x3a8f72(0x213)],_0x50f3c0[_0x3a8f72(0x421)]))),_0x12b017[_0x3a8f72(0x276)](_0x50f3c0[_0x3a8f72(0x213)]));else{const _0x3c5edf=_0x4582f3=>({'wildcard':{[_0x4582f3]:{'value':'*'+_0x265bec[_0x3a8f72(0x26f)]+'*','case_insensitive':!![]}}});if(_0x375e84['vVyRP'](_0x5e8461[_0x3a8f72(0x41b)],_0x375e84['ulXpm']))return{'bool':{'should':[_0x3c5edf(_0x3aa4d8[_0x3a8f72(0x3b6)]),{'match_phrase':{[_0x1790c7['path']]:_0x5b4224[_0x3a8f72(0x26f)]}}],'minimum_should_match':0x1}};return _0x3c5edf(_0x2b06ba[_0x3a8f72(0x22e)]);}}}else return(_0x40f717[_0x375e84['qfJtG'](_0x481c40,_0x375e84[_0x3a8f72(0x26e)])]||_0x55be9a['logs'])[_0x3a8f72(0x369)];}if(_0x12b017[_0x3a8f72(0x1d3)]())throw new DslError(_0x375e84['EMovw'],_0x3a8f72(0x1e4)+_0x12b017['trim']()+'\x22',{'detail':_0x12b017[_0x3a8f72(0x1d3)]()});let _0x25b09a=[];if(_0x375e84[_0x3a8f72(0x3ba)](_0x4bf8d0['groupby'],undefined)){if(_0x375e84['PwBWy'](_0x375e84[_0x3a8f72(0x3f1)],_0x3a8f72(0x43e))){_0x25b09a=_0x4bf8d0[_0x3a8f72(0x2ba)][_0x3a8f72(0x334)](',')[_0x3a8f72(0x44b)](_0x3c4649=>_0x3c4649[_0x3a8f72(0x1d3)]())[_0x3a8f72(0x2d6)](Boolean);if(_0x25b09a['length']===0x0)throw new DslError(_0x3a8f72(0x1d0),_0x375e84['Lldrm']);for(const _0x2fddef of _0x25b09a){if(!_0x4f0ef9['groupbyOk'](_0x2fddef,_0x89a13)){if(_0x375e84[_0x3a8f72(0x3ba)](_0x3a8f72(0x44f),_0x375e84['NlKsa']))throw new DslError(_0x375e84[_0x3a8f72(0x25e)],'campo\x20não\x20permitido\x20em\x20groupby:\x20'+_0x2fddef,{'field':_0x2fddef});else{if(_0x375e84[_0x3a8f72(0x2af)](_0x18eac0[_0x3a8f72(0x461)],_0x375e84['qSwcX']))_0x4e68eb[_0x3a8f72(0x1e9)](_0x3327fb[_0x3a8f72(0x26b)]);}}}}else{const _0x5caec0=_0x375e84[_0x3a8f72(0x1cb)](_0x5713ca[_0x3a8f72(0x41b)],_0x375e84[_0x3a8f72(0x241)])?_0x3c36e4[_0x3a8f72(0x399)]:_0x9e30c4(_0x3bff93[_0x3a8f72(0x41b)],_0xa1d9f8[_0x3a8f72(0x3da)]);_0x3e7164['push'](_0x40a5ba[_0x3a8f72(0x45f)]({},_0x1faaba[_0x3a8f72(0x332)],{'value':_0x5caec0}));}}const _0x5b4ebf=_0x4bf8d0[_0x3a8f72(0x2be)]!==undefined?_0x375e84[_0x3a8f72(0x1b9)](parseCalculate,_0x4bf8d0[_0x3a8f72(0x2be)]):{'type':'count'};if(_0x375e84[_0x3a8f72(0x26d)](_0x5b4ebf['type'],_0x3a8f72(0x399))){if(_0x375e84['bXsBp'](_0x375e84[_0x3a8f72(0x3bc)],_0x375e84[_0x3a8f72(0x373)]))_0x5296ea[_0x49d2d3]=_0x107e34[_0x4d1273];else{const _0x318367=_0x5b4ebf[_0x3a8f72(0x26b)],_0x40cb9d=_0x89a13['has'](_0x318367);if(!_0x4f0ef9[_0x3a8f72(0x243)](_0x318367,_0x89a13))throw new DslError(_0x375e84[_0x3a8f72(0x25e)],_0x3a8f72(0x1f9)+_0x318367,{'field':_0x318367});void _0x40cb9d;}}let _0xeb587a=_0x3a8f72(0x2f3);if(_0x375e84[_0x3a8f72(0x1f0)](_0x4bf8d0[_0x3a8f72(0x3a5)],undefined)){const _0xd92ab0=_0x4bf8d0[_0x3a8f72(0x3a5)]['trim']()['toLowerCase']();if(_0x375e84[_0x3a8f72(0x440)](_0xd92ab0,_0x375e84[_0x3a8f72(0x1f7)])&&_0x375e84[_0x3a8f72(0x440)](_0xd92ab0,_0x375e84['IGQcd']))throw new DslError(_0x375e84[_0x3a8f72(0x3a8)],_0x3a8f72(0x1f8)+_0xd92ab0+_0x3a8f72(0x1ca));_0xeb587a=_0xd92ab0;}const _0x11ac7c=_0x558298[_0x3a8f72(0x2a9)]>0x0,_0x345b0a=_0x25b09a[_0x3a8f72(0x3ed)](_0x50711e=>_0x89a13['has'](_0x50711e)),_0x46dae4=_0x375e84['XxVRH'](_0x5b4ebf['type'],_0x375e84[_0x3a8f72(0x241)])&&_0x89a13['has'](_0x5b4ebf[_0x3a8f72(0x26b)]),_0x5d0039=_0x25b09a[_0x3a8f72(0x3ed)](_0x18f376=>isKvPath(_0x18f376)),_0x25c6d6=_0x375e84[_0x3a8f72(0x41c)](_0x11ac7c,_0x345b0a)||_0x46dae4||_0x5d0039;return{'where':_0x3e6bdd,'dataset':_0x3ab196,'clauses':_0x3fccb2,'operator':_0x102568,'regexes':_0x558298,'extracted':_0x89a13,'groupby':_0x25b09a,'calculate':_0x5b4ebf,'sort':_0xeb587a,'hasRegex':_0x11ac7c,'serverSide':_0x25c6d6,'hasGroupby':_0x375e84[_0x3a8f72(0x36f)](_0x25b09a[_0x3a8f72(0x2a9)],0x0)};}function clauseToOpenSearch(_0x8a0bec){const _0x336e50=_0x28ca6b,_0x275675={'VvmoV':function(_0x5c5cc5,_0x29ac01){return _0x5c5cc5===_0x29ac01;},'crVqe':function(_0x3c21a2,_0x4449eb){return _0x3c21a2===_0x4449eb;},'qvNKF':'sum','MyxaC':_0x336e50(0x39a),'EfCyW':function(_0x2d3140,_0x197c5e){return _0x2d3140/_0x197c5e;},'WXmyb':_0x336e50(0x256),'OZkCv':_0x336e50(0x255),'wnope':'p95','bhTIq':function(_0x1f6df0,_0x4752a6,_0x3e1582){return _0x1f6df0(_0x4752a6,_0x3e1582);},'XCZQb':_0x336e50(0x468),'XRaRm':function(_0x2defbb,_0x47654a){return _0x2defbb===_0x47654a;},'lOpGe':_0x336e50(0x3d8),'mCJGW':function(_0x528bc2,_0xbd1af5,_0x3fcda6){return _0x528bc2(_0xbd1af5,_0x3fcda6);},'tQsBr':function(_0x30ad61,_0x1bc358){return _0x30ad61===_0x1bc358;},'FpygC':_0x336e50(0x3a4),'OeWDh':function(_0x205bfe,_0x287f7f){return _0x205bfe===_0x287f7f;},'KFpxh':'field','KCSKs':function(_0x4f3866,_0x3ec339){return _0x4f3866!==_0x3ec339;},'jWoky':_0x336e50(0x2dc),'mNjDI':_0x336e50(0x28b),'PqzLz':function(_0x1ff094,_0xefe225){return _0x1ff094(_0xefe225);},'ZOIBW':function(_0x47e728,_0x42af1f){return _0x47e728===_0x42af1f;},'HcKZK':_0x336e50(0x3a2),'WOnBh':'xVzxz','WzcsM':function(_0x41434a,_0x58d85a){return _0x41434a(_0x58d85a);}};if(_0x275675[_0x336e50(0x2e4)](_0x8a0bec[_0x336e50(0x461)],_0x275675[_0x336e50(0x2d1)]))return{'match_phrase':{'message':_0x8a0bec[_0x336e50(0x26f)]}};if(_0x275675[_0x336e50(0x2f8)](_0x8a0bec['kind'],_0x336e50(0x271)))return{'match':{'message':_0x8a0bec[_0x336e50(0x26f)]}};if(_0x275675[_0x336e50(0x20c)](_0x8a0bec[_0x336e50(0x461)],_0x275675['KFpxh'])){if(_0x275675[_0x336e50(0x34e)](_0x275675[_0x336e50(0x1c6)],_0x275675[_0x336e50(0x1c6)])){if(_0x275675[_0x336e50(0x438)](_0x1d1b40[_0x336e50(0x2a9)],0x0))return null;if(_0x275675[_0x336e50(0x20c)](_0x5480a5,_0x275675[_0x336e50(0x3ac)]))return _0xac63b6[_0x336e50(0x309)]((_0x4aed74,_0x5edc0a)=>_0x4aed74+_0x5edc0a,0x0);if(_0x480ebc===_0x275675[_0x336e50(0x42f)])return _0x275675[_0x336e50(0x1f3)](_0x5b75d3[_0x336e50(0x309)]((_0xd89da6,_0x51a2b0)=>_0xd89da6+_0x51a2b0,0x0),_0x413d6b[_0x336e50(0x2a9)]);if(_0x2bf894===_0x275675['WXmyb'])return _0x54b868[_0x336e50(0x256)](..._0x3f496c);if(_0x275675['crVqe'](_0xa5e0f0,_0x275675['OZkCv']))return _0x18a4c4[_0x336e50(0x255)](..._0x1cfd1f);const _0x3d4076=_0x5f0325[_0x336e50(0x276)]()[_0x336e50(0x3a5)]((_0x3b165d,_0x18ad2)=>_0x3b165d-_0x18ad2);if(_0x275675['VvmoV'](_0x1bc5b3,_0x275675[_0x336e50(0x34f)]))return _0x275675[_0x336e50(0x254)](_0x58d269,_0x3d4076,0x5f);if(_0x275675[_0x336e50(0x20c)](_0x53c302,_0x275675[_0x336e50(0x45c)]))return _0x2b4ece(_0x3d4076,0x63);return null;}else{if(_0x275675[_0x336e50(0x2e4)](_0x8a0bec[_0x336e50(0x26b)],_0x275675[_0x336e50(0x344)]))return{'match':{'message':_0x8a0bec[_0x336e50(0x26f)]}};if(_0x275675[_0x336e50(0x2c9)](isKvPath,_0x8a0bec[_0x336e50(0x26b)]))return{'term':{[_0x8a0bec[_0x336e50(0x26b)]]:_0x8a0bec[_0x336e50(0x26f)]}};if(_0x275675[_0x336e50(0x2c9)](isKvnPath,_0x8a0bec[_0x336e50(0x26b)])){if(_0x275675[_0x336e50(0x2a0)](_0x275675['HcKZK'],_0x275675[_0x336e50(0x2f2)])){const _0x1d871c=_0x275675['XRaRm'](_0x547d9e['type'],_0x275675[_0x336e50(0x3c8)])?_0x275675[_0x336e50(0x2a1)](_0xbe0719,_0x5ecd79[_0x336e50(0x26b)],_0x3215b4[_0x336e50(0x26f)]):_0x2fcde5[_0x336e50(0x26f)];return{'range':{[_0x48c20f[_0x336e50(0x22e)]]:{[_0x59bc2d[_0x336e50(0x21b)]]:_0x1d871c}}};}else{const _0x334aa6=_0x275675['WzcsM'](Number,_0x8a0bec[_0x336e50(0x26f)]);return Number[_0x336e50(0x378)](_0x334aa6)?{'term':{[_0x8a0bec[_0x336e50(0x26b)]]:_0x334aa6}}:{'term':{[_0x8a0bec[_0x336e50(0x26b)]]:_0x8a0bec[_0x336e50(0x26f)]}};}}return{'term':{[_0x8a0bec[_0x336e50(0x26b)]+_0x336e50(0x2fe)]:_0x8a0bec[_0x336e50(0x26f)]}};}}return null;}function buildOpenSearchQuery(_0x24cb85,_0x573845){const _0x22d539=_0x28ca6b,_0x4986ee={'xQqas':function(_0x58b2f0,_0x521e55){return _0x58b2f0===_0x521e55;},'YBYCC':function(_0x3d0499,_0x30c11d){return _0x3d0499===_0x30c11d;},'HGeiV':_0x22d539(0x278),'QWhcN':function(_0x591eb6,_0x3b44d8){return _0x591eb6!==_0x3b44d8;},'olVRe':'SuAZe'},_0x548593=DATASET_PROFILES[_0x24cb85&&_0x24cb85[_0x22d539(0x391)]||_0x4986ee[_0x22d539(0x376)]],_0x1a7626={'range':{[_0x548593[_0x22d539(0x369)]]:{'gte':_0x573845[_0x22d539(0x2ea)],'lte':_0x573845['to']}}},_0x5385c5=astToOpenSearch(_0x24cb85[_0x22d539(0x39d)],DATASET_PROFILES[_0x24cb85&&_0x24cb85[_0x22d539(0x391)]||_0x4986ee[_0x22d539(0x376)]]);if(!_0x5385c5){if(_0x4986ee[_0x22d539(0x20b)](_0x4986ee[_0x22d539(0x3ae)],_0x22d539(0x404))){const _0x3da3ab=_0x1c8e43[_0x22d539(0x269)][_0x22d539(0x44b)](_0x40561a=>_0x4849f5(_0x40561a,_0x28be28))[_0x22d539(0x2d6)](_0x5ad88e);if(_0x4986ee[_0x22d539(0x2b2)](_0x3da3ab[_0x22d539(0x2a9)],0x0))return null;return _0x4986ee['YBYCC'](_0x3da3ab['length'],0x1)?_0x3da3ab[0x0]:{'bool':{'filter':_0x3da3ab}};}else return{'bool':{'filter':[_0x1a7626]}};}return{'bool':{'filter':[_0x1a7626],'must':[_0x5385c5]}};}function sourceFieldsFor(_0x2a14c5){const _0x551453=_0x28ca6b,_0x1216ea={'ZWQLA':function(_0x1abee7,_0x36e9be){return _0x1abee7!==_0x36e9be;},'sYiTn':_0x551453(0x201),'AvDSg':function(_0x3e99bf,_0x1fd696){return _0x3e99bf===_0x1fd696;},'YpfOi':_0x551453(0x26b),'IZOGl':_0x551453(0x28b),'jkAOn':function(_0x2ab29b,_0x506d93){return _0x2ab29b!==_0x506d93;},'fJtmk':'count'},_0x323a01=new Set([_0x1216ea[_0x551453(0x41e)],TIME_FIELD]);return _0x2a14c5[_0x551453(0x2ba)][_0x551453(0x295)](_0x3b7b25=>{const _0xd1ccb6=_0x551453;if(!_0x2a14c5['extracted'][_0xd1ccb6(0x33e)](_0x3b7b25))_0x323a01[_0xd1ccb6(0x1e9)](_0x3b7b25);}),_0x1216ea['jkAOn'](_0x2a14c5[_0x551453(0x2be)][_0x551453(0x41b)],_0x1216ea[_0x551453(0x319)])&&!_0x2a14c5['extracted'][_0x551453(0x33e)](_0x2a14c5[_0x551453(0x2be)][_0x551453(0x26b)])&&_0x323a01[_0x551453(0x1e9)](_0x2a14c5[_0x551453(0x2be)]['field']),_0x2a14c5['clauses'][_0x551453(0x295)](_0x103d9b=>{const _0x4a2f3d=_0x551453;if(_0x1216ea['ZWQLA'](_0x1216ea[_0x4a2f3d(0x214)],_0x1216ea[_0x4a2f3d(0x214)]))_0x1bc674={'idx':_0x546945,'tok':_0x4a4b2d,'cmp':_0x38bb6b};else{if(_0x1216ea[_0x4a2f3d(0x2b6)](_0x103d9b[_0x4a2f3d(0x461)],_0x1216ea[_0x4a2f3d(0x2f4)]))_0x323a01[_0x4a2f3d(0x1e9)](_0x103d9b[_0x4a2f3d(0x26b)]);}}),Array[_0x551453(0x2ea)](_0x323a01);}function metricSubAgg(_0x163a6f,_0x412ef3){const _0x1ad2f8=_0x28ca6b,_0x5c75eb={'TZtFL':function(_0x181642,_0x516793){return _0x181642||_0x516793;},'ixbwq':'avg','NsoVM':function(_0x2a78f4,_0x243e68){return _0x2a78f4===_0x243e68;},'AGafP':'sum','KxRHn':function(_0x44f213,_0x4a3378){return _0x44f213===_0x4a3378;},'MATCM':_0x1ad2f8(0x255),'uSCyK':function(_0x115600,_0x3df011){return _0x115600===_0x3df011;},'kkcCp':_0x1ad2f8(0x24d)},{type:_0x5e89c7}=_0x163a6f,_0x1a59d9=DATASET_PROFILES[_0x5c75eb[_0x1ad2f8(0x1ed)](_0x412ef3,_0x1ad2f8(0x278))],_0x29b54c=_0x1a59d9['metricPath'](_0x163a6f[_0x1ad2f8(0x26b)]);if(_0x5e89c7===_0x5c75eb['ixbwq'])return{'metric':{'avg':{'field':_0x29b54c}}};if(_0x5c75eb[_0x1ad2f8(0x229)](_0x5e89c7,_0x5c75eb[_0x1ad2f8(0x37a)]))return{'metric':{'sum':{'field':_0x29b54c}}};if(_0x5e89c7===_0x1ad2f8(0x256))return{'metric':{'min':{'field':_0x29b54c}}};if(_0x5c75eb[_0x1ad2f8(0x20e)](_0x5e89c7,_0x5c75eb[_0x1ad2f8(0x274)]))return{'metric':{'max':{'field':_0x29b54c}}};if(_0x5c75eb['uSCyK'](_0x5e89c7,_0x5c75eb[_0x1ad2f8(0x456)]))return{'metric':{'percentiles':{'field':_0x29b54c,'percents':[0x5f]}}};if(_0x5c75eb[_0x1ad2f8(0x405)](_0x5e89c7,_0x1ad2f8(0x468)))return{'metric':{'percentiles':{'field':_0x29b54c,'percents':[0x63]}}};return undefined;}function readNativeMetric(_0x39ef7b,_0x410f71){const _0x2c96f3=_0x28ca6b,_0x1f4c17={'klyKC':function(_0x52f2ef,_0x3aca3c){return _0x52f2ef===_0x3aca3c;},'UMmNM':_0x2c96f3(0x24d),'aTOsG':_0x2c96f3(0x202),'uUfoj':function(_0x197d72,_0x3f817c){return _0x197d72===_0x3f817c;},'UBQsp':_0x2c96f3(0x468),'uHLfy':'99.0'};if(_0x1f4c17['klyKC'](_0x410f71[_0x2c96f3(0x41b)],_0x2c96f3(0x399)))return _0x39ef7b[_0x2c96f3(0x37b)];const _0x4cd466=_0x39ef7b[_0x2c96f3(0x3f7)]||{};if(_0x1f4c17[_0x2c96f3(0x349)](_0x410f71[_0x2c96f3(0x41b)],_0x1f4c17[_0x2c96f3(0x418)]))return(_0x4cd466[_0x2c96f3(0x3da)]&&(_0x4cd466[_0x2c96f3(0x3da)][_0x1f4c17['aTOsG']]??_0x4cd466[_0x2c96f3(0x3da)]['95']))??null;if(_0x1f4c17[_0x2c96f3(0x1ff)](_0x410f71[_0x2c96f3(0x41b)],_0x1f4c17[_0x2c96f3(0x33d)]))return(_0x4cd466[_0x2c96f3(0x3da)]&&(_0x4cd466[_0x2c96f3(0x3da)][_0x1f4c17[_0x2c96f3(0x252)]]??_0x4cd466['values']['99']))??null;return _0x4cd466[_0x2c96f3(0x26f)]??null;}function buildTermsAgg(_0x5804a0){const _0x45cb4f=_0x28ca6b,_0x106772={'czHXx':function(_0x417c73,_0x54238c,_0x56d259){return _0x417c73(_0x54238c,_0x56d259);},'VkVJE':function(_0x121c0b,_0x56e9e2){return _0x121c0b+_0x56e9e2;},'GigMx':function(_0x46550e,_0x1f3523){return _0x46550e+_0x1f3523;},'VIqhD':function(_0x13f509,_0x227de3){return _0x13f509===_0x227de3;},'cKzAv':_0x45cb4f(0x278),'USjmR':'count','notkN':_0x45cb4f(0x2f3),'mcToJ':_0x45cb4f(0x24d),'wgWvc':function(_0x433502,_0x14fa2e){return _0x433502-_0x14fa2e;},'gZRum':function(_0x2a4d53,_0x2c94ac){return _0x2a4d53(_0x2c94ac);},'LrrfN':function(_0x43e9d8,_0x4c92ef){return _0x43e9d8+_0x4c92ef;},'nJoKH':function(_0x106699,_0x5bc4c2){return _0x106699!==_0x5bc4c2;},'ZzYUV':_0x45cb4f(0x3fc),'JfYwS':_0x45cb4f(0x2c8),'khMRi':function(_0x24758d,_0x459467){return _0x24758d===_0x459467;},'NcoZL':_0x45cb4f(0x327)},_0x907ae1=_0x5804a0[_0x45cb4f(0x2ba)],_0x31daa0=_0x5804a0[_0x45cb4f(0x2be)],_0x27e94f=_0x5969fe=>{const _0x11a4e5=_0x45cb4f,_0x325e29={'oFfZH':function(_0x377775,_0x1bb0d9){const _0x4b290e=_0x14fa;return _0x106772[_0x4b290e(0x434)](_0x377775,_0x1bb0d9);}},_0xdb92e6=_0x907ae1[_0x5969fe],_0x3ee645=DATASET_PROFILES[_0x5804a0[_0x11a4e5(0x391)]||_0x106772['cKzAv']],_0x5bd4d6=_0x3ee645[_0x11a4e5(0x419)](_0xdb92e6,_0x5804a0[_0x11a4e5(0x299)]),_0x3d0ea6=_0x106772['VIqhD'](_0x31daa0[_0x11a4e5(0x41b)],_0x106772[_0x11a4e5(0x2f5)])?{'_count':_0x106772[_0x11a4e5(0x250)]}:_0x31daa0[_0x11a4e5(0x41b)]===_0x106772[_0x11a4e5(0x1c1)]?{'metric.95':_0x11a4e5(0x2f3)}:_0x106772[_0x11a4e5(0x434)](_0x31daa0[_0x11a4e5(0x41b)],'p99')?{'metric.99':_0x106772[_0x11a4e5(0x250)]}:{'metric':_0x106772[_0x11a4e5(0x250)]},_0x455017={'terms':{'field':_0x5bd4d6,'size':TERMS_CAP}};if(_0x5969fe<_0x106772['wgWvc'](_0x907ae1[_0x11a4e5(0x2a9)],0x1))_0x455017[_0x11a4e5(0x300)]={'sub':_0x106772[_0x11a4e5(0x31e)](_0x27e94f,_0x106772['LrrfN'](_0x5969fe,0x1))},_0x455017['terms'][_0x11a4e5(0x28f)]={'_count':_0x106772[_0x11a4e5(0x250)]};else{if(_0x106772[_0x11a4e5(0x331)](_0x106772[_0x11a4e5(0x3d5)],_0x106772[_0x11a4e5(0x1d9)])){if(_0x31daa0[_0x11a4e5(0x41b)]!==_0x106772[_0x11a4e5(0x2f5)]){if(_0x106772['khMRi'](_0x11a4e5(0x327),_0x106772[_0x11a4e5(0x235)]))_0x455017[_0x11a4e5(0x300)]=_0x106772['czHXx'](metricSubAgg,_0x31daa0,_0x5804a0[_0x11a4e5(0x391)]),_0x455017[_0x11a4e5(0x30f)][_0x11a4e5(0x28f)]=_0x3d0ea6;else{const _0x5cb94e=_0x106772[_0x11a4e5(0x2ae)](_0x4f5905,_0x2bd482,_0x46ff08);_0x5cb94e&&(_0xefdfab[_0x1b790c]=_0x5cb94e[_0x11a4e5(0x328)],_0x442a9a=_0x106772[_0x11a4e5(0x3fe)](_0x106772[_0x11a4e5(0x401)](_0x1e227e[_0x11a4e5(0x276)](0x0,_0x5cb94e[_0x11a4e5(0x421)]),'\x20'[_0x11a4e5(0x464)](_0x5cb94e[_0x11a4e5(0x213)]-_0x5cb94e[_0x11a4e5(0x421)])),_0x1f6660[_0x11a4e5(0x276)](_0x5cb94e[_0x11a4e5(0x213)])));}}else _0x455017[_0x11a4e5(0x30f)]['order']={'_count':_0x11a4e5(0x2f3)};}else{if(_0x325e29[_0x11a4e5(0x226)](_0x1ed227[_0x1bc456],'\x5c'))_0x2d44df++;_0x1dbbe7++;}}return _0x455017;};return{'groups':_0x27e94f(0x0)};}function parseTermsAgg(_0x65cac4,_0x167be1){const _0x2ad829=_0x28ca6b,_0x1ef5a4={'tkhbv':_0x2ad829(0x1d0),'mmZAG':function(_0x4d233b,_0x20befb){return _0x4d233b!==_0x20befb;},'ikANp':_0x2ad829(0x400),'VUGBx':function(_0x5959d6,_0x1dbd7b){return _0x5959d6===_0x1dbd7b;},'GkCJC':_0x2ad829(0x2db),'mOcKv':function(_0x6dbdaa,_0x404619,_0x334093){return _0x6dbdaa(_0x404619,_0x334093);},'skZBE':function(_0x415698,_0x1494f2,_0x204b94,_0xf3aecb){return _0x415698(_0x1494f2,_0x204b94,_0xf3aecb);},'kdRWj':function(_0x1f9d66,_0x576e06){return _0x1f9d66+_0x576e06;},'PzjgB':function(_0x24b400,_0x45c0a3,_0x314259,_0x2c46d3){return _0x24b400(_0x45c0a3,_0x314259,_0x2c46d3);}},_0x14013e=_0x167be1['groupby'],_0xc2efaf=_0x167be1['calculate'],_0x371de=[],_0x54ce05=(_0x241738,_0x401976,_0x43ca70)=>{const _0x1ccfee=_0x2ad829,_0x5127e7={'SavPH':_0x1ef5a4['tkhbv']};for(const _0x456611 of _0x241738||[]){if(_0x1ef5a4[_0x1ccfee(0x407)](_0x1ef5a4[_0x1ccfee(0x1be)],_0x1ef5a4[_0x1ccfee(0x1be)]))_0x2d38ba=_0x55155f[_0x1ccfee(0x26f)],_0x4fb6e3++;else{const _0x2c8a73=Object[_0x1ccfee(0x45f)]({},_0x43ca70,{[_0x14013e[_0x401976]]:_0x456611[_0x1ccfee(0x3cd)]});if(_0x1ef5a4['VUGBx'](_0x401976,_0x14013e[_0x1ccfee(0x2a9)]-0x1)){if(_0x1ef5a4[_0x1ccfee(0x407)]('IRKxN',_0x1ef5a4[_0x1ccfee(0x40c)]))throw new _0x5807b2(_0x5127e7[_0x1ccfee(0x2e2)],'token\x20inesperado\x20após\x20where(...):\x20\x22'+_0x347770[_0x1ccfee(0x1d3)]()+'\x22',{'detail':_0x169af3[_0x1ccfee(0x1d3)]()});else _0x371de[_0x1ccfee(0x3f9)](Object[_0x1ccfee(0x45f)]({},_0x2c8a73,{'value':_0x1ef5a4[_0x1ccfee(0x2c5)](readNativeMetric,_0x456611,_0xc2efaf)}));}else _0x1ef5a4['skZBE'](_0x54ce05,_0x456611[_0x1ccfee(0x1de)]&&_0x456611[_0x1ccfee(0x1de)][_0x1ccfee(0x465)]||[],_0x1ef5a4[_0x1ccfee(0x326)](_0x401976,0x1),_0x2c8a73);}}},_0x198887=_0x65cac4&&_0x65cac4[_0x2ad829(0x24b)]&&_0x65cac4[_0x2ad829(0x24b)][_0x2ad829(0x465)]||[];return _0x1ef5a4[_0x2ad829(0x265)](_0x54ce05,_0x198887,0x0,{}),sortRows(_0x371de,_0x167be1['sort']),_0x371de;}function getPath(_0x5c7cc2,_0x387271){const _0xdf4f36=_0x28ca6b,_0x2b4999={'VXNmM':function(_0x5488fd,_0x4799f4){return _0x5488fd||_0x4799f4;}};if(_0x2b4999[_0xdf4f36(0x396)](!_0x5c7cc2,!_0x387271))return undefined;if(Object[_0xdf4f36(0x389)][_0xdf4f36(0x3fb)][_0xdf4f36(0x283)](_0x5c7cc2,_0x387271))return _0x5c7cc2[_0x387271];return _0x387271['split']('.')[_0xdf4f36(0x309)]((_0x2639ee,_0x32b50b)=>_0x2639ee===null||_0x2639ee===undefined?undefined:_0x2639ee[_0x32b50b],_0x5c7cc2);}function toNumber(_0x53d910){const _0x233ed6=_0x28ca6b,_0x53e1db={'Lqjht':function(_0x4c4fc5,_0x2beb80){return _0x4c4fc5===_0x2beb80;},'MMfKA':function(_0x384f8a,_0x54d4f1){return _0x384f8a===_0x54d4f1;},'mAGgY':function(_0x235cdc,_0x1055e1){return _0x235cdc(_0x1055e1);}};if(_0x53e1db['Lqjht'](_0x53d910,null)||_0x53d910===undefined||_0x53e1db[_0x233ed6(0x2d2)](_0x53d910,''))return null;const _0x3c52ae=_0x53e1db[_0x233ed6(0x425)](Number,_0x53d910);return Number['isFinite'](_0x3c52ae)?_0x3c52ae:null;}function extractFromDoc(_0x3a0cb9,_0x284cd3){const _0x1eebed=_0x28ca6b,_0x3bb67b={'SvEih':function(_0x579747,_0x229750){return _0x579747!==_0x229750;},'mOfjd':'count','hODLR':function(_0xb3b020,_0x582695,_0x2675eb){return _0xb3b020(_0x582695,_0x2675eb);},'nnriD':'desc','jzqHP':function(_0x172dfc,_0x357617){return _0x172dfc===_0x357617;},'HRaHx':_0x1eebed(0x261),'ZNMHN':_0x1eebed(0x1e6),'tQFff':_0x1eebed(0x469),'FXGmk':function(_0x59ee92,_0x3907ab){return _0x59ee92!==_0x3907ab;},'ppSxf':_0x1eebed(0x40a),'OsWsL':function(_0x3e8277,_0x4be636){return _0x3e8277===_0x4be636;},'RObNs':_0x1eebed(0x31a)},_0x446b6b=_0x3bb67b[_0x1eebed(0x37f)](typeof(_0x3a0cb9&&_0x3a0cb9[_0x1eebed(0x28b)]),_0x3bb67b['HRaHx'])?_0x3a0cb9['message']:'',_0x4ce2a5={};for(const {regex:_0x258e15}of _0x284cd3){if(_0x3bb67b['jzqHP'](_0x3bb67b[_0x1eebed(0x343)],_0x3bb67b[_0x1eebed(0x3e0)]))_0x3bb67b[_0x1eebed(0x3c4)](_0x33feca[_0x1eebed(0x41b)],_0x3bb67b[_0x1eebed(0x358)])?(_0x1b59c1[_0x1eebed(0x300)]=_0x3bb67b[_0x1eebed(0x41d)](_0x2ebd5e,_0x2b8012,_0x3df7af[_0x1eebed(0x391)]),_0x3b1684[_0x1eebed(0x30f)][_0x1eebed(0x28f)]=_0x20a111):_0x4bd4ba[_0x1eebed(0x30f)][_0x1eebed(0x28f)]={'_count':_0x3bb67b[_0x1eebed(0x2d0)]};else{_0x258e15[_0x1eebed(0x228)]=0x0;const _0x3a5825=_0x258e15[_0x1eebed(0x43c)](_0x446b6b);if(!_0x3a5825)return{'ok':![],'extracted':_0x4ce2a5};if(_0x3a5825[_0x1eebed(0x24b)]){if(_0x3bb67b[_0x1eebed(0x31b)](_0x1eebed(0x42c),_0x3bb67b['ppSxf']))for(const [_0x2066bf,_0x144d33]of Object['entries'](_0x3a5825[_0x1eebed(0x24b)])){if(_0x3bb67b['OsWsL'](_0x3bb67b[_0x1eebed(0x2b9)],_0x3bb67b[_0x1eebed(0x2b9)])){if(_0x3bb67b['SvEih'](_0x144d33,undefined))_0x4ce2a5[_0x2066bf]=_0x144d33;}else{if(!_0x36373a[_0x1eebed(0x268)](_0x525988[0x1]))_0x190d06[_0x1eebed(0x3f9)](_0x4170c9[0x1]);}}else{const _0x6e4c7d=_0x9baf46[_0x686d00];return _0x6e4c7d?_0x6e4c7d[_0x1eebed(0x3b6)]||_0x6e4c7d[_0x1eebed(0x22e)]:_0x5c0512;}}}}return{'ok':!![],'extracted':_0x4ce2a5};}function percentile(_0x5daecd,_0x4d3c07){const _0xcb6d5d=_0x28ca6b,_0x3b12a0={'zbsED':function(_0x10e95a,_0x4cb0b9){return _0x10e95a===_0x4cb0b9;},'FEKYK':function(_0x57630e,_0x5537a2){return _0x57630e*_0x5537a2;},'sNeLm':function(_0x38e613,_0x1effaf){return _0x38e613/_0x1effaf;},'tyniH':function(_0x35d9a6,_0x17268e){return _0x35d9a6+_0x17268e;},'dyTqo':function(_0x1ba65d,_0x1a6fd6){return _0x1ba65d*_0x1a6fd6;},'OJJWe':function(_0x55582e,_0x24adeb){return _0x55582e-_0x24adeb;}};if(_0x3b12a0[_0xcb6d5d(0x2c1)](_0x5daecd[_0xcb6d5d(0x2a9)],0x0))return null;if(_0x5daecd[_0xcb6d5d(0x2a9)]===0x1)return _0x5daecd[0x0];const _0x2b474c=_0x3b12a0[_0xcb6d5d(0x242)](_0x3b12a0[_0xcb6d5d(0x347)](_0x4d3c07,0x64),_0x5daecd['length']-0x1),_0x1b9efc=Math['floor'](_0x2b474c),_0x2ea359=Math[_0xcb6d5d(0x1bf)](_0x2b474c);if(_0x3b12a0[_0xcb6d5d(0x2c1)](_0x1b9efc,_0x2ea359))return _0x5daecd[_0x1b9efc];return _0x3b12a0[_0xcb6d5d(0x32e)](_0x5daecd[_0x1b9efc],_0x3b12a0[_0xcb6d5d(0x3c1)](_0x5daecd[_0x2ea359]-_0x5daecd[_0x1b9efc],_0x3b12a0[_0xcb6d5d(0x382)](_0x2b474c,_0x1b9efc)));}function finalizeMetric(_0x3c3f14,_0x1300c7){const _0x5f1d2c=_0x28ca6b,_0x40cb35={'gIcnA':function(_0x598083,_0x4badef){return _0x598083===_0x4badef;},'HhLMU':function(_0x1cd619,_0x2f7084){return _0x1cd619===_0x2f7084;},'izCol':'sum','MZvSQ':function(_0xf4988b,_0x390fe8){return _0xf4988b===_0x390fe8;},'IfBAj':_0x5f1d2c(0x39a),'KbDfm':function(_0x25a738,_0x31379f){return _0x25a738/_0x31379f;},'qcumt':'min','anthk':_0x5f1d2c(0x255),'jAIVb':'p95','tNXCw':function(_0x17f385,_0x163137,_0x4cfab2){return _0x17f385(_0x163137,_0x4cfab2);},'JhCGM':_0x5f1d2c(0x468),'gdRqR':function(_0x44343d,_0x16362f,_0x37b5d1){return _0x44343d(_0x16362f,_0x37b5d1);}};if(_0x40cb35['gIcnA'](_0x1300c7[_0x5f1d2c(0x2a9)],0x0))return null;if(_0x40cb35['HhLMU'](_0x3c3f14,_0x40cb35[_0x5f1d2c(0x374)]))return _0x1300c7[_0x5f1d2c(0x309)]((_0xbdf967,_0x2b6a4d)=>_0xbdf967+_0x2b6a4d,0x0);if(_0x40cb35[_0x5f1d2c(0x2e8)](_0x3c3f14,_0x40cb35[_0x5f1d2c(0x24f)]))return _0x40cb35[_0x5f1d2c(0x284)](_0x1300c7[_0x5f1d2c(0x309)]((_0x410e4f,_0x4db6c3)=>_0x410e4f+_0x4db6c3,0x0),_0x1300c7['length']);if(_0x3c3f14===_0x40cb35[_0x5f1d2c(0x23f)])return Math[_0x5f1d2c(0x256)](..._0x1300c7);if(_0x40cb35[_0x5f1d2c(0x2e8)](_0x3c3f14,_0x40cb35['anthk']))return Math['max'](..._0x1300c7);const _0x51b3d9=_0x1300c7[_0x5f1d2c(0x276)]()[_0x5f1d2c(0x3a5)]((_0x29aec2,_0x48de4b)=>_0x29aec2-_0x48de4b);if(_0x40cb35[_0x5f1d2c(0x2a4)](_0x3c3f14,_0x40cb35[_0x5f1d2c(0x231)]))return _0x40cb35[_0x5f1d2c(0x457)](percentile,_0x51b3d9,0x5f);if(_0x40cb35[_0x5f1d2c(0x2a4)](_0x3c3f14,_0x40cb35['JhCGM']))return _0x40cb35[_0x5f1d2c(0x296)](percentile,_0x51b3d9,0x63);return null;}function metricLabel(_0x7e0627){const _0x49d9ca=_0x28ca6b,_0x21b522={'YhKSK':function(_0x2defd7,_0x246991){return _0x2defd7===_0x246991;},'YOGEb':'count'};return _0x21b522['YhKSK'](_0x7e0627[_0x49d9ca(0x41b)],_0x21b522[_0x49d9ca(0x39b)])?_0x21b522[_0x49d9ca(0x39b)]:_0x7e0627[_0x49d9ca(0x41b)]+'('+_0x7e0627['field']+')';}function aggregateServerSide(_0x32070c,_0x9fd330){const _0x12a2e1=_0x28ca6b,_0x3eded5={'gNTji':function(_0x1fd557,_0x18e6cd){return _0x1fd557===_0x18e6cd;},'zKAbs':function(_0x3a4e0d,_0x3c1f1f){return _0x3a4e0d+_0x3c1f1f;},'LrIzd':function(_0x5f343b,_0xbc5cc8,_0x3142d9){return _0x5f343b(_0xbc5cc8,_0x3142d9);},'HJFOx':function(_0xe70d0f,_0x294d93,_0x5aad3d){return _0xe70d0f(_0x294d93,_0x5aad3d);},'GoIVq':function(_0xa4c208,_0x469082){return _0xa4c208===_0x469082;},'urxjD':function(_0x14de26,_0x2db656){return _0x14de26!==_0x2db656;},'KmkTh':function(_0x363a7a,_0x5d6f1c){return _0x363a7a(_0x5d6f1c);},'CuQLz':function(_0x3d47d8,_0x373fd4){return _0x3d47d8!==_0x373fd4;},'rptty':_0x12a2e1(0x215),'uQsjq':_0x12a2e1(0x1df),'WNcIK':function(_0x2c0449,_0x41adc0){return _0x2c0449===_0x41adc0;},'YeeYC':_0x12a2e1(0x399)},{groupby:_0x875289,calculate:_0x3668f5,regexes:_0x3e4be4,extracted:_0x3be603}=_0x9fd330,_0x225090=new Map();let _0x500ac8=0x0;for(const _0xd1ce97 of _0x32070c){const _0x5f1dcc=_0xd1ce97&&_0xd1ce97['_source']||{},{ok:_0x4f5deb,extracted:_0x19526f}=_0x3eded5[_0x12a2e1(0x1da)](extractFromDoc,_0x5f1dcc,_0x3e4be4);if(!_0x4f5deb)continue;_0x500ac8++;const _0x162844=[];let _0x18d450=![];for(const _0x4854cc of _0x875289){const _0x38ab9a=_0x3be603[_0x12a2e1(0x33e)](_0x4854cc)?_0x19526f[_0x4854cc]:_0x3eded5['HJFOx'](getPath,_0x5f1dcc,_0x4854cc);if(_0x3eded5['gNTji'](_0x38ab9a,undefined)||_0x38ab9a===null||_0x3eded5[_0x12a2e1(0x303)](_0x38ab9a,'')){_0x18d450=!![];break;}_0x162844[_0x12a2e1(0x3f9)](String(_0x38ab9a));}if(_0x18d450)continue;const _0x58aea1=_0x162844[_0x12a2e1(0x381)]('\x00');let _0x2543d8=_0x225090[_0x12a2e1(0x2d4)](_0x58aea1);if(!_0x2543d8){const _0x5e22c7={};_0x875289['forEach']((_0x210784,_0x34c606)=>{_0x5e22c7[_0x210784]=_0x162844[_0x34c606];}),_0x2543d8={'dims':_0x5e22c7,'count':0x0,'values':[]},_0x225090['set'](_0x58aea1,_0x2543d8);}_0x2543d8[_0x12a2e1(0x399)]++;if(_0x3eded5['urxjD'](_0x3668f5[_0x12a2e1(0x41b)],_0x12a2e1(0x399))){const _0x3dd37a=_0x3be603['has'](_0x3668f5[_0x12a2e1(0x26b)])?_0x19526f[_0x3668f5[_0x12a2e1(0x26b)]]:getPath(_0x5f1dcc,_0x3668f5[_0x12a2e1(0x26b)]),_0x5681bf=_0x3eded5[_0x12a2e1(0x397)](toNumber,_0x3dd37a);if(_0x3eded5[_0x12a2e1(0x22c)](_0x5681bf,null))_0x2543d8[_0x12a2e1(0x3da)][_0x12a2e1(0x3f9)](_0x5681bf);}}const _0x2a72f5=[];for(const _0x4e42b3 of _0x225090['values']()){if(_0x3eded5[_0x12a2e1(0x3be)]===_0x3eded5[_0x12a2e1(0x446)])_0x3eded5[_0x12a2e1(0x1c4)](_0x175361[_0x37d2d9],'\x5c')?(_0xf41a2d+=_0x3eded5[_0x12a2e1(0x239)]('\x5c',_0xfd152a[_0x42d87e+0x1]||''),_0x300a22+=0x2):(_0x25ca22+=_0x246d60[_0x34a3df],_0x358902++);else{const _0x5a3862=_0x3eded5[_0x12a2e1(0x1e3)](_0x3668f5[_0x12a2e1(0x41b)],_0x3eded5[_0x12a2e1(0x26c)])?_0x4e42b3[_0x12a2e1(0x399)]:_0x3eded5['LrIzd'](finalizeMetric,_0x3668f5['type'],_0x4e42b3[_0x12a2e1(0x3da)]);_0x2a72f5['push'](Object['assign']({},_0x4e42b3[_0x12a2e1(0x332)],{'value':_0x5a3862}));}}return sortRows(_0x2a72f5,_0x9fd330['sort']),{'rows':_0x2a72f5,'matched':_0x500ac8};}function sortRows(_0x4e02c0,_0x1d12b9){const _0x27220c=_0x28ca6b,_0x54021f={'iBPnz':function(_0x22eaf5,_0x2b8bff){return _0x22eaf5===_0x2b8bff;},'mhqqE':function(_0x1c0e4f,_0x5928ff){return _0x1c0e4f===_0x5928ff;},'IMHGS':function(_0x2d6220,_0x29e44b){return _0x2d6220<_0x29e44b;}},_0xd88931=_0x1d12b9===_0x27220c(0x390)?0x1:-0x1;_0x4e02c0[_0x27220c(0x3a5)]((_0x37478f,_0x5ac243)=>{const _0x189a33=_0x27220c,_0x36a9d1=_0x54021f[_0x189a33(0x2ab)](_0x37478f[_0x189a33(0x26f)],null)||_0x54021f[_0x189a33(0x2da)](_0x37478f['value'],undefined)?-Infinity:_0x37478f['value'],_0x39b5bf=_0x5ac243['value']===null||_0x5ac243['value']===undefined?-Infinity:_0x5ac243[_0x189a33(0x26f)];if(_0x54021f[_0x189a33(0x2da)](_0x36a9d1,_0x39b5bf))return 0x0;return _0x54021f[_0x189a33(0x393)](_0x36a9d1,_0x39b5bf)?-_0xd88931:_0xd88931;});}module[_0x28ca6b(0x2bd)]={'MAX_QUERY_LEN':MAX_QUERY_LEN,'MAX_REGEXES':MAX_REGEXES,'MAX_SCAN_DOCS':MAX_SCAN_DOCS,'TERMS_CAP':TERMS_CAP,'DEFAULT_HIT_SIZE':DEFAULT_HIT_SIZE,'MAX_HIT_SIZE':MAX_HIT_SIZE,'TIME_FIELD':TIME_FIELD,'LOG_FIELD_ALLOWLIST':LOG_FIELD_ALLOWLIST,'LOG_NUMERIC_FIELDS':LOG_NUMERIC_FIELDS,'METRIC_FUNCS':METRIC_FUNCS,'DslError':DslError,'parseQuery':parseQuery,'parseCalculate':parseCalculate,'normalizeRegexSource':normalizeRegexSource,'buildOpenSearchQuery':buildOpenSearchQuery,'compileWhere':compileWhere,'timeFieldFor':timeFieldFor,'aggPathFor':aggPathFor,'extractContains':extractContains,'compileAstFor':compileAstFor,'REQUESTS_HITS_SOURCE':REQUESTS_HITS_SOURCE,'clauseToOpenSearch':clauseToOpenSearch,'sourceFieldsFor':sourceFieldsFor,'metricLabel':metricLabel,'buildTermsAgg':buildTermsAgg,'parseTermsAgg':parseTermsAgg,'metricSubAgg':metricSubAgg,'readNativeMetric':readNativeMetric,'extractFromDoc':extractFromDoc,'aggregateServerSide':aggregateServerSide,'sortRows':sortRows,'finalizeMetric':finalizeMetric,'percentile':percentile,'getPath':getPath};
1
+ 'use strict';const _0x4e3d16=_0x2008;(function(_0x307e3a,_0x471aee){const _0x1b83f6=_0x2008,_0x4e2fac=_0x307e3a();while(!![]){try{const _0x580bad=-parseInt(_0x1b83f6(0x2ce))/0x1*(-parseInt(_0x1b83f6(0x2a8))/0x2)+parseInt(_0x1b83f6(0x197))/0x3*(parseInt(_0x1b83f6(0x2ca))/0x4)+parseInt(_0x1b83f6(0xf2))/0x5*(parseInt(_0x1b83f6(0x1d7))/0x6)+parseInt(_0x1b83f6(0x3a6))/0x7*(parseInt(_0x1b83f6(0x1de))/0x8)+-parseInt(_0x1b83f6(0x38b))/0x9+parseInt(_0x1b83f6(0x304))/0xa+parseInt(_0x1b83f6(0x290))/0xb*(-parseInt(_0x1b83f6(0x3aa))/0xc);if(_0x580bad===_0x471aee)break;else _0x4e2fac['push'](_0x4e2fac['shift']());}catch(_0xffcafd){_0x4e2fac['push'](_0x4e2fac['shift']());}}}(_0x54d2,0xd366a));const MAX_QUERY_LEN=0xfa0,MAX_REGEXES=0x8,MAX_REGEX_LEN=0x3e8,MAX_SCAN_DOCS=0x1388,TERMS_CAP=0x32,DEFAULT_HIT_SIZE=0x32,MAX_HIT_SIZE=0xc8,TIME_FIELD='timestamp',LOG_FIELD_ALLOWLIST=new Set([_0x4e3d16(0x13d),_0x4e3d16(0x215),'gatewayId',_0x4e3d16(0x343),'origin',_0x4e3d16(0x1f8),_0x4e3d16(0xf5),_0x4e3d16(0x104),_0x4e3d16(0x25c),'spanId',_0x4e3d16(0x35f),_0x4e3d16(0x10f),_0x4e3d16(0x1b9),_0x4e3d16(0x378),_0x4e3d16(0x369),_0x4e3d16(0x2d0),_0x4e3d16(0x23f),_0x4e3d16(0x357),_0x4e3d16(0x18a),_0x4e3d16(0x1e2),_0x4e3d16(0x1d0),_0x4e3d16(0xdf),_0x4e3d16(0x243),'method',_0x4e3d16(0x252),_0x4e3d16(0x2aa),_0x4e3d16(0x37c),_0x4e3d16(0x2f8),'hostname',_0x4e3d16(0x1ee),_0x4e3d16(0x1d5),'application',_0x4e3d16(0x3bd),_0x4e3d16(0x125),_0x4e3d16(0x194),_0x4e3d16(0xd8),'latencyMs',_0x4e3d16(0x30e),'bytes',_0x4e3d16(0x1d2),_0x4e3d16(0x136)]),LOG_NUMERIC_FIELDS=new Set([_0x4e3d16(0x125),_0x4e3d16(0x194),_0x4e3d16(0xd8),'latencyMs','elapsedMs',_0x4e3d16(0x34a),_0x4e3d16(0x1d2),_0x4e3d16(0x136),'statusCode',_0x4e3d16(0xdf)]),KV_PATH_RE=/^kv\.[A-Za-z0-9_][A-Za-z0-9_.-]{0,127}$/,KVN_FIELDS=new Set([_0x4e3d16(0x125),_0x4e3d16(0x194),'elapsedMs',_0x4e3d16(0x1c5),'responseTime',_0x4e3d16(0x1f2),_0x4e3d16(0x1d0),_0x4e3d16(0x1e2),'bytes',_0x4e3d16(0x1d2)]);function isKvPath(_0x165596){const _0x1ffe07=_0x4e3d16;return KV_PATH_RE[_0x1ffe07(0x253)](_0x165596);}function isKvnPath(_0x5063b4){const _0x16daf1=_0x4e3d16,_0xa8ab92={'sRkrj':_0x16daf1(0x322)};return _0x5063b4['startsWith'](_0xa8ab92[_0x16daf1(0x3c9)])&&KVN_FIELDS[_0x16daf1(0x296)](_0x5063b4[_0x16daf1(0x2ef)](0x4));}const BODY_PATH_RE=/^body\.[A-Za-z0-9_][A-Za-z0-9_.-]{0,127}$/,RESPONSE_PATH_RE=/^response\.[A-Za-z0-9_][A-Za-z0-9_.-]{0,127}$/;function isBodyPath(_0x430472){const _0x4380bd=_0x4e3d16;return BODY_PATH_RE[_0x4380bd(0x253)](_0x430472);}function isResponsePath(_0x474d79){const _0x28bd22=_0x4e3d16;return RESPONSE_PATH_RE[_0x28bd22(0x253)](_0x474d79);}function isPayloadPath(_0x4e9b04){const _0x394f7e=_0x4e3d16,_0x2471c0={'DKgDv':function(_0x199c48,_0x441987){return _0x199c48(_0x441987);},'VIGbM':function(_0x24a7e7,_0x79c76c){return _0x24a7e7(_0x79c76c);}};return _0x2471c0['DKgDv'](isBodyPath,_0x4e9b04)||_0x2471c0[_0x394f7e(0xfc)](isResponsePath,_0x4e9b04);}const METRIC_FUNCS=new Set([_0x4e3d16(0x31c),_0x4e3d16(0x181),'p99',_0x4e3d16(0x2be),'max',_0x4e3d16(0x16f)]);class DslError extends Error{constructor(_0x3d7000,_0x182d95,_0x417d27={}){const _0x4f2b9a=_0x4e3d16,_0x7327da={'WVMOT':_0x4f2b9a(0x3a7)};super(_0x182d95),this['name']=_0x7327da[_0x4f2b9a(0x279)],this[_0x4f2b9a(0x1a7)]=_0x3d7000,Object['assign'](this,_0x417d27);}}function matchingParen(_0x56e67d,_0x222f72){const _0x19bf8d=_0x4e3d16,_0x42ec50={'jtBNJ':function(_0x124a94,_0x2f305f){return _0x124a94(_0x2f305f);},'iwDic':_0x19bf8d(0xd2),'euiDU':function(_0x205b86,_0x3b1cee){return _0x205b86(_0x3b1cee);},'BvEbF':_0x19bf8d(0x3a3),'LNAhY':_0x19bf8d(0x23b),'uuzaW':'flowId.keyword','GsDGZ':'service.keyword','HDlyz':_0x19bf8d(0x2e2),'NNTXa':_0x19bf8d(0x1db),'anZQT':function(_0x1e6301,_0x3ca0f2){return _0x1e6301<_0x3ca0f2;},'siTvc':function(_0x4ddbf,_0x248501){return _0x4ddbf===_0x248501;},'fLUlk':function(_0x6c8731,_0x119e8c){return _0x6c8731<_0x119e8c;},'Rmlrf':function(_0x1b029e,_0x77b120){return _0x1b029e!==_0x77b120;},'VDrGl':function(_0x50e620,_0x399ec9){return _0x50e620===_0x399ec9;},'cpdrd':_0x19bf8d(0x348),'fHDQZ':_0x19bf8d(0x143),'IthJE':function(_0x1a4114,_0xa2b30a){return _0x1a4114!==_0xa2b30a;},'dbPWA':'AeXlS','LsHZl':_0x19bf8d(0x2bd),'UBzKy':function(_0x393a2c,_0x1e094e){return _0x393a2c===_0x1e094e;},'bjWdM':function(_0x176309,_0x233733){return _0x176309===_0x233733;},'pmOkG':_0x19bf8d(0x213),'ExNsS':function(_0x46fc1a,_0x24c57a){return _0x46fc1a===_0x24c57a;}};let _0x102959=0x0;for(let _0x22a88a=_0x222f72;_0x42ec50[_0x19bf8d(0x1b7)](_0x22a88a,_0x56e67d[_0x19bf8d(0x25f)]);_0x22a88a++){const _0x503c6c=_0x56e67d[_0x22a88a];if(_0x42ec50[_0x19bf8d(0x1f0)](_0x503c6c,'\x22')||_0x42ec50[_0x19bf8d(0x1f0)](_0x503c6c,'\x27')){const _0x4b995d=_0x503c6c;_0x22a88a++;while(_0x42ec50['fLUlk'](_0x22a88a,_0x56e67d[_0x19bf8d(0x25f)])&&_0x42ec50[_0x19bf8d(0xd3)](_0x56e67d[_0x22a88a],_0x4b995d)){if(_0x56e67d[_0x22a88a]==='\x5c')_0x22a88a++;_0x22a88a++;}continue;}if(_0x42ec50[_0x19bf8d(0x36c)](_0x503c6c,'/')){if(_0x42ec50[_0x19bf8d(0x36c)](_0x42ec50[_0x19bf8d(0x288)],_0x42ec50[_0x19bf8d(0x127)])){_0x457771[_0x19bf8d(0x208)]=0x0;const _0x5eaf5e=_0x41f728[_0x19bf8d(0x18d)](_0x2fd7fa);if(!_0x5eaf5e)return{'ok':![],'extracted':_0x54b5bd};if(_0x5eaf5e[_0x19bf8d(0x233)])for(const [_0x111a80,_0x1e2c57]of _0x603929['entries'](_0x5eaf5e[_0x19bf8d(0x233)])){if(_0x1e2c57!==_0x4e9116)_0x5b0575[_0x111a80]=_0x1e2c57;}}else{_0x22a88a++;while(_0x42ec50[_0x19bf8d(0x1b7)](_0x22a88a,_0x56e67d[_0x19bf8d(0x25f)])&&_0x42ec50[_0x19bf8d(0xd3)](_0x56e67d[_0x22a88a],'/')){if(_0x42ec50['IthJE'](_0x42ec50[_0x19bf8d(0x25b)],_0x42ec50[_0x19bf8d(0x137)])){if(_0x42ec50[_0x19bf8d(0x1f0)](_0x56e67d[_0x22a88a],'\x5c'))_0x22a88a++;_0x22a88a++;}else{const _0x57d488=_0x491023=>({'wildcard':{[_0x491023]:{'value':'*'+_0x3df109+'*','case_insensitive':!![]}}});return{'bool':{'should':[_0x1cc9ba?{'match_phrase':{'name':_0x1f027c}}:{'match':{'name':{'query':_0xbc736c,'boost':0x3}}},_0x42ec50[_0x19bf8d(0x154)](_0x57d488,_0x42ec50[_0x19bf8d(0x31f)]),_0x42ec50['euiDU'](_0x57d488,_0x19bf8d(0x11d)),_0x42ec50['euiDU'](_0x57d488,_0x42ec50[_0x19bf8d(0x172)]),_0x42ec50['euiDU'](_0x57d488,_0x42ec50[_0x19bf8d(0x287)]),_0x42ec50[_0x19bf8d(0x135)](_0x57d488,'spanId.keyword'),_0x42ec50[_0x19bf8d(0x154)](_0x57d488,_0x42ec50[_0x19bf8d(0x37f)]),_0x42ec50[_0x19bf8d(0x135)](_0x57d488,_0x42ec50[_0x19bf8d(0x15d)]),_0x57d488(_0x42ec50[_0x19bf8d(0x1ea)]),_0x42ec50[_0x19bf8d(0x154)](_0x57d488,_0x42ec50[_0x19bf8d(0x346)])],'minimum_should_match':0x1}};}}continue;}}if(_0x42ec50[_0x19bf8d(0x1be)](_0x503c6c,'('))_0x102959++;else{if(_0x42ec50[_0x19bf8d(0x1c1)](_0x503c6c,')')){if(_0x42ec50['bjWdM'](_0x19bf8d(0x213),_0x42ec50[_0x19bf8d(0x25e)])){_0x102959--;if(_0x42ec50['ExNsS'](_0x102959,0x0))return _0x22a88a;}else{if(!_0x1426cd||!_0xc441a1)return _0x4a5749;if(_0x31c61f[_0x19bf8d(0x36b)][_0x19bf8d(0x204)][_0x19bf8d(0x3d3)](_0x2d32d7,_0xbbeb66))return _0x252226[_0xe70a95];return _0x237731['split']('.')['reduce']((_0x8d753c,_0x37fc77)=>_0x8d753c===null||_0x8d753c===_0x303ed6?_0x2a37e4:_0x8d753c[_0x37fc77],_0x343af8);}}}}return-0x1;}function findSection(_0x3924e4,_0x10347f){const _0x223305=_0x4e3d16,_0x105c1c={'HMiyq':function(_0x1f915d,_0x3384fb){return _0x1f915d<_0x3384fb;},'jcsVp':_0x223305(0x2c9),'qwJAB':function(_0x286dc2,_0xbefbd7){return _0x286dc2+_0xbefbd7;}},_0x9c9481=new RegExp(_0x223305(0x314)+_0x10347f+_0x223305(0x394),'i'),_0x47f8e7=_0x9c9481[_0x223305(0x18d)](_0x3924e4);if(!_0x47f8e7)return null;const _0x4d187b=_0x3924e4[_0x223305(0x2d3)]('(',_0x47f8e7['index']+_0x47f8e7[0x0]['length']-0x1),_0x1e9b9f=matchingParen(_0x3924e4,_0x4d187b);if(_0x105c1c[_0x223305(0x17b)](_0x1e9b9f,0x0))throw new DslError(_0x105c1c[_0x223305(0x29c)],_0x223305(0x11f)+_0x10347f+'(...)',{'detail':_0x10347f+'(...)'});return{'content':_0x3924e4[_0x223305(0x2ef)](_0x105c1c[_0x223305(0x3c4)](_0x4d187b,0x1),_0x1e9b9f),'start':_0x47f8e7[_0x223305(0x335)]+(_0x47f8e7[0x1]?_0x47f8e7[0x1][_0x223305(0x25f)]:0x0),'end':_0x105c1c[_0x223305(0x3c4)](_0x1e9b9f,0x1)};}function tokenizeWhere(_0x589cf4){const _0x513157=_0x4e3d16,_0x5d047b={'Ajqxh':function(_0x1a3841,_0x12d5b2){return _0x1a3841===_0x12d5b2;},'uuEDF':_0x513157(0x38c),'VqUYf':function(_0x208437,_0x3b97d5){return _0x208437===_0x3b97d5;},'iyNbt':_0x513157(0x220),'mAikY':_0x513157(0x1a8),'EVDEW':_0x513157(0xef),'FQDBv':function(_0x5835c7,_0x53f1bf){return _0x5835c7===_0x53f1bf;},'JJutK':function(_0x5a09a8,_0x58bc28){return _0x5a09a8+_0x58bc28;},'sphoh':function(_0x49cea5,_0x3ccdd4,_0x44004d){return _0x49cea5(_0x3ccdd4,_0x44004d);},'gIxYV':function(_0x408ef6,_0x40b38f,_0x3b2eb4,_0x5a7abb){return _0x408ef6(_0x40b38f,_0x3b2eb4,_0x5a7abb);},'LbQEq':function(_0x250a7f,_0x15a81f){return _0x250a7f===_0x15a81f;},'mAicd':function(_0x572645,_0x4d9b71){return _0x572645<_0x4d9b71;},'EHuBz':function(_0x71bf0e,_0x2e2c88){return _0x71bf0e===_0x2e2c88;},'aejqY':_0x513157(0x3a9),'rGfCc':function(_0x29d09b,_0x25254a){return _0x29d09b!==_0x25254a;},'SJsbD':_0x513157(0x1c0),'GfGqq':function(_0x17b46a,_0x1a55f6){return _0x17b46a===_0x1a55f6;},'VtWSL':function(_0x19cfbd,_0x2700ab){return _0x19cfbd===_0x2700ab;},'MwXLN':function(_0x904ecd,_0x479476){return _0x904ecd!==_0x479476;},'cwXfj':_0x513157(0x188),'bkiAY':function(_0x596383,_0x2af762){return _0x596383===_0x2af762;},'gIVTP':function(_0xa1f43f,_0x9a1703){return _0xa1f43f+_0x9a1703;},'qFuoI':function(_0x2fb8a7,_0x562b9f){return _0x2fb8a7<_0x562b9f;},'eDTRX':function(_0xca274d,_0x31c8e3){return _0xca274d===_0x31c8e3;},'fycXQ':'BkNKF','NUttS':'vUSGM','KxUNi':_0x513157(0x101),'BvvPg':_0x513157(0x2c9),'DIcka':'aspas\x20não\x20fechadas\x20no\x20where','pwQNo':function(_0x4c0a4a,_0x44f55e){return _0x4c0a4a+_0x44f55e;},'CZtHv':function(_0x53fad1,_0x15755c){return _0x53fad1===_0x15755c;},'mXqav':function(_0x2f6787,_0x4d9280){return _0x2f6787<_0x4d9280;},'AgGAb':_0x513157(0x38a),'RURmw':function(_0x2657f5,_0x4fddff){return _0x2657f5+_0x4fddff;},'MtYJx':function(_0x4f24cf,_0x2faa6a){return _0x4f24cf>=_0x2faa6a;},'bdokn':_0x513157(0xda),'zXSQK':function(_0x7a7a47,_0x21f0c4){return _0x7a7a47+_0x21f0c4;},'hLWZH':function(_0x5854b6,_0xafbe94){return _0x5854b6<_0xafbe94;},'moIGO':function(_0x3d4f55,_0x349c98){return _0x3d4f55===_0x349c98;},'goNif':_0x513157(0x338),'shAee':_0x513157(0x257)},_0x44ad87=[];let _0x540e82=0x0;const _0x1c7ed5=_0x589cf4[_0x513157(0x25f)];while(_0x5d047b[_0x513157(0x334)](_0x540e82,_0x1c7ed5)){if(_0x5d047b['EHuBz'](_0x513157(0x160),_0x5d047b[_0x513157(0xf6)])){const _0x24cf4c=_0x5d047b[_0x513157(0x3c1)](_0x539039[_0x513157(0x2f0)],_0x5d047b[_0x513157(0x165)])?_0x393620[_0x513157(0x364)][_0x513157(0x37b)](_0x52341a=>_0x22a371(_0x14ac81[_0x513157(0x298)],_0x52341a)):_0x4500b9['values'][_0x513157(0x37b)](_0x24fb70);return{'terms':{[_0x17532c[_0x513157(0x2aa)]]:_0x24cf4c}};}else{const _0x5d5f7e=_0x589cf4[_0x540e82];if(/\s/[_0x513157(0x253)](_0x5d5f7e)){if(_0x5d047b[_0x513157(0x186)]('NQnvb',_0x5d047b['SJsbD']))return _0x5d047b['VqUYf'](_0x136c7b[_0x513157(0x2f0)],_0x5d047b['iyNbt'])?_0x5d047b[_0x513157(0x229)]:_0x429866[_0x513157(0x2f0)]+'('+_0x142d6f[_0x513157(0x298)]+')';else{_0x540e82++;continue;}}if(_0x5d047b['GfGqq'](_0x5d5f7e,'(')||_0x5d047b['VtWSL'](_0x5d5f7e,')')||_0x5d5f7e===','){if(_0x5d047b[_0x513157(0x162)](_0x5d047b[_0x513157(0x211)],_0x513157(0x188))){if(!_0x9fbb73)return null;if(_0x3526c0[_0x513157(0x1a7)]===_0x5d047b[_0x513157(0x352)])return _0x2ea97e[_0x513157(0x370)](_0x7e12d2[_0x513157(0x3c7)]),null;if(_0x883e81['op']===_0x5d047b[_0x513157(0x27c)]){const _0x5d8ef7=_0xae589d[_0x513157(0x2e5)][_0x513157(0x37b)](_0x4549e0)[_0x513157(0x236)](_0x546c9e);if(_0x5d047b[_0x513157(0x3c1)](_0x5d8ef7[_0x513157(0x25f)],0x0))return null;return _0x5d8ef7[_0x513157(0x25f)]===0x1?_0x5d8ef7[0x0]:{'op':_0x5d047b[_0x513157(0x27c)],'children':_0x5d8ef7};}return _0xb553fa;}else{_0x44ad87['push']({'type':_0x5d5f7e}),_0x540e82++;continue;}}if(_0x5d047b[_0x513157(0x12b)](_0x5d5f7e,'\x22')||_0x5d5f7e==='\x27'){const _0x1f64ba=_0x5d5f7e;let _0x44dc2e=_0x5d047b[_0x513157(0x320)](_0x540e82,0x1),_0x1ccde0='';while(_0x5d047b['qFuoI'](_0x44dc2e,_0x1c7ed5)&&_0x589cf4[_0x44dc2e]!==_0x1f64ba){if(_0x5d047b[_0x513157(0x3c3)](_0x589cf4[_0x44dc2e],'\x5c'))_0x5d047b[_0x513157(0x112)]!==_0x5d047b[_0x513157(0x11b)]?(_0x1ccde0+=_0x589cf4[_0x5d047b[_0x513157(0x320)](_0x44dc2e,0x1)]||'',_0x44dc2e+=0x2):_0x5d047b['FQDBv'](_0x5e69c1[_0x1f5d22],'\x5c')?(_0x3bb01a+=_0x3fb891[_0x5d047b[_0x513157(0x20e)](_0x8a6891,0x1)]||'',_0x1571ff+=0x2):(_0x348473+=_0xfe1ac6[_0x1fef6d],_0x3e5709++);else{if(_0x5d047b['Ajqxh'](_0x5d047b[_0x513157(0x1ff)],_0x5d047b[_0x513157(0x1ff)]))_0x1ccde0+=_0x589cf4[_0x44dc2e],_0x44dc2e++;else{const _0x3a9986=_0x5e7de1['assign']({},_0x12fa2d,{[_0x4222f5[_0x20b002]]:_0x3f501f[_0x513157(0x2e9)]});_0x5d047b[_0x513157(0x14b)](_0x42f67f,_0x2a0764['length']-0x1)?_0xd1c261[_0x513157(0x370)](_0x3dccb4[_0x513157(0x330)]({},_0x3a9986,{'value':_0x5d047b[_0x513157(0x144)](_0x49b801,_0x168e22,_0x210e02)})):_0x5d047b[_0x513157(0x131)](_0x6d784d,_0x42c94f['sub']&&_0x657539[_0x513157(0x362)][_0x513157(0x235)]||[],_0x5d047b[_0x513157(0x20e)](_0x21969f,0x1),_0x3a9986);}}}if(_0x44dc2e>=_0x1c7ed5)throw new DslError(_0x5d047b[_0x513157(0xf3)],_0x5d047b['DIcka'],{'detail':_0x589cf4});_0x44ad87[_0x513157(0x370)]({'type':'phrase','value':_0x1ccde0}),_0x540e82=_0x5d047b['pwQNo'](_0x44dc2e,0x1);continue;}if(_0x5d047b[_0x513157(0x313)](_0x5d5f7e,'/')){let _0x53874c=_0x5d047b[_0x513157(0x2b3)](_0x540e82,0x1),_0x12f659='';while(_0x5d047b[_0x513157(0x184)](_0x53874c,_0x1c7ed5)&&_0x5d047b[_0x513157(0x162)](_0x589cf4[_0x53874c],'/')){if(_0x5d047b[_0x513157(0x332)](_0x589cf4[_0x53874c],'\x5c')){if(_0x5d047b[_0x513157(0x162)](_0x5d047b[_0x513157(0x331)],_0x5d047b['AgGAb']))throw new _0x366f04(_0x513157(0x2c9),_0x513157(0x24c)+_0x4af37b+_0x513157(0x323));else _0x12f659+=_0x5d047b['RURmw']('\x5c',_0x589cf4[_0x5d047b[_0x513157(0x1fb)](_0x53874c,0x1)]||''),_0x53874c+=0x2;}else _0x12f659+=_0x589cf4[_0x53874c],_0x53874c++;}if(_0x5d047b[_0x513157(0x2ae)](_0x53874c,_0x1c7ed5))throw new DslError(_0x5d047b['BvvPg'],_0x5d047b[_0x513157(0x289)],{'detail':_0x589cf4});let _0x879fc3=_0x5d047b[_0x513157(0x13c)](_0x53874c,0x1),_0x795de6='';while(_0x5d047b[_0x513157(0x2fd)](_0x879fc3,_0x1c7ed5)&&/[a-z]/i[_0x513157(0x253)](_0x589cf4[_0x879fc3])){_0x795de6+=_0x589cf4[_0x879fc3],_0x879fc3++;}_0x44ad87[_0x513157(0x370)]({'type':_0x513157(0x315),'source':_0x12f659,'flags':_0x795de6}),_0x540e82=_0x879fc3;continue;}let _0x242d2c=_0x540e82,_0x194830='';while(_0x5d047b[_0x513157(0x21c)](_0x242d2c,_0x1c7ed5)&&!/[\s(),"'/]/[_0x513157(0x253)](_0x589cf4[_0x242d2c])){if(_0x5d047b[_0x513157(0x20d)](_0x5d047b[_0x513157(0x274)],_0x513157(0x1a1))){const _0x1283cf=_0x3ccd6e['children']['map'](_0xc1641c)[_0x513157(0x236)](_0x436918);if(_0x5d047b['Ajqxh'](_0x1283cf[_0x513157(0x25f)],0x0))return null;return _0x5d047b[_0x513157(0x148)](_0x1283cf[_0x513157(0x25f)],0x1)?_0x1283cf[0x0]:{'op':_0x5d047b['EVDEW'],'children':_0x1283cf};}else _0x194830+=_0x589cf4[_0x242d2c],_0x242d2c++;}_0x44ad87[_0x513157(0x370)]({'type':_0x5d047b[_0x513157(0x316)],'value':_0x194830}),_0x540e82=_0x242d2c;}}return _0x44ad87;}function toClause(_0xd6b224){const _0x1d371e=_0x4e3d16,_0x3621d0={'PTQbX':function(_0x7cbb52,_0x47f11e){return _0x7cbb52===_0x47f11e;},'dcpwY':_0x1d371e(0x383),'HeAQi':_0x1d371e(0x315),'UnsWJ':function(_0x26063b,_0x2e2074){return _0x26063b>_0x2e2074;},'lmhRD':function(_0x3be380,_0x5014a4){return _0x3be380+_0x5014a4;},'aMxkc':function(_0x778562,_0x1da74e){return _0x778562>=_0x1da74e;},'pvqyQ':function(_0x3b0aa0,_0x1fbb70){return _0x3b0aa0===_0x1fbb70;},'FtxiQ':_0x1d371e(0x298),'OOPVI':_0x1d371e(0x2db)};if(_0x3621d0[_0x1d371e(0x2de)](_0xd6b224[_0x1d371e(0x2f0)],_0x3621d0['dcpwY']))return{'kind':_0x3621d0[_0x1d371e(0x29b)],'value':_0xd6b224[_0x1d371e(0xe8)]};if(_0x3621d0[_0x1d371e(0x2de)](_0xd6b224[_0x1d371e(0x2f0)],_0x3621d0['HeAQi']))return{'kind':_0x3621d0[_0x1d371e(0x329)],'source':_0xd6b224[_0x1d371e(0x3d4)],'flags':_0xd6b224[_0x1d371e(0x227)]};const _0x347b9f=_0xd6b224[_0x1d371e(0xe8)][_0x1d371e(0x2d3)](':');if(_0x3621d0[_0x1d371e(0x187)](_0x347b9f,0x0)){const _0x30bc2b=_0xd6b224[_0x1d371e(0xe8)][_0x1d371e(0x2ef)](0x0,_0x347b9f);let _0x570314=_0xd6b224[_0x1d371e(0xe8)]['slice'](_0x3621d0[_0x1d371e(0x225)](_0x347b9f,0x1));return _0x3621d0['aMxkc'](_0x570314['length'],0x2)&&(_0x570314[0x0]==='\x22'&&_0x570314[_0x1d371e(0x167)]('\x22')||_0x3621d0['pvqyQ'](_0x570314[0x0],'\x27')&&_0x570314[_0x1d371e(0x167)]('\x27'))&&(_0x570314=_0x570314[_0x1d371e(0x2ef)](0x1,-0x1)),{'kind':_0x3621d0[_0x1d371e(0x373)],'field':_0x30bc2b,'value':_0x570314};}return{'kind':_0x3621d0[_0x1d371e(0x175)],'value':_0xd6b224[_0x1d371e(0xe8)]};}const CMP_OPS=[{'tok':'!=','cmp':'ne'},{'tok':'>=','cmp':'gte'},{'tok':'<=','cmp':_0x4e3d16(0x180)},{'tok':'~','cmp':_0x4e3d16(0x1a8)},{'tok':'>','cmp':'gt'},{'tok':'<','cmp':'lt'},{'tok':'=','cmp':'eq'},{'tok':':','cmp':'eq'}];function splitFieldOp(_0x54a0e6){const _0xec2e55=_0x4e3d16,_0x346c11={'OxRST':function(_0x3a82b5,_0x1ccaf9,_0x29e09f,_0xe6beda,_0x270f11){return _0x3a82b5(_0x1ccaf9,_0x29e09f,_0xe6beda,_0x270f11);},'LmuLo':function(_0x3f10c9,_0x4727cd){return _0x3f10c9!==_0x4727cd;},'Htxkt':_0xec2e55(0x272),'wMnJz':function(_0x30302f,_0xd3f837){return _0x30302f===_0xd3f837;},'xSPyF':function(_0x51add9,_0x4ba08e){return _0x51add9<_0x4ba08e;},'qmYrJ':function(_0x30b419,_0x6c46b6){return _0x30b419+_0x6c46b6;}};let _0x4736fc=null;for(const {tok:_0x218a9b,cmp:_0x280d77}of CMP_OPS){if(_0x346c11[_0xec2e55(0x3ae)](_0xec2e55(0x23a),_0x346c11['Htxkt'])){const _0x27b234=_0x54a0e6[_0xec2e55(0x2d3)](_0x218a9b);_0x27b234>0x0&&(_0x346c11[_0xec2e55(0x21e)](_0x4736fc,null)||_0x346c11[_0xec2e55(0x2a6)](_0x27b234,_0x4736fc['idx'])||_0x346c11[_0xec2e55(0x21e)](_0x27b234,_0x4736fc['idx'])&&_0x218a9b[_0xec2e55(0x25f)]>_0x4736fc[_0xec2e55(0x210)][_0xec2e55(0x25f)])&&(_0x4736fc={'idx':_0x27b234,'tok':_0x218a9b,'cmp':_0x280d77});}else{_0x346c11[_0xec2e55(0x1e6)](_0x18fe8a,_0x137c18[_0xec2e55(0x250)],_0x79994c,_0x398c38,!![]);return;}}if(!_0x4736fc)return null;const _0x5908b9=_0x54a0e6['slice'](0x0,_0x4736fc[_0xec2e55(0x276)]);if(!/^[A-Za-z_][A-Za-z0-9_.-]*$/[_0xec2e55(0x253)](_0x5908b9))return null;return{'field':_0x5908b9,'cmp':_0x4736fc[_0xec2e55(0x37d)],'op':_0x4736fc[_0xec2e55(0x210)],'value':_0x54a0e6[_0xec2e55(0x2ef)](_0x346c11[_0xec2e55(0x3c0)](_0x4736fc[_0xec2e55(0x276)],_0x4736fc['tok'][_0xec2e55(0x25f)]))};}function unquoteValue(_0x10e4c4){const _0x1b4343=_0x4e3d16,_0xdee262={'auNaF':_0x1b4343(0x383),'kYkEI':_0x1b4343(0x3c5),'tPYWZ':function(_0x3f3b31,_0x47dbfb){return _0x3f3b31===_0x47dbfb;},'vSrQH':function(_0x42aed0,_0x4788b0){return _0x42aed0===_0x4788b0;},'gZJJN':function(_0x44e732,_0x591c05){return _0x44e732===_0x591c05;},'OyIss':_0x1b4343(0x16b)};if(_0x10e4c4['length']>=0x2&&(_0xdee262['tPYWZ'](_0x10e4c4[0x0],'\x22')&&_0x10e4c4[_0x1b4343(0x167)]('\x22')||_0xdee262[_0x1b4343(0x19c)](_0x10e4c4[0x0],'\x27')&&_0x10e4c4[_0x1b4343(0x167)]('\x27')))return _0xdee262['gZJJN']('JWTbK',_0xdee262[_0x1b4343(0x214)])?{'multi_match':{'query':_0x34e0d8[_0x1b4343(0xe8)],'fields':_0x23aa81,'type':_0x209b63?_0xdee262[_0x1b4343(0x333)]:_0xdee262['kYkEI']}}:_0x10e4c4[_0x1b4343(0x2ef)](0x1,-0x1);return _0x10e4c4;}function parseWhereAst(_0x5a7fe2){const _0x37a7e8=_0x4e3d16,_0x5709d0={'CLHMT':function(_0x139ae9,_0x43a006){return _0x139ae9!==_0x43a006;},'JiXlO':_0x37a7e8(0x2c9),'DeuAi':function(_0x134aff){return _0x134aff();},'kroro':function(_0x5548bf,_0x108356){return _0x5548bf===_0x108356;},'IszQt':'message','ngKvN':function(_0x5eddaa,_0xc55545){return _0x5eddaa===_0xc55545;},'FJhtO':function(_0x4c0daf,_0x962dab){return _0x4c0daf(_0x962dab);},'rqgOJ':_0x37a7e8(0x26d),'tvqXX':'zWlYx','RcoUR':_0x37a7e8(0x355),'osJkC':function(_0x4bad0e){return _0x4bad0e();},'oCNqV':_0x37a7e8(0x383),'wNUZq':function(_0x765a7f,_0x1722c9){return _0x765a7f===_0x1722c9;},'srdSi':'regex','cSTeI':function(_0x563df0,_0x160a0a){return _0x563df0===_0x160a0a;},'QmoHo':_0x37a7e8(0x257),'tZNza':function(_0x2556bd,_0x482a4f){return _0x2556bd-_0x482a4f;},'joibz':function(_0x1adaee,_0x26e923){return _0x1adaee+_0x26e923;},'Tptbt':function(_0x5b82a9,_0x3e5556,_0x2cb6b2){return _0x5b82a9(_0x3e5556,_0x2cb6b2);},'AMxhO':function(_0x1ec4b9,_0xc26e23){return _0x1ec4b9<_0xc26e23;},'doEOl':function(_0x25e4e1,_0x3ba0ae){return _0x25e4e1+_0x3ba0ae;},'ukJuD':function(_0x3e4d2b,_0x6b8080){return _0x3e4d2b!==_0x6b8080;},'nOZxc':_0x37a7e8(0x3bc),'Cowhc':function(_0x2c2bf1){return _0x2c2bf1();},'giTvb':'not','LNSlH':function(_0x28ca54,_0x5d6f31){return _0x28ca54===_0x5d6f31;},'thOje':function(_0x3074e1){return _0x3074e1();},'sshFZ':function(_0xece37d,_0x4d1a9b){return _0xece37d===_0x4d1a9b;},'MBdNp':function(_0x1130ee,_0x3e1c3f){return _0x1130ee===_0x3e1c3f;},'CYdSi':function(_0x5d53b2,_0xc61d92){return _0x5d53b2===_0xc61d92;},'CKmYL':function(_0x538746,_0x2605b0){return _0x538746===_0x2605b0;},'TQFwV':function(_0x16c0bf,_0x144ac9){return _0x16c0bf===_0x144ac9;},'jctvy':function(_0x5ed568,_0x1438ae){return _0x5ed568!==_0x1438ae;},'SOcPP':function(_0x15e675,_0x4e4844){return _0x15e675(_0x4e4844);},'OrydC':_0x37a7e8(0x1a8),'bHcvk':'gte','ULkWz':'lte','sLpEL':function(_0x4e059b,_0x3fe9ff){return _0x4e059b(_0x3fe9ff);},'HXGVC':function(_0x5a0dc6,_0x49587d){return _0x5a0dc6>_0x49587d;},'hAWkV':function(_0x9efec3,_0x149380){return _0x9efec3<_0x149380;},'bWhhA':function(_0x1252c2,_0x156ca1){return _0x1252c2<=_0x156ca1;},'jnkgs':_0x37a7e8(0x298),'JgJmR':function(_0x2bf3f4,_0x745779){return _0x2bf3f4!==_0x745779;},'VhOop':_0x37a7e8(0x318),'QepXG':function(_0x3ab6a3,_0x113e11,_0x646dae,_0x17f378,_0x58bdb3){return _0x3ab6a3(_0x113e11,_0x646dae,_0x17f378,_0x58bdb3);},'nhvbA':function(_0x2327a3,_0x3fc1ec,_0x4e00db,_0x1ee200){return _0x2327a3(_0x3fc1ec,_0x4e00db,_0x1ee200);},'kplVj':_0x37a7e8(0x19d),'oowAZ':_0x37a7e8(0x1bb),'GfBgU':'operando\x20ausente\x20no\x20where','jVvyC':_0x37a7e8(0x107),'gwPTQ':_0x37a7e8(0xea),'oxUPz':function(_0x2fed7f,_0x4e8481){return _0x2fed7f===_0x4e8481;},'fxNkX':_0x37a7e8(0x293),'Pcukx':function(_0x2d8c0e,_0x599312){return _0x2d8c0e(_0x599312);},'OEgfB':function(_0xb45d80,_0x49fb27){return _0xb45d80(_0x49fb27);},'slgoO':_0x37a7e8(0x38d),'fGxcQ':_0x37a7e8(0x159),'blxhh':function(_0x58beae,_0x34bd56){return _0x58beae+_0x34bd56;},'VNvpu':function(_0x50c68d,_0x4b2470){return _0x50c68d===_0x4b2470;},'WFBki':_0x37a7e8(0x14d),'mLgXN':'JUnWz','bMQoh':function(_0x21c0bf,_0x3265e0){return _0x21c0bf===_0x3265e0;},'Drzzn':function(_0x3ae93d,_0x50b179){return _0x3ae93d!==_0x50b179;},'SpSQL':_0x37a7e8(0x1aa),'JeKwm':_0x37a7e8(0x33b),'LdPIa':_0x37a7e8(0x170),'ULCLu':function(_0x1a0117,_0x429bbf){return _0x1a0117===_0x429bbf;},'qmbTN':_0x37a7e8(0x281),'rjGJb':function(_0x1b8621){return _0x1b8621();},'LQeov':function(_0x284ecf,_0x3912f2){return _0x284ecf<_0x3912f2;}};let _0x13cd9a=0x0;const _0x682e6d=()=>_0x5a7fe2[_0x13cd9a],_0x437879=(_0x583765,_0x4c21cc)=>Boolean(_0x583765&&_0x583765['type']==='word'&&_0x4c21cc[_0x37a7e8(0x253)](_0x583765[_0x37a7e8(0xe8)])),_0x2e9e8d=_0xdd4eba=>{const _0x370284=_0x37a7e8,_0x16234c=_0x5a7fe2[_0x13cd9a];if(!_0x16234c||_0x5709d0[_0x370284(0x268)](_0x16234c[_0x370284(0x2f0)],_0xdd4eba))throw new DslError(_0x5709d0[_0x370284(0x33f)],_0x370284(0x21f)+_0xdd4eba+'\x22\x20no\x20where');_0x13cd9a++;};function _0x5b2f9c(){const _0x3d566a=_0x37a7e8,_0x30e083=[_0x4c7efd()];while(_0x437879(_0x5709d0[_0x3d566a(0xec)](_0x682e6d),/^or$/i)){_0x13cd9a++,_0x30e083['push'](_0x4c7efd());}return _0x30e083['length']===0x1?_0x30e083[0x0]:{'op':'or','children':_0x30e083};}function _0x4c7efd(){const _0x4eef11=_0x37a7e8,_0x1944d3={'vHqhP':_0x5709d0[_0x4eef11(0x33f)]};if(_0x5709d0[_0x4eef11(0x325)]===_0x5709d0[_0x4eef11(0x325)]){const _0x51c78b=[_0x5709d0[_0x4eef11(0xec)](_0x496356)];for(;;){const _0x168475=_0x5709d0[_0x4eef11(0xec)](_0x682e6d);if(_0x437879(_0x168475,/^and$/i)){if(_0x5709d0['kroro'](_0x5709d0[_0x4eef11(0x387)],_0x5709d0[_0x4eef11(0x27f)]))return _0x5709d0[_0x4eef11(0x340)](_0x1edcb0,_0x5709d0[_0x4eef11(0x2c1)])||_0x5709d0['ngKvN'](_0x220072,_0x4eef11(0x1ef))||_0x4b4239[_0x4eef11(0x296)](_0x2aad24)||_0x5709d0[_0x4eef11(0x192)](_0xc94a16,_0x583e72)||_0x82d754(_0x5173d4)||_0x284c60&&_0x4fd518['has'](_0x2912c6);else{_0x13cd9a++,_0x51c78b[_0x4eef11(0x370)](_0x5709d0['osJkC'](_0x496356));continue;}}const _0x3998cc=_0x168475&&(_0x168475[_0x4eef11(0x2f0)]===_0x5709d0['oCNqV']||_0x5709d0[_0x4eef11(0x345)](_0x168475[_0x4eef11(0x2f0)],_0x5709d0[_0x4eef11(0x1e8)])||_0x168475[_0x4eef11(0x2f0)]==='('||_0x5709d0[_0x4eef11(0x110)](_0x168475[_0x4eef11(0x2f0)],_0x5709d0['QmoHo'])&&!/^or$/i[_0x4eef11(0x253)](_0x168475[_0x4eef11(0xe8)]));if(_0x3998cc){_0x51c78b[_0x4eef11(0x370)](_0x496356());continue;}break;}return _0x51c78b['length']===0x1?_0x51c78b[0x0]:{'op':'and','children':_0x51c78b};}else throw new _0x50c96f(_0x1944d3['vHqhP'],_0x4eef11(0x234)+_0x2ace63[_0x4eef11(0x3cd)]()+'\x22',{'detail':_0x5a9071[_0x4eef11(0x3cd)]()});}function _0x496356(){const _0x4a133f=_0x37a7e8;if(_0x5709d0[_0x4a133f(0x2a2)](_0x5709d0[_0x4a133f(0x3d5)],_0x4a133f(0x3bc))){const _0x9c46d2=new _0xd38abf(_0x4a133f(0x314)+_0x4fca5c+_0x4a133f(0x394),'i'),_0x48cb8e=_0x9c46d2[_0x4a133f(0x18d)](_0x43f1df);if(!_0x48cb8e)return null;const _0x35a7dd=_0x60f27b[_0x4a133f(0x2d3)]('(',_0x5709d0[_0x4a133f(0x21a)](_0x5709d0[_0x4a133f(0x35c)](_0x48cb8e[_0x4a133f(0x335)],_0x48cb8e[0x0][_0x4a133f(0x25f)]),0x1)),_0x3ef703=_0x5709d0[_0x4a133f(0x16d)](_0x4da830,_0x4cad28,_0x35a7dd);if(_0x5709d0[_0x4a133f(0x15e)](_0x3ef703,0x0))throw new _0x45415e(_0x5709d0[_0x4a133f(0x33f)],'parênteses\x20não\x20balanceados\x20em\x20'+_0x5dc05e+_0x4a133f(0x2da),{'detail':_0x23ff79+_0x4a133f(0x2da)});return{'content':_0x46acc9['slice'](_0x5709d0[_0x4a133f(0x35c)](_0x35a7dd,0x1),_0x3ef703),'start':_0x5709d0['doEOl'](_0x48cb8e[_0x4a133f(0x335)],_0x48cb8e[0x1]?_0x48cb8e[0x1]['length']:0x0),'end':_0x3ef703+0x1};}else{const _0x30773e=_0x5709d0[_0x4a133f(0x3cb)](_0x682e6d);if(_0x5709d0['Tptbt'](_0x437879,_0x30773e,/^not$/i))return _0x13cd9a++,{'op':_0x5709d0[_0x4a133f(0x1f7)],'child':_0x5709d0[_0x4a133f(0xec)](_0x496356)};if(_0x30773e&&_0x5709d0['LNSlH'](_0x30773e[_0x4a133f(0x2f0)],'(')){_0x13cd9a++;const _0x57f561=_0x5709d0[_0x4a133f(0x324)](_0x5b2f9c);return _0x2e9e8d(')'),_0x57f561;}return _0x367e06();}}function _0x367e06(){const _0x415acb=_0x37a7e8,_0x2ab814={'kSTSL':function(_0x4a5acb,_0x2f622a){return _0x4a5acb(_0x2f622a);},'STQUG':_0x5709d0[_0x415acb(0x365)],'ymRGj':function(_0x398b46,_0x3c2864){const _0x1990f7=_0x415acb;return _0x5709d0[_0x1990f7(0x1fe)](_0x398b46,_0x3c2864);},'okffH':_0x415acb(0x309),'rfdUM':_0x5709d0[_0x415acb(0x33f)],'SgqJD':_0x5709d0['VhOop'],'ymplX':function(_0x1fabaf,_0x588ef4,_0x4aa061,_0x4475d7,_0x170d86){const _0x5a5a37=_0x415acb;return _0x5709d0[_0x5a5a37(0x202)](_0x1fabaf,_0x588ef4,_0x4aa061,_0x4475d7,_0x170d86);},'HOglP':function(_0x59c29a,_0x850667,_0x80a92d,_0x2a6f45){const _0x16311c=_0x415acb;return _0x5709d0[_0x16311c(0x1c7)](_0x59c29a,_0x850667,_0x80a92d,_0x2a6f45);}};if(_0x5709d0[_0x415acb(0x26a)]!==_0x5709d0[_0x415acb(0x222)]){const _0x501d59=_0x5a7fe2[_0x13cd9a];if(!_0x501d59)throw new DslError(_0x5709d0[_0x415acb(0x33f)],_0x5709d0[_0x415acb(0x275)]);if(_0x5709d0[_0x415acb(0x345)](_0x501d59['type'],_0x5709d0[_0x415acb(0x239)]))return _0x13cd9a++,{'kind':_0x415acb(0x383),'value':_0x501d59[_0x415acb(0xe8)]};if(_0x5709d0[_0x415acb(0x340)](_0x501d59['type'],_0x5709d0['srdSi'])){if(_0x415acb(0x107)!==_0x5709d0[_0x415acb(0x15f)]){if(_0x5709d0[_0x415acb(0xed)](_0x414e27,null)||_0x5709d0[_0x415acb(0x30c)](_0x3fbc0d,_0x4ae9af)||_0x5709d0['sshFZ'](_0x69d5da,''))return null;const _0x1755c3=_0x5709d0[_0x415acb(0x192)](_0x5495b3,_0xd73f12);return _0x1b0ec4[_0x415acb(0x34b)](_0x1755c3)?_0x1755c3:null;}else return _0x13cd9a++,{'kind':_0x5709d0['srdSi'],'source':_0x501d59[_0x415acb(0x3d4)],'flags':_0x501d59[_0x415acb(0x227)]};}if(_0x5709d0[_0x415acb(0x128)](_0x501d59[_0x415acb(0x2f0)],')'))throw new DslError(_0x5709d0[_0x415acb(0x33f)],_0x5709d0[_0x415acb(0x368)]);if(_0x5709d0['oxUPz'](_0x501d59['type'],','))throw new DslError(_0x5709d0[_0x415acb(0x33f)],_0x5709d0[_0x415acb(0x22f)]);_0x13cd9a++;const _0x1784e2=_0x501d59[_0x415acb(0xe8)];if(/^contains$/i[_0x415acb(0x253)](_0x1784e2)&&_0x5a7fe2[_0x13cd9a]&&_0x5a7fe2[_0x13cd9a][_0x415acb(0x2f0)]==='('){_0x13cd9a++;const _0x4d9ae4=_0x5709d0[_0x415acb(0xec)](_0x5b2f9c);return _0x5709d0[_0x415acb(0x393)](_0x2e9e8d,')'),{'kind':_0x415acb(0x1a8),'expr':_0x4d9ae4};}if(/^exists$/i[_0x415acb(0x253)](_0x1784e2)){_0x5709d0[_0x415acb(0x2ed)](_0x2e9e8d,'(');const _0x51db9a=_0x5a7fe2[_0x13cd9a];if(!_0x51db9a||_0x51db9a[_0x415acb(0x2f0)]!==_0x5709d0[_0x415acb(0x3b6)])throw new DslError(_0x5709d0[_0x415acb(0x33f)],_0x5709d0[_0x415acb(0x33c)]);return _0x13cd9a++,_0x5709d0[_0x415acb(0x192)](_0x2e9e8d,')'),{'kind':_0x5709d0[_0x415acb(0x374)],'field':_0x51db9a['value']};}const _0x3294dc=_0x5a7fe2[_0x13cd9a];if(_0x437879(_0x3294dc,/^in$/i)&&_0x5a7fe2[_0x5709d0[_0x415acb(0x3a8)](_0x13cd9a,0x1)]&&_0x5a7fe2[_0x5709d0['blxhh'](_0x13cd9a,0x1)]['type']==='('&&!splitFieldOp(_0x1784e2)){if(_0x5709d0[_0x415acb(0x1bf)](_0x5709d0[_0x415acb(0x17a)],_0x5709d0[_0x415acb(0x21b)])){const _0x3ffd7d=_0x2ab814[_0x415acb(0x1da)](_0x3fed3b,_0x2981de);if(!_0x3c4d18['isFinite'](_0x3ffd7d))throw new _0xdbdf60(_0x2ab814[_0x415acb(0x34c)],'valor\x20numérico\x20inválido\x20para\x20'+_0x3e4afe+':\x20'+_0x2a44e6,{'field':_0x525f47});return _0x3ffd7d;}else{_0x13cd9a+=0x2;const _0x2162b5=[];for(;;){const _0x5cb913=_0x5a7fe2[_0x13cd9a];if(!_0x5cb913)throw new DslError(_0x5709d0[_0x415acb(0x33f)],_0x415acb(0x1e9));if(_0x5709d0[_0x415acb(0x1bf)](_0x5cb913[_0x415acb(0x2f0)],')')){_0x13cd9a++;break;}if(_0x5709d0[_0x415acb(0x278)](_0x5cb913[_0x415acb(0x2f0)],',')){_0x13cd9a++;continue;}if(_0x5709d0[_0x415acb(0x278)](_0x5cb913['type'],_0x5709d0[_0x415acb(0x3b6)])||_0x5cb913['type']===_0x5709d0['oCNqV']){if(_0x5709d0[_0x415acb(0x18b)](_0x5709d0[_0x415acb(0x3d2)],_0x5709d0[_0x415acb(0x3d2)])){if(_0x2ab814[_0x415acb(0x19f)](_0xf016ad[_0x415acb(0x206)],_0x2ab814['okffH']))throw new _0x3acf5c(_0x2ab814[_0x415acb(0x155)],_0x415acb(0x16c)+_0x5d6d2a['name']+')');if(_0x2edf11)throw new _0x64f70e(_0x2ab814[_0x415acb(0x155)],_0x2ab814[_0x415acb(0x34e)]);_0x2ab814['ymplX'](_0x248659,_0x5b5551['expr'],_0x548989,_0xbe94c9[_0x415acb(0x3b5)],![]);return;}else{_0x2162b5[_0x415acb(0x370)](unquoteValue(_0x5cb913[_0x415acb(0xe8)])),_0x13cd9a++;continue;}}throw new DslError('malformed',_0x5709d0['JeKwm']);}if(_0x5709d0[_0x415acb(0x1bf)](_0x2162b5[_0x415acb(0x25f)],0x0))throw new DslError(_0x5709d0[_0x415acb(0x33f)],_0x415acb(0x1e4));return{'kind':'in','field':_0x1784e2,'values':_0x2162b5};}}const _0xcc3ee3=_0x5709d0[_0x415acb(0x192)](splitFieldOp,_0x1784e2);if(_0xcc3ee3){if(_0x5709d0[_0x415acb(0xed)](_0x5709d0[_0x415acb(0x223)],_0x5709d0[_0x415acb(0x223)])){let _0x519181=_0xcc3ee3[_0x415acb(0xe8)];if(_0x5709d0[_0x415acb(0x336)](_0x519181,'')){const _0x42312a=_0x5a7fe2[_0x13cd9a];if(_0x42312a&&_0x42312a[_0x415acb(0x2f0)]==='phrase'){if(_0x5709d0[_0x415acb(0x199)](_0x5709d0[_0x415acb(0xcd)],_0x415acb(0x281)))_0x519181=_0x42312a[_0x415acb(0xe8)],_0x13cd9a++;else{if(_0x5709d0[_0x415acb(0x199)](_0x2c98e0[_0x415acb(0x1a7)],_0x415acb(0x159)))return _0x5709d0[_0x415acb(0x268)](_0x1950a8,_0x21d2ed)&&_0x141407!==null;if(_0x5709d0[_0x415acb(0x128)](_0x3f1984,_0x289121)||_0x5709d0['MBdNp'](_0x43eb09,null))return![];if(_0x5709d0[_0x415acb(0x2a1)](_0x346807[_0x415acb(0x1a7)],'in')){const _0x377b51=(_0x4bd152[_0x415acb(0x364)]||[])['map'](_0x170e31=>_0x2db1b0(_0x170e31)[_0x415acb(0x284)]());return _0x377b51[_0x415acb(0x269)](_0x51444c(_0x151c0d)[_0x415acb(0x284)]());}switch(_0x3ecd76[_0x415acb(0x37d)]){case'eq':return _0x5709d0[_0x415acb(0x1d4)](_0x5709d0['FJhtO'](_0x138c6b,_0x5f29c9)[_0x415acb(0x284)](),_0x3e184d(_0xf384aa[_0x415acb(0xe8)])['toLowerCase']());case'ne':return _0x5709d0[_0x415acb(0x1bc)](_0x5709d0[_0x415acb(0x166)](_0x47d75e,_0xaea2d4)['toLowerCase'](),_0x2df43f(_0x1cc0a4[_0x415acb(0xe8)])['toLowerCase']());case _0x5709d0[_0x415acb(0x28e)]:return _0x5709d0[_0x415acb(0x192)](_0x3c8579,_0x2fa49b)[_0x415acb(0x284)]()[_0x415acb(0x269)](_0x5709d0[_0x415acb(0x192)](_0x1c3d22,_0x564a83['value'])[_0x415acb(0x284)]());case'gt':case _0x5709d0[_0x415acb(0x3ab)]:case'lt':case _0x5709d0[_0x415acb(0x1b8)]:{const _0x53ffa5=_0x44cb1d(_0x40e394),_0x23c3f9=_0x5709d0['sLpEL'](_0x3fc60b,_0x19de93['value']);if(!_0x27dd06['isFinite'](_0x53ffa5)||!_0xcf2d01[_0x415acb(0x34b)](_0x23c3f9))return![];return _0x2859ba[_0x415acb(0x37d)]==='gt'?_0x5709d0[_0x415acb(0x1af)](_0x53ffa5,_0x23c3f9):_0x5709d0[_0x415acb(0x30c)](_0xd34b1c[_0x415acb(0x37d)],_0x5709d0[_0x415acb(0x3ab)])?_0x53ffa5>=_0x23c3f9:_0x5709d0['CKmYL'](_0x1f0f4e[_0x415acb(0x37d)],'lt')?_0x5709d0[_0x415acb(0x15a)](_0x53ffa5,_0x23c3f9):_0x5709d0[_0x415acb(0x1d8)](_0x53ffa5,_0x23c3f9);}default:return![];}}}else throw new DslError(_0x415acb(0x2c9),'valor\x20ausente\x20em\x20\x22'+_0xcc3ee3['field']+_0xcc3ee3['op']+'\x22');}else _0x519181=unquoteValue(_0x519181);return{'kind':_0x5709d0[_0x415acb(0x365)],'field':_0xcc3ee3[_0x415acb(0x298)],'cmp':_0xcc3ee3['cmp'],'value':_0x519181};}else return _0x55cc29['slice'](0x1,-0x1);}return{'kind':_0x415acb(0x2db),'value':_0x1784e2};}else{const _0x417bb1=_0x2ab814[_0x415acb(0x133)](_0x36bc3b,_0x541a4d,_0x4f854f[_0x415acb(0x298)],_0x4b435f);if(!_0x31c9ff(_0x417bb1,_0x6e85a))return![];}}const _0x2aace1=_0x5709d0['rjGJb'](_0x5b2f9c);if(_0x5709d0['LQeov'](_0x13cd9a,_0x5a7fe2[_0x37a7e8(0x25f)])){const _0x32ae3b=_0x5a7fe2[_0x13cd9a];throw new DslError(_0x5709d0[_0x37a7e8(0x33f)],_0x37a7e8(0x2ea)+(_0x32ae3b[_0x37a7e8(0xe8)]||_0x32ae3b[_0x37a7e8(0x2f0)])+'\x22');}return _0x2aace1;}function flattenAstLeaves(_0x3de4de,_0x3680dc=[]){const _0xe5e61c=_0x4e3d16,_0x45ada5={'UELvb':'malformed','PIsUi':_0xe5e61c(0x315),'zNzDu':function(_0xd7e688,_0x309312){return _0xd7e688===_0x309312;},'MhNoT':_0xe5e61c(0x12c),'wUIRC':_0xe5e61c(0x395),'ZIowm':function(_0x4935ba,_0x3d9a01){return _0x4935ba!==_0x3d9a01;},'Buuir':_0xe5e61c(0x1cb),'JJjGS':function(_0x72c1fc,_0x4e4d4c,_0x7a87e6){return _0x72c1fc(_0x4e4d4c,_0x7a87e6);}};if(!_0x3de4de)return _0x3680dc;if(_0x3de4de['op']===_0xe5e61c(0xef)||_0x45ada5['zNzDu'](_0x3de4de['op'],'or')){if(_0x45ada5[_0xe5e61c(0x169)]===_0x45ada5[_0xe5e61c(0x169)])return _0x3de4de[_0xe5e61c(0x2e5)][_0xe5e61c(0x1e1)](_0x18bf56=>flattenAstLeaves(_0x18bf56,_0x3680dc)),_0x3680dc;else{const _0x574512=_0x59bda7[_0xc20286];throw new _0x306af7(_0x45ada5[_0xe5e61c(0x173)],_0xe5e61c(0x2ea)+(_0x574512['value']||_0x574512['type'])+'\x22');}}if(_0x3de4de['op']===_0x45ada5['wUIRC'])return _0x45ada5[_0xe5e61c(0x283)]('pmNzW',_0x45ada5[_0xe5e61c(0x39b)])?(_0x43c86f++,{'kind':_0x45ada5['PIsUi'],'source':_0x1357db[_0xe5e61c(0x3d4)],'flags':_0x1197d9[_0xe5e61c(0x227)]}):(_0x45ada5['JJjGS'](flattenAstLeaves,_0x3de4de['child'],_0x3680dc),_0x3680dc);return _0x3680dc['push'](_0x3de4de),_0x3680dc;}const RANGE_CMPS=new Set(['gt','gte','lt',_0x4e3d16(0x180)]);function isRangeableField(_0x1acc3){const _0x3aff5f=_0x4e3d16,_0x896795={'PmXzn':function(_0x2fa0ef,_0x1144f4){return _0x2fa0ef===_0x1144f4;},'QNgpl':'timestamp'};return isKvnPath(_0x1acc3)||LOG_NUMERIC_FIELDS[_0x3aff5f(0x296)](_0x1acc3)||_0x896795[_0x3aff5f(0x2c4)](_0x1acc3,_0x896795[_0x3aff5f(0x10b)]);}function isKnownField(_0x4ccb4c,_0x493bf0){const _0x5ce76c=_0x4e3d16,_0x40bb5f={'rrBLH':function(_0x1299a8,_0x372c55){return _0x1299a8===_0x372c55;},'YvJuD':'message','hmMul':_0x5ce76c(0x1ef),'cqJkJ':function(_0x3b5669,_0x4153f7){return _0x3b5669(_0x4153f7);}};return _0x40bb5f[_0x5ce76c(0x1b0)](_0x4ccb4c,_0x40bb5f[_0x5ce76c(0x263)])||_0x4ccb4c===_0x40bb5f[_0x5ce76c(0x1ec)]||LOG_FIELD_ALLOWLIST[_0x5ce76c(0x296)](_0x4ccb4c)||_0x40bb5f['cqJkJ'](isKvPath,_0x4ccb4c)||isKvnPath(_0x4ccb4c)||_0x493bf0&&_0x493bf0[_0x5ce76c(0x296)](_0x4ccb4c);}function validateWhereAst(_0x10f7fd,_0x2e363c,_0x5c4ad6,_0x19abc1=![]){const _0x198c71=_0x4e3d16,_0x4418ee={'uFaJD':_0x198c71(0x298),'zZIET':'response.result','sosvt':function(_0x18190b,_0x337fcc){return _0x18190b===_0x337fcc;},'WusIp':_0x198c71(0x220),'NHNEo':_0x198c71(0xfa),'EKyfn':'p99','JVdjw':_0x198c71(0x205),'euWRe':_0x198c71(0x14e),'ugPux':function(_0x17dd2a,_0x4f257f){return _0x17dd2a===_0x4f257f;},'MINCb':function(_0x346949,_0x29f7bb){return _0x346949>_0x29f7bb;},'EuCOs':function(_0x1317b4,_0x55dc93){return _0x1317b4!==_0x55dc93;},'qdFVg':_0x198c71(0x1d1),'fYPmR':function(_0x215e68,_0x4e0e17){return _0x215e68===_0x4e0e17;},'EXsVL':'and','UXeYu':'cJxOR','ovpVg':_0x198c71(0x321),'apFnE':_0x198c71(0xdb),'fcHaw':function(_0x327a21,_0x1977c9,_0x276114,_0x11b018,_0x568ff2){return _0x327a21(_0x1977c9,_0x276114,_0x11b018,_0x568ff2);},'eUgfs':_0x198c71(0x315),'McRRH':'jrdpw','XAJry':'MBHQP','cRpsk':_0x198c71(0x115),'hXcRz':function(_0x4aa030,_0x86db51){return _0x4aa030===_0x86db51;},'LMlzm':_0x198c71(0x1a8),'wVVju':function(_0x3d91ee,_0x442db9){return _0x3d91ee!==_0x442db9;},'zBvbJ':'traces','MtPiN':'malformed','UIrql':_0x198c71(0x14f),'xflXI':_0x198c71(0x318),'MNcAI':function(_0x3fa638,_0x24f0b4,_0x3b1d73,_0xf9386c,_0x422a6d){return _0x3fa638(_0x24f0b4,_0x3b1d73,_0xf9386c,_0x422a6d);},'XPqdV':'phrase','ZsZEs':function(_0x12b266,_0x74e2d2){return _0x12b266===_0x74e2d2;},'EOBbT':_0x198c71(0x2db),'PPwTv':function(_0xd59ed2,_0x8a64a9){return _0xd59ed2(_0x8a64a9);},'fbrjK':_0x198c71(0x371),'DrYVw':function(_0x1ffa5f,_0x42b111){return _0x1ffa5f===_0x42b111;},'rgcXT':'date','RdbOz':function(_0x2dc75d,_0xd8d7cb){return _0x2dc75d===_0xd8d7cb;},'IZedO':'WCXbZ','PcdWc':_0x198c71(0xf1),'GDUdV':'wGOIn','sgtHX':_0x198c71(0x3bf)};if(!_0x10f7fd)return;if(_0x4418ee[_0x198c71(0xfe)](_0x10f7fd['op'],_0x4418ee[_0x198c71(0x1c8)])){if(_0x4418ee[_0x198c71(0x294)]!==_0x4418ee[_0x198c71(0x23e)]){_0x10f7fd['children'][_0x198c71(0x1e1)](_0x2fc1ab=>validateWhereAst(_0x2fc1ab,_0x2e363c,_0x5c4ad6,_0x19abc1));return;}else throw new _0x57607e(_0x4418ee[_0x198c71(0x1ac)],_0x198c71(0x14a)+_0x26495b,{'field':_0x147fd4});}if(_0x4418ee[_0x198c71(0x2b4)](_0x10f7fd['op'],'or')){if('NskZS'!==_0x4418ee[_0x198c71(0x18e)]){_0x5d53e1[_0x198c71(0x1a4)](_0x4418ee[_0x198c71(0x203)]);return;}else{_0x10f7fd[_0x198c71(0x2e5)][_0x198c71(0x1e1)](_0x5b2c60=>validateWhereAst(_0x5b2c60,_0x2e363c,_0x5c4ad6,!![]));return;}}if(_0x4418ee[_0x198c71(0x2b4)](_0x10f7fd['op'],_0x198c71(0x395))){_0x4418ee[_0x198c71(0x356)](validateWhereAst,_0x10f7fd[_0x198c71(0x250)],_0x2e363c,_0x5c4ad6,!![]);return;}if(_0x10f7fd['kind']===_0x4418ee['eUgfs']){if(_0x4418ee[_0x198c71(0x19b)]===_0x4418ee[_0x198c71(0x209)]){if(_0x4418ee['sosvt'](_0x38f212[_0x198c71(0x2f0)],_0x4418ee[_0x198c71(0x30a)]))return _0x47a247[_0x198c71(0x3c6)];const _0x13c25a=_0x3cf09b[_0x198c71(0x396)]||{};if(_0x4f2fc0['type']===_0x198c71(0x181))return(_0x13c25a[_0x198c71(0x364)]&&(_0x13c25a[_0x198c71(0x364)][_0x4418ee['NHNEo']]??_0x13c25a['values']['95']))??null;if(_0x4418ee[_0x198c71(0x2b4)](_0xbba47f['type'],_0x4418ee[_0x198c71(0x392)]))return(_0x13c25a['values']&&(_0x13c25a['values'][_0x4418ee[_0x198c71(0x122)]]??_0x13c25a[_0x198c71(0x364)]['99']))??null;return _0x13c25a['value']??null;}else{if(!_0x5c4ad6[_0x198c71(0x2f2)])throw new DslError('regex',_0x198c71(0x117)+_0x5c4ad6[_0x198c71(0x206)]);if(_0x19abc1)throw new DslError(_0x4418ee['eUgfs'],_0x4418ee[_0x198c71(0x142)]);return;}}if(_0x4418ee[_0x198c71(0xe1)](_0x10f7fd['kind'],_0x4418ee[_0x198c71(0x3b8)])){if(_0x4418ee[_0x198c71(0x305)](_0x5c4ad6[_0x198c71(0x206)],_0x4418ee[_0x198c71(0xca)]))throw new DslError(_0x4418ee[_0x198c71(0x216)],_0x198c71(0x16c)+_0x5c4ad6['name']+')');if(_0x19abc1){if(_0x4418ee[_0x198c71(0x191)](_0x198c71(0x14f),_0x4418ee[_0x198c71(0x1ae)]))throw new _0x575873(_0x4418ee[_0x198c71(0x1ac)],_0x198c71(0x350)+_0x40c350+'\x20—\x20use\x20campos\x20numéricos',{'field':_0x182ef4});else throw new DslError(_0x4418ee[_0x198c71(0x216)],_0x4418ee[_0x198c71(0x190)]);}_0x4418ee[_0x198c71(0x2e7)](validateWhereAst,_0x10f7fd[_0x198c71(0x3c7)],_0x2e363c,DATASET_PROFILES[_0x198c71(0x3b5)],![]);return;}if(_0x4418ee[_0x198c71(0xe1)](_0x10f7fd['kind'],_0x4418ee['XPqdV'])||_0x4418ee[_0x198c71(0x28c)](_0x10f7fd[_0x198c71(0x1a7)],_0x4418ee['EOBbT']))return;const _0x57455d=_0x10f7fd[_0x198c71(0x298)];if(!_0x5c4ad6[_0x198c71(0x24f)](_0x57455d,_0x2e363c))throw new DslError(_0x4418ee[_0x198c71(0x1ac)],_0x198c71(0x138)+_0x57455d,{'field':_0x57455d});if(_0x4418ee[_0x198c71(0x273)](isPayloadPath,_0x57455d)&&_0x19abc1){if(_0x4418ee[_0x198c71(0x102)]!==_0x198c71(0x196))throw new DslError(_0x4418ee[_0x198c71(0x1ac)],_0x57455d+'\x20(campo\x20do\x20payload)\x20só\x20é\x20suportado\x20em\x20cláusulas\x20AND\x20de\x20topo\x20(sem\x20OR/NOT)',{'field':_0x57455d});else return _0x23f7ed[_0x198c71(0x370)](_0x3fcdd9['expr']),null;}const _0x55f5f7=_0x5c4ad6[_0x198c71(0x2cb)](_0x57455d)||{};if(_0x4418ee[_0x198c71(0x2ac)](_0x10f7fd['kind'],_0x4418ee['uFaJD'])&&RANGE_CMPS[_0x198c71(0x296)](_0x10f7fd[_0x198c71(0x37d)])&&!_0x5c4ad6[_0x198c71(0x185)](_0x57455d))throw new DslError(_0x4418ee['uFaJD'],_0x198c71(0x350)+_0x57455d+_0x198c71(0xcb),{'field':_0x57455d});if(_0x4418ee[_0x198c71(0xfe)](_0x10f7fd[_0x198c71(0x1a7)],_0x4418ee['uFaJD'])&&_0x4418ee[_0x198c71(0x28c)](_0x10f7fd[_0x198c71(0x37d)],_0x4418ee['LMlzm'])&&(_0x4418ee[_0x198c71(0xfe)](_0x55f5f7[_0x198c71(0x2f0)],'numeric')||_0x4418ee[_0x198c71(0x28c)](_0x55f5f7[_0x198c71(0x2f0)],_0x4418ee[_0x198c71(0x377)])||_0x4418ee['RdbOz'](_0x55f5f7['type'],_0x198c71(0xe9)))){if(_0x4418ee[_0x198c71(0x191)](_0x198c71(0x372),_0x4418ee[_0x198c71(0x103)])){if(typeof _0x4e7204!==_0x4418ee[_0x198c71(0x1e5)]||_0x4418ee[_0x198c71(0x120)](_0x29b07f[_0x198c71(0x25f)],0x0)||_0x4418ee[_0x198c71(0x242)](_0x9f76ab['length'],_0x56b369))return null;try{const _0x5733cb=_0x472b4b[_0x198c71(0x328)](_0x2a7a7c);return _0x4418ee['EuCOs'](_0x5733cb,null)&&_0x4418ee[_0x198c71(0x120)](typeof _0x5733cb,_0x4418ee[_0x198c71(0x3ad)])?_0x5733cb:null;}catch{return null;}}else throw new DslError(_0x4418ee[_0x198c71(0x1ac)],_0x198c71(0x14a)+_0x57455d,{'field':_0x57455d});}if((_0x4418ee[_0x198c71(0xfe)](_0x10f7fd[_0x198c71(0x1a7)],'in')||_0x4418ee['DrYVw'](_0x10f7fd[_0x198c71(0x1a7)],_0x198c71(0x159)))&&_0x55f5f7[_0x198c71(0x2f0)]===_0x4418ee['PcdWc'])throw new DslError(_0x4418ee[_0x198c71(0x1ac)],_0x10f7fd[_0x198c71(0x1a7)]+'(...)\x20não\x20se\x20aplica\x20a\x20'+_0x57455d,{'field':_0x57455d});if(_0x10f7fd['kind']===_0x4418ee[_0x198c71(0x1ac)]&&_0x4418ee['hXcRz'](_0x55f5f7[_0x198c71(0x2f0)],_0x4418ee[_0x198c71(0x377)])&&!RANGE_CMPS['has'](_0x10f7fd[_0x198c71(0x37d)])){if(_0x4418ee[_0x198c71(0x191)](_0x4418ee[_0x198c71(0x1c2)],_0x4418ee['sgtHX']))throw new DslError(_0x4418ee[_0x198c71(0x1ac)],_0x57455d+_0x198c71(0x1df),{'field':_0x57455d});else{if(!_0x44c75e[_0x198c71(0x1cc)](_0x28dc5c,_0x1042c4))throw new _0x264cb1(_0x4418ee['uFaJD'],_0x198c71(0x3bb)+_0xfe5819,{'field':_0x10ee09});}}}function fieldPathInfo(_0x198a16){const _0x5acdff=_0x4e3d16,_0x34f2dc={'staRo':_0x5acdff(0x36a),'zlGWz':'numeric','vNiKW':_0x5acdff(0x2b7),'tljEz':function(_0x3107a1,_0x1ba201){return _0x3107a1===_0x1ba201;},'yrGsj':'message','HtieQ':_0x5acdff(0xf1),'wlelU':function(_0x437b5c,_0x2bccb4){return _0x437b5c(_0x2bccb4);},'aJZGt':'timestamp','shLnw':_0x5acdff(0x145)},_0x4082e7=_0x34f2dc[_0x5acdff(0xe6)][_0x5acdff(0x399)]('|');let _0x18265a=0x0;while(!![]){switch(_0x4082e7[_0x18265a++]){case'0':if(isKvnPath(_0x198a16))return{'path':_0x198a16,'type':_0x34f2dc[_0x5acdff(0x1dc)],'existsPath':_0x198a16};continue;case'1':return{'path':_0x198a16+'.keyword','type':_0x34f2dc['vNiKW'],'existsPath':_0x198a16};case'2':if(_0x34f2dc[_0x5acdff(0x2dd)](_0x198a16,_0x5acdff(0x10f)))return{'path':_0x34f2dc[_0x5acdff(0x3b2)],'type':_0x34f2dc[_0x5acdff(0x238)],'keywordPath':_0x5acdff(0x3a1),'existsPath':_0x34f2dc[_0x5acdff(0x3b2)]};continue;case'3':if(_0x34f2dc[_0x5acdff(0x13b)](isKvPath,_0x198a16))return{'path':_0x198a16,'type':'kv','existsPath':_0x198a16};continue;case'4':if(LOG_NUMERIC_FIELDS[_0x5acdff(0x296)](_0x198a16))return{'path':_0x198a16,'type':_0x34f2dc[_0x5acdff(0x1dc)],'existsPath':_0x198a16};continue;case'5':if(_0x198a16===_0x34f2dc[_0x5acdff(0x311)])return{'path':TIME_FIELD,'type':_0x34f2dc['shLnw'],'existsPath':TIME_FIELD};continue;}break;}}const REQUESTS_FIELD_MAP={'serviceName':{'path':_0x4e3d16(0x100),'type':_0x4e3d16(0x2b7),'existsPath':_0x4e3d16(0x2e3)},'service':{'path':'service.name.keyword','type':'keyword','existsPath':'service.name'},'method':{'path':_0x4e3d16(0x200),'type':_0x4e3d16(0x2b7),'existsPath':'request.method','upper':!![]},'path':{'path':_0x4e3d16(0x2e8),'type':_0x4e3d16(0xf1),'keywordPath':_0x4e3d16(0x182),'existsPath':_0x4e3d16(0x2e8)},'body':{'path':_0x4e3d16(0x2ba),'type':_0x4e3d16(0xf1),'keywordPath':'request.body.keyword','existsPath':'request.body'},'response':{'path':_0x4e3d16(0x38e),'type':'text','keywordPath':_0x4e3d16(0x2f9),'existsPath':_0x4e3d16(0x38e)},'statusCode':{'path':_0x4e3d16(0x266),'type':'numeric','existsPath':_0x4e3d16(0x266)},'duration':{'path':_0x4e3d16(0x1f4),'type':_0x4e3d16(0x38c),'existsPath':_0x4e3d16(0x1f4)},'durationMs':{'path':'timers.duration','type':_0x4e3d16(0x38c),'existsPath':'timers.duration'},'uuid':{'path':_0x4e3d16(0x198),'type':_0x4e3d16(0x2b7),'existsPath':_0x4e3d16(0x389)},'correlationId':{'path':'correlationId.keyword','type':_0x4e3d16(0x2b7),'existsPath':_0x4e3d16(0x104)},'traceId':{'path':_0x4e3d16(0x11d),'type':'keyword','existsPath':_0x4e3d16(0xf5)},'gatewayId':{'path':_0x4e3d16(0x2e2),'type':_0x4e3d16(0x2b7),'existsPath':_0x4e3d16(0x379)},'remoteAddress':{'path':_0x4e3d16(0x1a6),'type':_0x4e3d16(0x2b7),'existsPath':_0x4e3d16(0x1f1)},'timestamp':{'path':'timers.finished.at','type':_0x4e3d16(0x145),'existsPath':_0x4e3d16(0x32d)}},SPANS_FIELD_MAP={'service':{'path':_0x4e3d16(0xe4),'type':_0x4e3d16(0x2b7),'existsPath':_0x4e3d16(0x13d)},'name':{'path':'name','type':_0x4e3d16(0xf1),'keywordPath':_0x4e3d16(0xd2),'existsPath':_0x4e3d16(0x206)},'kind':{'path':_0x4e3d16(0x212),'type':_0x4e3d16(0x2b7),'existsPath':_0x4e3d16(0x1a7)},'gatewayId':{'path':_0x4e3d16(0x2e2),'type':_0x4e3d16(0x2b7),'existsPath':_0x4e3d16(0x379)},'clientId':{'path':'clientId.keyword','type':'keyword','existsPath':_0x4e3d16(0x343)},'traceId':{'path':_0x4e3d16(0x11d),'type':_0x4e3d16(0x2b7),'existsPath':_0x4e3d16(0xf5)},'spanId':{'path':_0x4e3d16(0x1a9),'type':'keyword','existsPath':'spanId'},'parentSpanId':{'path':_0x4e3d16(0x28d),'type':_0x4e3d16(0x2b7),'existsPath':_0x4e3d16(0x147)},'correlationId':{'path':_0x4e3d16(0x3a3),'type':'keyword','existsPath':_0x4e3d16(0x104)},'requestId':{'path':'requestId.keyword','type':_0x4e3d16(0x2b7),'existsPath':_0x4e3d16(0x25c)},'flowId':{'path':_0x4e3d16(0x2cd),'type':'keyword','existsPath':_0x4e3d16(0x35f)},'statusCode':{'path':_0x4e3d16(0x1d0),'type':'numeric','existsPath':_0x4e3d16(0x1d0)},'durationMs':{'path':_0x4e3d16(0x125),'type':_0x4e3d16(0x38c),'existsPath':_0x4e3d16(0x125)},'hasError':{'path':'hasError','type':_0x4e3d16(0xe9),'existsPath':_0x4e3d16(0x1a3)},'timestamp':{'path':'@timestamp','type':_0x4e3d16(0x145),'existsPath':_0x4e3d16(0x22e)}},TRACES_FIELD_MAP={'serviceName':SPANS_FIELD_MAP[_0x4e3d16(0x13d)],'service':SPANS_FIELD_MAP[_0x4e3d16(0x13d)],'name':SPANS_FIELD_MAP[_0x4e3d16(0x206)],'gatewayId':SPANS_FIELD_MAP[_0x4e3d16(0x379)],'clientId':SPANS_FIELD_MAP[_0x4e3d16(0x343)],'traceId':SPANS_FIELD_MAP['traceId'],'correlationId':SPANS_FIELD_MAP[_0x4e3d16(0x104)],'requestId':SPANS_FIELD_MAP[_0x4e3d16(0x25c)],'statusCode':SPANS_FIELD_MAP[_0x4e3d16(0x1d0)],'durationMs':SPANS_FIELD_MAP['durationMs'],'hasError':SPANS_FIELD_MAP[_0x4e3d16(0x1a3)],'timestamp':SPANS_FIELD_MAP[_0x4e3d16(0x1ef)]},ATTRIBUTES_PATH_RE=/^attributes\.[A-Za-z0-9_][A-Za-z0-9_.-]{0,127}$/;function isAttributesPath(_0x21d5a5){const _0x2dca4b=_0x4e3d16;return ATTRIBUTES_PATH_RE[_0x2dca4b(0x253)](_0x21d5a5);}const DATASET_PROFILES={'logs':{'name':_0x4e3d16(0x126),'allowRegex':!![],'timeField':TIME_FIELD,'known':(_0x17ffff,_0x575fb2)=>isKnownField(_0x17ffff,_0x575fb2),'rangeable':_0x24ef23=>isRangeableField(_0x24ef23),'info':_0x2aec5c=>fieldPathInfo(_0x2aec5c),'groupbyOk':(_0x43d537,_0x5cbf9a)=>_0x5cbf9a[_0x4e3d16(0x296)](_0x43d537)||LOG_FIELD_ALLOWLIST['has'](_0x43d537)||isKvPath(_0x43d537)||isKvnPath(_0x43d537),'metricOk':(_0x5b13d8,_0x158c53)=>_0x158c53[_0x4e3d16(0x296)](_0x5b13d8)||LOG_NUMERIC_FIELDS[_0x4e3d16(0x296)](_0x5b13d8)||isKvnPath(_0x5b13d8),'aggPath':(_0x2cb735,_0xdad8ea)=>_0xdad8ea[_0x4e3d16(0x296)](_0x2cb735)||isKvPath(_0x2cb735)||isKvnPath(_0x2cb735)?_0x2cb735:_0x2cb735+_0x4e3d16(0x2a5),'metricPath':_0x1ec72b=>_0x1ec72b},'spans':{'name':_0x4e3d16(0x3b5),'allowRegex':![],'timeField':_0x4e3d16(0x22e),'known':_0x3e73b5=>Object[_0x4e3d16(0x36b)][_0x4e3d16(0x204)][_0x4e3d16(0x3d3)](SPANS_FIELD_MAP,_0x3e73b5)||isAttributesPath(_0x3e73b5),'rangeable':_0x480610=>{const _0x3c39c9=_0x4e3d16,_0x270568={'nFULt':function(_0x5bf2a3,_0x3bb982){return _0x5bf2a3(_0x3bb982);},'gVTTg':function(_0x2eae98,_0x2de5eb){return _0x2eae98===_0x2de5eb;},'VIItw':_0x3c39c9(0x38c),'jisZh':_0x3c39c9(0x145)},_0x90cb1b=SPANS_FIELD_MAP[_0x480610];return _0x270568[_0x3c39c9(0x2c3)](Boolean,_0x90cb1b&&(_0x270568[_0x3c39c9(0x17f)](_0x90cb1b[_0x3c39c9(0x2f0)],_0x270568[_0x3c39c9(0x36d)])||_0x90cb1b[_0x3c39c9(0x2f0)]===_0x270568[_0x3c39c9(0x3a0)]));},'info':_0x12eeb6=>isAttributesPath(_0x12eeb6)?{'path':_0x12eeb6,'type':'kv','existsPath':_0x12eeb6}:SPANS_FIELD_MAP[_0x12eeb6],'groupbyOk':_0x429517=>[_0x4e3d16(0x13d),_0x4e3d16(0x206),_0x4e3d16(0x1a7),_0x4e3d16(0x379),_0x4e3d16(0x1d0),_0x4e3d16(0x1a3)][_0x4e3d16(0x269)](_0x429517),'metricOk':_0x80019a=>['durationMs',_0x4e3d16(0x1d0)]['includes'](_0x80019a),'aggPath':_0x23990f=>{const _0x12b0f0=_0x4e3d16,_0x2a7f73=SPANS_FIELD_MAP[_0x23990f];return _0x2a7f73?_0x2a7f73['keywordPath']||_0x2a7f73[_0x12b0f0(0x2aa)]:_0x23990f;},'metricPath':_0x42dbf3=>SPANS_FIELD_MAP[_0x42dbf3]?SPANS_FIELD_MAP[_0x42dbf3][_0x4e3d16(0x2aa)]:_0x42dbf3},'traces':{'name':'traces','allowRegex':![],'timeField':_0x4e3d16(0x22e),'known':_0x285074=>Object['prototype'][_0x4e3d16(0x204)]['call'](TRACES_FIELD_MAP,_0x285074),'rangeable':_0xcf095f=>{const _0x351da9=_0x4e3d16,_0x5b8a15={'HjONy':function(_0x276bfd,_0x1185db){return _0x276bfd(_0x1185db);},'ggdqV':function(_0x366fce,_0x5dc9db){return _0x366fce===_0x5dc9db;},'JoDoE':_0x351da9(0x38c),'NHqjY':function(_0x30168e,_0x261ea8){return _0x30168e===_0x261ea8;},'aaDOz':_0x351da9(0x145)},_0x5c4d34=TRACES_FIELD_MAP[_0xcf095f];return _0x5b8a15[_0x351da9(0x2c2)](Boolean,_0x5c4d34&&(_0x5b8a15[_0x351da9(0x36f)](_0x5c4d34[_0x351da9(0x2f0)],_0x5b8a15['JoDoE'])||_0x5b8a15[_0x351da9(0x2ff)](_0x5c4d34['type'],_0x5b8a15[_0x351da9(0x2af)])));},'info':_0x427a32=>TRACES_FIELD_MAP[_0x427a32],'groupbyOk':_0x57d1ee=>[_0x4e3d16(0x297),_0x4e3d16(0x13d),'gatewayId',_0x4e3d16(0x1d0)][_0x4e3d16(0x269)](_0x57d1ee),'metricOk':_0x3b53c6=>[_0x4e3d16(0x125),'statusCode'][_0x4e3d16(0x269)](_0x3b53c6),'aggPath':_0x578e14=>TRACES_FIELD_MAP[_0x578e14]?TRACES_FIELD_MAP[_0x578e14][_0x4e3d16(0x2aa)]:_0x578e14,'metricPath':_0x5c4ee9=>TRACES_FIELD_MAP[_0x5c4ee9]?TRACES_FIELD_MAP[_0x5c4ee9][_0x4e3d16(0x2aa)]:_0x5c4ee9},'requests':{'name':_0x4e3d16(0xfd),'allowRegex':![],'timeField':_0x4e3d16(0x32d),'known':_0x580bca=>Object[_0x4e3d16(0x36b)][_0x4e3d16(0x204)][_0x4e3d16(0x3d3)](REQUESTS_FIELD_MAP,_0x580bca)||isPayloadPath(_0x580bca),'rangeable':_0x1fd1c0=>{const _0x4aa8d6=_0x4e3d16,_0x49db07={'weDCs':function(_0x5716bf,_0x4b57f6){return _0x5716bf(_0x4b57f6);},'GxVpb':function(_0x29f429,_0x2787ee){return _0x29f429===_0x2787ee;},'mPmvK':_0x4aa8d6(0x38c),'PYQOJ':_0x4aa8d6(0x145)},_0x17f670=REQUESTS_FIELD_MAP[_0x1fd1c0];return isPayloadPath(_0x1fd1c0)||_0x49db07[_0x4aa8d6(0x1a0)](Boolean,_0x17f670&&(_0x49db07[_0x4aa8d6(0x359)](_0x17f670[_0x4aa8d6(0x2f0)],_0x49db07['mPmvK'])||_0x17f670[_0x4aa8d6(0x2f0)]===_0x49db07[_0x4aa8d6(0x24a)]));},'info':_0x277942=>REQUESTS_FIELD_MAP[_0x277942],'groupbyOk':_0x5cdbe7=>[_0x4e3d16(0x297),_0x4e3d16(0x13d),_0x4e3d16(0x1ab),'statusCode',_0x4e3d16(0x379),_0x4e3d16(0x2aa)][_0x4e3d16(0x269)](_0x5cdbe7)||isPayloadPath(_0x5cdbe7),'metricOk':_0x389e79=>['duration',_0x4e3d16(0x125),'statusCode'][_0x4e3d16(0x269)](_0x389e79)||isPayloadPath(_0x389e79),'aggPath':_0x578ab7=>{const _0x171a3b=_0x4e3d16,_0x4590cc=REQUESTS_FIELD_MAP[_0x578ab7];return _0x4590cc?_0x4590cc[_0x171a3b(0x2e6)]||_0x4590cc[_0x171a3b(0x2aa)]:_0x578ab7;},'metricPath':_0x5f06b1=>REQUESTS_FIELD_MAP[_0x5f06b1]?REQUESTS_FIELD_MAP[_0x5f06b1]['path']:_0x5f06b1}};function aggPathFor(_0x588cc7,_0x5ffadb,_0x2f4893){const _0x135320=_0x4e3d16,_0x3428aa={'JEdgO':function(_0x29f30c,_0x24acc4){return _0x29f30c||_0x24acc4;},'WTQBB':_0x135320(0x126)},_0x3065d5=DATASET_PROFILES[_0x3428aa[_0x135320(0x224)](_0x588cc7,_0x3428aa[_0x135320(0x2ab)])]||DATASET_PROFILES[_0x135320(0x126)];return _0x3065d5['aggPath'](_0x5ffadb,_0x2f4893||new Set());}function timeFieldFor(_0x4afe42){const _0x2d685a=_0x4e3d16,_0x5b6353={'SiaUB':function(_0x1c7d51,_0x3931f4){return _0x1c7d51||_0x3931f4;},'RJzgn':'logs'};return(DATASET_PROFILES[_0x5b6353[_0x2d685a(0x260)](_0x4afe42,_0x5b6353[_0x2d685a(0x28a)])]||DATASET_PROFILES['logs'])['timeField'];}const REQUESTS_HITS_SOURCE=[_0x4e3d16(0x389),'correlationId','traceId',_0x4e3d16(0x379),_0x4e3d16(0x2e3),'request.method','request.url.path',_0x4e3d16(0x266),'timers'];function toNumberOrThrow(_0x1e26c2,_0x12b126){const _0x478616=_0x4e3d16,_0x20b8b4={'poqdo':function(_0x21335e,_0x2966b4){return _0x21335e(_0x2966b4);}},_0x2ad0c2=_0x20b8b4[_0x478616(0x261)](Number,_0x12b126);if(!Number[_0x478616(0x34b)](_0x2ad0c2))throw new DslError(_0x478616(0x298),'valor\x20numérico\x20inválido\x20para\x20'+_0x1e26c2+':\x20'+_0x12b126,{'field':_0x1e26c2});return _0x2ad0c2;}function _0x2008(_0x43897d,_0x1a8492){_0x43897d=_0x43897d-0xc8;const _0x54d281=_0x54d2();let _0x2008f3=_0x54d281[_0x43897d];if(_0x2008['izCRPf']===undefined){var _0x48cdb5=function(_0x4a4290){const _0x35e03b='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x22e80f='',_0x43a5c3='';for(let _0x49824c=0x0,_0x2a2b4d,_0x33c172,_0x14b260=0x0;_0x33c172=_0x4a4290['charAt'](_0x14b260++);~_0x33c172&&(_0x2a2b4d=_0x49824c%0x4?_0x2a2b4d*0x40+_0x33c172:_0x33c172,_0x49824c++%0x4)?_0x22e80f+=String['fromCharCode'](0xff&_0x2a2b4d>>(-0x2*_0x49824c&0x6)):0x0){_0x33c172=_0x35e03b['indexOf'](_0x33c172);}for(let _0x2223ca=0x0,_0x312278=_0x22e80f['length'];_0x2223ca<_0x312278;_0x2223ca++){_0x43a5c3+='%'+('00'+_0x22e80f['charCodeAt'](_0x2223ca)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x43a5c3);};_0x2008['iIbHFf']=_0x48cdb5,_0x2008['faSaBQ']={},_0x2008['izCRPf']=!![];}const _0xa5421f=_0x54d281[0x0],_0x53d555=_0x43897d+_0xa5421f,_0xa8976=_0x2008['faSaBQ'][_0x53d555];return!_0xa8976?(_0x2008f3=_0x2008['iIbHFf'](_0x2008f3),_0x2008['faSaBQ'][_0x53d555]=_0x2008f3):_0x2008f3=_0xa8976,_0x2008f3;}const REQUESTS_TEXT_FIELDS=[_0x4e3d16(0xe0),_0x4e3d16(0x256),_0x4e3d16(0x2e8),_0x4e3d16(0x2ba),_0x4e3d16(0x38e),'uuid'];function spanTextClause(_0x5b4470,_0x180a92){const _0x10326c=_0x4e3d16,_0x4f4c20={'IKKYU':_0x10326c(0xd2),'LTKDG':function(_0x3062a0,_0x4040c8){return _0x3062a0(_0x4040c8);},'OdKfJ':'traceId.keyword','iMiAe':_0x10326c(0x23b),'lyZyL':function(_0x3edf61,_0x2a419f){return _0x3edf61(_0x2a419f);},'svzud':_0x10326c(0xe4),'NAuDV':_0x10326c(0x2e2),'TtfvE':function(_0x331154,_0x25acf9){return _0x331154(_0x25acf9);},'tCuSX':_0x10326c(0x1db)},_0x1a7a3f=_0x8dd01f=>({'wildcard':{[_0x8dd01f]:{'value':'*'+_0x5b4470+'*','case_insensitive':!![]}}});return{'bool':{'should':[_0x180a92?{'match_phrase':{'name':_0x5b4470}}:{'match':{'name':{'query':_0x5b4470,'boost':0x3}}},_0x1a7a3f(_0x4f4c20[_0x10326c(0x113)]),_0x4f4c20[_0x10326c(0x2b5)](_0x1a7a3f,_0x4f4c20['OdKfJ']),_0x1a7a3f(_0x10326c(0x3a3)),_0x4f4c20[_0x10326c(0x2b5)](_0x1a7a3f,_0x4f4c20['iMiAe']),_0x4f4c20[_0x10326c(0x2b9)](_0x1a7a3f,_0x10326c(0x1a9)),_0x4f4c20['LTKDG'](_0x1a7a3f,_0x10326c(0x2cd)),_0x4f4c20[_0x10326c(0x2b5)](_0x1a7a3f,_0x4f4c20['svzud']),_0x4f4c20['LTKDG'](_0x1a7a3f,_0x4f4c20['NAuDV']),_0x4f4c20['TtfvE'](_0x1a7a3f,_0x4f4c20[_0x10326c(0x271)])],'minimum_should_match':0x1}};}function leafToOpenSearch(_0x101550,_0x5b00c0){const _0xf88875=_0x4e3d16,_0x402048={'SLONm':function(_0x5f1c40,_0x427445){return _0x5f1c40===_0x427445;},'sATms':'phrase','uInBI':'malformed','ZXoeP':_0xf88875(0x298),'jmaAf':function(_0x32b25a,_0x34cbae){return _0x32b25a>_0x34cbae;},'rTfcf':_0xf88875(0x326),'zbWBi':function(_0x5626db,_0x10d572){return _0x5626db>=_0x10d572;},'eOBYY':function(_0x1f43fa,_0x567a4f){return _0x1f43fa===_0x567a4f;},'cxeag':function(_0x2c2186,_0x15d763){return _0x2c2186<_0x15d763;},'TBcAE':function(_0x5c9fa3,_0x3165c9){return _0x5c9fa3<=_0x3165c9;},'YkroL':_0xf88875(0x2db),'zcwck':function(_0xb556c2,_0x591aca){return _0xb556c2===_0x591aca;},'iyuYC':_0xf88875(0x29e),'bdmJZ':'thBLZ','GFrMc':function(_0x12e483,_0x995cf9){return _0x12e483===_0x995cf9;},'XIcBA':_0xf88875(0x3c5),'aOiEP':'spans','uTXnj':function(_0x16db25,_0x43348c){return _0x16db25===_0x43348c;},'PZZVM':function(_0xff4fd,_0x270de1,_0x41ea99){return _0xff4fd(_0x270de1,_0x41ea99);},'eHznY':function(_0xe1b9a5,_0x366bc7){return _0xe1b9a5===_0x366bc7;},'tLlvN':_0xf88875(0x315),'oRcZA':function(_0x2ffad3,_0x3426f9){return _0x2ffad3(_0x3426f9);},'XTuhP':_0xf88875(0x159),'OTeUF':_0xf88875(0x38c),'zLnwR':_0xf88875(0xf1),'GWbXW':function(_0x3722da,_0x33705a){return _0x3722da===_0x33705a;},'FvGrY':function(_0x5bda85,_0x3f5844,_0x6665ac){return _0x5bda85(_0x3f5844,_0x6665ac);},'XcEvc':_0xf88875(0x180),'FnsUU':function(_0x3c707d,_0x50cee8){return _0x3c707d===_0x50cee8;},'THoVm':_0xf88875(0x1a8),'dCzKd':_0xf88875(0x36e),'PbpxG':function(_0x241fc8,_0x4d9778){return _0x241fc8!==_0x4d9778;},'zvZzK':_0xf88875(0x2cf)};if(_0x402048[_0xf88875(0x366)](_0x101550['kind'],_0x402048[_0xf88875(0x1c6)])||_0x101550['kind']===_0x402048[_0xf88875(0x174)]){if(_0x402048[_0xf88875(0x245)](_0x402048[_0xf88875(0x10d)],_0x402048[_0xf88875(0x2f3)]))_0x5e0471+=_0x46007a[_0x272790],_0x4e7a1b++;else{const _0x16d1f3=_0x402048[_0xf88875(0x149)](_0x101550[_0xf88875(0x1a7)],_0x402048[_0xf88875(0x1c6)]);if(_0x402048[_0xf88875(0x245)](_0x5b00c0['name'],'requests'))return{'multi_match':{'query':_0x101550[_0xf88875(0xe8)],'fields':REQUESTS_TEXT_FIELDS,'type':_0x16d1f3?_0x402048[_0xf88875(0x1c6)]:_0x402048[_0xf88875(0x1cd)]}};if(_0x402048[_0xf88875(0x245)](_0x5b00c0[_0xf88875(0x206)],_0x402048[_0xf88875(0x376)])||_0x402048[_0xf88875(0x398)](_0x5b00c0[_0xf88875(0x206)],_0xf88875(0x309)))return _0x402048[_0xf88875(0x286)](spanTextClause,_0x101550['value'],_0x16d1f3);return _0x16d1f3?{'match_phrase':{'message':_0x101550[_0xf88875(0xe8)]}}:{'match':{'message':_0x101550[_0xf88875(0xe8)]}};}}if(_0x402048[_0xf88875(0x280)](_0x101550[_0xf88875(0x1a7)],_0x402048[_0xf88875(0x1a5)]))return null;if(_0x101550[_0xf88875(0x1a7)]===_0xf88875(0x1a8))return null;if(_0x101550[_0xf88875(0x298)]&&_0x402048[_0xf88875(0x35b)](isPayloadPath,_0x101550[_0xf88875(0x298)]))return null;const _0x324257=_0x5b00c0['info'](_0x101550['field'])||{},_0x16826f=_0x378b01=>_0x324257['upper']?String(_0x378b01)[_0xf88875(0x12a)]():_0x378b01;if(_0x101550[_0xf88875(0x1a7)]===_0x402048[_0xf88875(0xce)])return{'exists':{'field':_0x324257[_0xf88875(0x32e)]||_0x101550[_0xf88875(0x298)]}};if(_0x402048[_0xf88875(0x149)](_0x101550[_0xf88875(0x1a7)],'in')){const _0x56d396=_0x402048[_0xf88875(0x280)](_0x324257[_0xf88875(0x2f0)],_0x402048['OTeUF'])?_0x101550[_0xf88875(0x364)][_0xf88875(0x37b)](_0x38f9c1=>toNumberOrThrow(_0x101550[_0xf88875(0x298)],_0x38f9c1)):_0x101550[_0xf88875(0x364)][_0xf88875(0x37b)](_0x16826f);return{'terms':{[_0x324257[_0xf88875(0x2aa)]]:_0x56d396}};}switch(_0x101550[_0xf88875(0x37d)]){case'eq':if(_0x324257[_0xf88875(0x2f0)]===_0x402048['zLnwR'])return{'match':{[_0x324257[_0xf88875(0x2aa)]]:_0x101550[_0xf88875(0xe8)]}};if(_0x324257[_0xf88875(0x2f0)]===_0x402048[_0xf88875(0x156)])return{'term':{[_0x324257[_0xf88875(0x2aa)]]:_0x402048[_0xf88875(0x286)](toNumberOrThrow,_0x101550[_0xf88875(0x298)],_0x101550[_0xf88875(0xe8)])}};if(_0x402048[_0xf88875(0x140)](_0x324257[_0xf88875(0x2f0)],_0xf88875(0xe9)))return{'term':{[_0x324257['path']]:_0x402048[_0xf88875(0x140)](_0x402048[_0xf88875(0x35b)](String,_0x101550[_0xf88875(0xe8)])[_0xf88875(0x284)](),_0xf88875(0x17c))}};return{'term':{[_0x324257['path']]:_0x402048['oRcZA'](_0x16826f,_0x101550['value'])}};case'ne':{const _0x283f17=_0x402048[_0xf88875(0x158)](leafToOpenSearch,{..._0x101550,'cmp':'eq'},_0x5b00c0);return{'bool':{'must_not':[_0x283f17]}};}case'gt':case _0x402048[_0xf88875(0x1b5)]:case'lt':case _0x402048[_0xf88875(0x26f)]:{const _0x2fc3d7=_0x402048['FnsUU'](_0x324257[_0xf88875(0x2f0)],_0xf88875(0x38c))?toNumberOrThrow(_0x101550['field'],_0x101550['value']):_0x101550[_0xf88875(0xe8)];return{'range':{[_0x324257[_0xf88875(0x2aa)]]:{[_0x101550[_0xf88875(0x37d)]]:_0x2fc3d7}}};}case _0x402048[_0xf88875(0x195)]:{if(_0x402048['eHznY'](_0xf88875(0x2d5),_0x402048['dCzKd'])){let _0x62e04c=_0x5681d6[_0xf88875(0xe8)];if(_0x402048[_0xf88875(0xcc)](_0x62e04c,'')){const _0x2e94dd=_0x26743d[_0x5f5aed];if(_0x2e94dd&&_0x402048[_0xf88875(0xcc)](_0x2e94dd[_0xf88875(0x2f0)],_0x402048[_0xf88875(0x1c6)]))_0x62e04c=_0x2e94dd[_0xf88875(0xe8)],_0x1b21cb++;else throw new _0x2b926a(_0x402048[_0xf88875(0x375)],_0xf88875(0x16e)+_0x4cea10['field']+_0x553ab9['op']+'\x22');}else _0x62e04c=_0xeef694(_0x62e04c);return{'kind':_0x402048[_0xf88875(0x249)],'field':_0x2e8c5f[_0xf88875(0x298)],'cmp':_0x73981b[_0xf88875(0x37d)],'value':_0x62e04c};}else{const _0x22b772=_0x14d4f8=>({'wildcard':{[_0x14d4f8]:{'value':'*'+_0x101550[_0xf88875(0xe8)]+'*','case_insensitive':!![]}}});if(_0x402048[_0xf88875(0xcc)](_0x324257[_0xf88875(0x2f0)],_0xf88875(0xf1))){if(_0x402048[_0xf88875(0x3cc)](_0x402048['zvZzK'],_0xf88875(0x2cf))){const _0x3d15fe=_0x3b884a(_0x41de2c),_0x3da76a=_0x2c3684(_0xf0fc70[_0xf88875(0xe8)]);if(!_0x2442a7[_0xf88875(0x34b)](_0x3d15fe)||!_0x2da975[_0xf88875(0x34b)](_0x3da76a))return![];return _0x402048[_0xf88875(0xcc)](_0x3ce6f5[_0xf88875(0x37d)],'gt')?_0x402048[_0xf88875(0x277)](_0x3d15fe,_0x3da76a):_0x402048[_0xf88875(0xcc)](_0x2b29b6[_0xf88875(0x37d)],_0x402048[_0xf88875(0x1b5)])?_0x402048[_0xf88875(0x39e)](_0x3d15fe,_0x3da76a):_0x402048['eOBYY'](_0x3683d4[_0xf88875(0x37d)],'lt')?_0x402048[_0xf88875(0x11a)](_0x3d15fe,_0x3da76a):_0x402048[_0xf88875(0x15c)](_0x3d15fe,_0x3da76a);}else return{'bool':{'should':[_0x22b772(_0x324257[_0xf88875(0x2e6)]),{'match_phrase':{[_0x324257[_0xf88875(0x2aa)]]:_0x101550[_0xf88875(0xe8)]}}],'minimum_should_match':0x1}};}return _0x22b772(_0x324257['path']);}}default:throw new DslError(_0xf88875(0x2c9),_0xf88875(0x2d6)+_0x101550['cmp']);}}function astToOpenSearch(_0x46e59b,_0x429d85){const _0x50032b=_0x4e3d16,_0x7bb0b9={'rAKnY':_0x50032b(0x298),'XFvfu':function(_0x55c9eb,_0x50fe4b){return _0x55c9eb===_0x50fe4b;},'CUvKz':function(_0x4ba4a2,_0x29011c){return _0x4ba4a2===_0x29011c;},'ThzKK':function(_0x4547a9,_0x54514){return _0x4547a9===_0x54514;},'MyGYL':_0x50032b(0xd7),'ntwVX':function(_0x3645ca,_0x3c368d){return _0x3645ca===_0x3c368d;},'UmHRg':_0x50032b(0x395),'cFqBU':function(_0x21269d,_0x494d1c,_0x1d369e){return _0x21269d(_0x494d1c,_0x1d369e);},'TnRNr':function(_0x4f1873,_0x53dfe7,_0x34d670){return _0x4f1873(_0x53dfe7,_0x34d670);}};if(!_0x46e59b)return null;if(_0x7bb0b9[_0x50032b(0x391)](_0x46e59b['op'],_0x50032b(0xef))){const _0x502fea=_0x46e59b[_0x50032b(0x2e5)][_0x50032b(0x37b)](_0x25e112=>astToOpenSearch(_0x25e112,_0x429d85))['filter'](Boolean);if(_0x7bb0b9['CUvKz'](_0x502fea[_0x50032b(0x25f)],0x0))return null;return _0x7bb0b9[_0x50032b(0x39d)](_0x502fea[_0x50032b(0x25f)],0x1)?_0x502fea[0x0]:{'bool':{'filter':_0x502fea}};}if(_0x7bb0b9[_0x50032b(0x39d)](_0x46e59b['op'],'or')){if(_0x7bb0b9[_0x50032b(0x1ad)]!==_0x7bb0b9[_0x50032b(0x1ad)])throw new _0x46e732(_0x7bb0b9['rAKnY'],_0x50032b(0x3b3)+_0x41c246,{'field':_0x160b49});else{const _0x4525db=_0x46e59b[_0x50032b(0x2e5)][_0x50032b(0x37b)](_0x1e87fa=>astToOpenSearch(_0x1e87fa,_0x429d85))['filter'](Boolean);if(_0x7bb0b9[_0x50032b(0x121)](_0x4525db[_0x50032b(0x25f)],0x0))return null;return{'bool':{'should':_0x4525db,'minimum_should_match':0x1}};}}if(_0x7bb0b9[_0x50032b(0x39d)](_0x46e59b['op'],_0x7bb0b9[_0x50032b(0x344)])){const _0xd74e02=_0x7bb0b9[_0x50032b(0xd9)](astToOpenSearch,_0x46e59b[_0x50032b(0x250)],_0x429d85);return _0xd74e02?{'bool':{'must_not':[_0xd74e02]}}:null;}return _0x7bb0b9['TnRNr'](leafToOpenSearch,_0x46e59b,_0x429d85);}function _0x54d2(){const _0x3327f6=['lMTLExDVCMq','EfnqEuy','wvbgChq','ode4nJzhA3n5CgO','Bg9lvLC','Cgf0Aa','v1rrqKi','rhjzvNC','D0nUvw4','txrzsNG','ywfet3O','qvH0yum','z1nHtxO','BCoHEgLTBYbKzsa','ChDrtM8','C29ZDNq','tfrlreC','wM9yvvK','A2v5D29Yza','sw1wv3i','BhLAEuW','CMvXDwvZDc5IB2r5','zenszvq','twvjshi','AgrisLy','BwLU','yM9KEs4','y2fSy3vSyxrL','sxn6uxq','sgPptNK','BKzvthq','ug1yEM4','BuH5twe','reH4u3e','D2Pyq28','q2H2tva','BwfSzM9YBwvK','nen2uwTQzW','Aw5MBW','Bvvsq28','zMXVD0LKlMTLExDVCMq','mZHntNHpEu8','wwrJr0G','zxHJzxb0Aw9UlNr5Cgu','uKzhzxy','sxHjBuq','Aw5KzxHpzG','B3jKzxi','EfbvAeW','B3bLCMfKB3iGzgvZy29UAgvJAwrVoIa','vhfhAvq','AwTLC2y','C29YDcbPBNBdOwXPzg86ia','kc4UlIK','DgvYBq','DNDzt2e','DgXQrxO','ufrryLG','yNj2wha','uNDuD2O','sg1zseC','z2f0zxDHEuLKlMTLExDVCMq','C2vYDMLJzs5Uyw1L','uuLvAfG','y2HPBgrYzw4','A2v5D29YzfbHDgG','tu5JquK','CMvXDwvZDc51CMWUCgf0Aa','A2v5','Dg9Rzw4GAw5LC3bLCMfKBYbUBYb3AgvYztOGiG','C29YDa','icH1C2uGyxnJFgrLC2mP','t0vNzKi','s1DKzfC','C2XPy2u','DhLWzq','yNfewe0','ywXSB3DszwDLEa','yMrTsLO','zKXNuhm','u2fdr2S','EuTRA3i','rxzHuuW','Ag9ZDa','CMvZCg9UC2uUCMvZDwX0lMTLExDVCMq','r0rXB08','twjnq1a','tgj1sLa','Cuz1B0K','yK5sAuq','tKHXALK','zgvZyW','A3bWwwK','wMDNDKO','D2XyC1y','mtmXnJi1mdbLCNLdsMq','D1zwANu','Cuz3AhC','CMvKDwnL','tgTIuuS','DhjHy2vZ','v3vZsxa','C2v0','BMDlDK4','r3HxCgm','zwXHChnLze1Z','CMLTENi','uuvnsw0','yuPAr3q','zw50CMLLCW','q1P0shy','kf58w15blvPHlxOWltLFxsK','CMvNzxG','C2Hbzwu','DNjivuK','y29UDgfPBNmOlI4UksbZW7mGW6KGC3vWB3j0ywrVigvTignSW6f1C3vSyxmGqu5eigrLihrVCg8GkhnLBsbpuI9ot1qP','DLDVwfm','yxnJ','Ag1YD04','yxzN','z1rWy3G','qu5e','AxDeAwm','z0Lwvfa','D2vmuwe','A3zUlG','icH1C2uGBg9NC3XYzxf1zxn0C3XZCgfUC3X0CMfJzxmP','DgHpAMu','CNfNt0O','z3rL','qK5wz3m','CgfYC2u','sgvbuwK','yK9RsvO','yvjIuxa','y2XHDxnLCW','DgLTzxjZlMzPBMLZAgvKlMf0','zxHPC3rZugf0Aa','wgrvCgy','yxnZAwDU','qwDhqwi','ruH1qNO','yxvoyuy','BufPy2q','Aw5KzxG','vuXdthu','qKjOD2e','yxPlt2W','tLDfr0i','ywDNugf0Aa','DMfSB3iGAw52W6fSAwrVig5HigXPC3rHigLUkc4UlIK','C2XNB08','Ahrguwe','zeP2CwO','sMLyBe8','A3jVCM8','vK96vKS','AMndsuq','y2XPzw50swq','vw1iuMC','D05vwNe','tK5uwge','twDzAvu','CxznCu0','zhbKveq','yNL0zxm','AxngAw5PDgu','u1rrvuC','s1zsyvC','u2DXsKq','Bwf4','CMfUz2uGkd4SidWPig7dO28GC3vWB3j0ywrVihbHCMeG','AwfcyLe','BufPA1K','qxfeB1i','tvHZAM4','vM1Iq0G','zMniyxC','zxjYB3juExbL','C3rHCNq','r3HwCgi','ihjLz2v4zxmGBM8GD2HLCMu','B1jJwKe','AM9PyNO','uNbKEK0','EhnTEwm','zMXVD0LK','CMjwy3C','ugzRvvu','C3vI','rgvuzvm','DMfSDwvZ','AM5Rz3m','zu9cwvK','r0DeCvu','z3Dqvfe','zxHJzxb0Aw9UlM1LC3nHz2u','m3WWFdr8mNW1Fde','ChjVDg90ExbL','vKrYr2W','vKLjDhC','r21zEgi','z2DKCvy','ChvZAa','vwDlzeq','v0nyyLO','rNr4Ave','zKD4y1e','DuLUqKK','yu9Prva','CMDJwfq','DgHYzwfK','z2f0zxDHEuLK','Bwv0CMLJt2S','BwfW','DxjS','y21W','wMDhEuK','Dxv6yvC','sM9drMG','DgvYBxm','zMXVB3i','CgHYyxnL','qxjAD2W','sfvjD2q','s0fAANm','DhzXwfG','vgXnwvG','DxvPza','Ee1Kt2m','ndyZmdG2ovfiD3ruzG','BNvTzxjPyW','zxHPC3rZkgnHBxbVksbTywXMB3jTywrV','CMvZCg9UC2uUCMvZDwX0','BCoPDhjPy2eGAw52W6fSAwrHoIa','yMf4z3u','wez2zNu','ruT5zM4','ugn1A3G','xhmQxcG','BM90','Bwv0CMLJ','A0DNs0O','DvryBMO','C3bSAxq','tu5YuuC','qNv1Axi','D05Auge','vgH6s0S','EMjxqMK','DeDdrMO','AMLZwMG','BwvZC2fNzs5RzxL3B3jK','z3jVDxbIEq','y29YCMvSyxrPB25jzc5RzxL3B3jK','B2PjywS','AfHnELm','mZe0mZKWm3bTAwDyEa','rhnSrxjYB3i','zg9ft2W','AejvuLe','mJa5mJeYodbUBunyBeG','yKHJDMS','CNzfqKe','CwrgvMC','tg11tg8','sMjuuNa','EezKu2K','D2HLCMu','ExjhC2O','y2fTCg8GBSoJBYbWzxjTAxrPzg8GBMeGBCoPDhjPy2e6ia','ChDlr3u','C3bHBNm','uw1Vsg8','rhzoEuy','te1SEM0','BLzVAxC','qLLPtwW','y2fTCg8GBSoJBYbWzxjTAxrPzg8Gzw0Gz3jVDxbIEtOG','BK91Ahu','yxbWtMfTzq','rg1LDLy','txjYuxu','Cw1zCKO','qwPXEgG','y3jAqLK','zuruuLG','CxDkqui','yMvZDf9MAwvSzhm','zg9Jx2nVDw50','zxHWCG','AgHAthm','C1jRCMO','wgP6sKu','q293Agm','ugjWEeC','DhjPBq','DLjpzKy','u0PWqui','z3jVDxbIEsGUlI4PihzHEMLV','EhzYzvm','u3btuuW','y2fSBa','C291CMnL','BK9AEgm','AgHoDLi','B0vLsKW','EKj2yKO','iokaLcb1C2uGy2fTCg9Zig51BCoPCMLJB3m','u0XptM0','Cw1Ive4','wfr1Afa','DgLTzuzPzwXK','D1vfrxa','wuDQseG','BMfTzs5RzxL3B3jK','uM1SCMy','vK1owKW','u21Msee','Cgn4tg4','EwLcr2C','CMvZCg9UC2vuAw1L','y0zXqLu','yMfYCMeGzguGCMvNzxGGBSoJBYbMzwnOywrHig5VihDOzxjL','tNnRwLm','yu5fsui','wMfluu0','q3bOC3G','Ahr0Cfn0yxr1C0nVzgu','C2vYDMLJzs5Uyw1LxJi','AfHJuNO','zxHWB3j0CW','DLHZu1a','C2vYDMLJzs5RzxL3B3jK','t1bXwMi','C3rHuM8','ELbxyxe','DMfSDwu','yM9VBa','CgfYW6PUDgvZzsbMzwnOyw5KBYbZzw0GB3bLCMfUzg8','CMvZCg9UC2uU','rgv1qwK','te5tBeG','DhPjrg4','yw5K','quLdsLq','Dgv4Da','ndy0mtvuDhbbwe4','qNz2ugC','AKPvqMm','DhjHy2vjza','ywvQCvK','DeTyt3e','A3rbB0y','DLPuy08','otuUma','rKrsuei','vKLhyK0','CMvXDwvZDhm','zLLqBvi','x3nVDxjJzq','C2vYDMLJzs5Uyw1LlMTLExDVCMq','zw5xrMC','zMjYAKS','svPLze8','y29YCMvSyxrPB25jza','y3vqzwy','z0DArMq','BMXNChi','y1Lgq1O','sM9rqLm','AuHkuLa','uu5NCgW','q1jou0C','AxL1wum','DLfHAxy','BwvZC2fNzq','y1nuzuK','u1v6wMK','zNLJwfe','suTlwvu','DfDNqwC','CMvNzxGGC8oZimoPihn1Cg9YDgfKysbLBsbJBmoHDxn1BgfZieforcbKzsb0B3bVicHZzw0Gt1iVtK9ukq','C29Tzq','CMvNzxGGBSoJBYddQsbZDxbVCNrHzgeGBM8Gzgf0yxnLDca','AuHTBeW','sxvzsNK','y3HLywC','tLv0Dfm','A0D6tw4','DhjHy2vjzc5RzxL3B3jK','C1zbquK','CgfYW6PUDgvZzxmGBSoJBYbIywXHBMnLywrVCYbLBsa','DwDqDxG','BNr3vLG','sLzKANC','EvDpD1e','ANnhr08','zhvYyxrPB25nCW','Bg9NCW','zKHeuvO','q1LKu2K','u1rmAwe','Dg9vChbLCKnHC2u','yMTPqvK','t3jXuw8','BLDXsLi','ANDtv2u','CwjICee','zNrJqve','z0L4wvy','vuLNyum','se9NBfa','q3bZyLm','zxvPrfu','CMvZCg9UC2vtAxPL','thniwMW','y2fTCg8GBSoJBYbWzxjTAxrPzg86ia','CdK5','tfzyy1e','D2XLBfu','ELHtuuS','C2vYDMLJzq','CxvLCNKGDMf6Awe','uKjMB0y','r1DIwfC','qLzfrLG','y1jWC2S','Aufhuey','C3bOB2G','zgf0zq','tNHrBNq','CgfYzw50u3bHBKLK','tgjrrxe','r0zYtwm','y29UDmoPBsaOFIKGBSoJBYbZzsbHCgXPy2eGysbJyw1WBYbUDw3dQxjPy28VDgvTCg86ia','vNfvwwy','ysbXDwvYEsbKzxzLignVBwxdP2fYignVBsb3AgvYzsGUlI4P','txPkDgC','C3rYAw5N','zevLvg8','BvHLC1y','shvIswi','r3ruCfy','BMn6sMG','ANrctKO','CMzKvu0','t1rLvuy','quzbDgu','rNzhCLK','zxHPC3rZ','AefxA1y','qwLrrwO','vejJquu','r3ner1O','qu14Ae8','ALz2Eum','wurWvvC','r0vkA3i','txDyte4','zLDrDgG','rw1Rwg0','Dxvfrey','u09Jufa','zw5KC1DPDgG','v1Ljww4','twHoB1q','tuXttNO','uKzzzeW','y29UDgfPBNmOlI4UksbZW7mGW6KGC3vWB3j0ywrVig5VigrHDgfZzxqGDhjHy2vZicHYzwnLyMLKBZOG','vhb0yNq','DMfSB3iGyxvZzw50zsbLBsaI','C3vT','BezRwvq','z1nhEeu','qNzfyKy','vuvmDMi','wwTYB0W','t09qvKK','AgjXwuG','teT1r0W','DKfeBKu','AvPbueu','v0zcA2K','se1PExe','Dhj1zq','B3rrAw8','yM9KEq','z1zuvgC','BhrL','CdK1','CMvXDwvZDc51CMWUCgf0Ac5RzxL3B3jK','De9Ps0C','BvHXyxy','CMfUz2vHyMXL','CKDMq2m','vw5Zv0O','ANfZrwC','sLLttfG','zxjYB3jdB2rL','rhj6EM4','AwzKtNm','zxHLyW','yxbgBKu','q1PLDg4','EgzSweK','rxvdt3m','rKPODe8','DLDLAui','zhvYyxrPB24','veHVvM0','zhrxv2S','mZeZnJG5ouXosev4wq','DxvPzc5RzxL3B3jK','tujKtNa','y05dz3C','twnsuKG','DLnYuuG','rNr5r0S','v2PxBfe','Ew1sr2O','D2veq3m','tfbtAuG','r0v6wMO','AgfZrxjYB3i','ywrK','DeXSDK4','CMvXDwvZDc5ZB2nRzxqUCMvTB3rLqwrKCMvZCY5RzxL3B3jK','A2LUza','y29UDgfPBNm','C3bHBKLKlMTLExDVCMq','EML3C0S','Bwv0Ag9K','DuzHsKq','txLhwuW','vuLYCwW','sfHhvKm','CNjcteG','u2fiCe0','y2vPBa','B2DjqKq','tvnrBK8','CLrMy2y','CMvZCg9UC2u','yw5Auvq','vuXRv3O','Bgv2zwW','BuDREMW','vhjnte8','AMn0DNK','BePZANa','vuj6s3K','vK52Chu','tLfUDMi','yMPxze0','r0rvzfy','uMrzCNq','AgXVAKy','Bgf0zw5JEu1Z','C0fuBxm','BMH2yKe','rvHZvKW','t1LPs0y','t2XqC0y','Cg1oELC','z3jVDxbIEu9R','weLJqKe','t1P3DuO','rLj0Du0','C3rHDhvZq29Kzq','B2jQzwn0','y29UDgvUDeXLBMD0Aa','z2v0','vffgD1y','zw52AxjVBM1LBNq','zvH0Eu4','odCWANv3twXx','yLDOAee','zeLlDM4','A1nuu0W','y2XPzw50swqUA2v5D29Yza','EMXhv3O','yu1bzvK','mJrbswzzz2e','igfJzwL0ysbHCgvUyxmGCMfUz2vZicG+lca+psWGpcWGpd0P','vw1KBxe','zM9YrwfJAa','Ahr0Cfn0yxr1CW','D0rhy1i','BgLZDgeGAw4OlI4Uksb2yxPPyq','zxvxuMu','t3Hsu1q','qNjLu28','C3jKu2K','BgLZDgeGAw4OlI4UksbUW6nVigzLy2HHzge','serSExO','Dw9XBK8','Ag1nDwW','vMX5zvG','zw52','DgLTzxn0yw1W','C2LuDMm','CMvXDwvZDc5ZB2nRzxqUCMvTB3rLqwrKCMvZCW','Dg9VAW','zevNy1a','DgLTzxjZlMr1CMf0Aw9U','ENnhueu','DuvKEKG','z2LuDMi','Bg9Nz2vY','ChLUv2C','wKDmDeK','uLvsBxC','AfrMDMW','C3bQB2y','sMDkBvi','s3HvtMK','CMvXDwvZDc5TzxrOB2qUA2v5D29Yza','EuHpq3G','uwvWweC','ELPjrvq','AgfZt3DUuhjVCgvYDhK','otKUma','BMfTzq','zLv4CuK','BgfZDeLUzgv4','wefkCNK','B09XBvy','C05YBhK','zNvUW6FdO28GzguGBCoPDhjPy2eGzgvZy29UAgvJAwrHoIa','Bw9jr08','sKP1DeS','r1DzA0C','Dg9R','y3DyzMO','A2LUzc5RzxL3B3jK','rKzUCNu','t3LjC3m','z2f0zxDHEvnLCNzPy2u','txrqAu4','DM1hu0G','yK1zweK','reP0CLG','DfPoEMe','BuXNwe4','AeXxwKG','D0HmBK8','D01UsNO','zxnWzxjHzg8GiG','y291BNq','BMTuANe','B293qvO','tgrqswe','sKvKz08','Bg1OuKq','uvzlDuG','zMXHz3m','Du5qsxm','AxLoyNq','ywDNCW','tgTTCg0','zK1REhC','r1jftg8','qhrPBwvZDgfTCa','zNHoA1G','sNzXDgq','sgPhsMe','CMvWBgfJzq','z3jVDxbZ','Dg9Rzw4GAw5LC3bLCMfKBYbHCmoZCYb3AgvYzsGUlI4PoIaI','yNvJA2v0CW','zMLSDgvY','zwH2uwS','shrPzve','B0noCvy','C1DoEeq','CMvXDwvZDeLKlMTLExDVCMq','Euf5rKe','AKH5y1m','B3zWvMC','zxHJzxb0Aw9UvhLWzq','D1PoA1G','zfDdCKy','tuLoq2i','y29Kzq','CxLmy24','EMn3y2S','ywD0r3y','wu9lt2q','uxHnr0C','wLHVzva','ufLrt0O','vuX0veG','zgf0yxnLDcbKzxnJB25OzwnPzg86ia','BNfZC0q','ufb5uw4','A25VD24','y2HPBgq','r1v5B3G','Ahr0Ce1LDgHVza','DgvZDa','t3j2qNG','uMTVwuu','C2vYDMLJzs5KzxnJCMLWDgLVBG','D29Yza','CLzyCgm','q2HICei','uMTqv3m','zgjqv0e','CMvXDwvZDeLK','zxH0CMfJDgvK','Cg1pA0C','BgvUz3rO','u2LHvui','Cg9Xzg8','D2nZEeG','wxzkDuq','zw5K','DNfOv0S','CMvZCg9UC2uUC3rHDhvZq29Kzq','AefAvNe','q0Xitvq','Aw5JBhvKzxm','A3bSvMO','zgf0yxnLDa','zM9bAuq','suXmrwy','qwXuseu','wgnfDMm','zgLcy0C','Den1u1G','BuD3EgK','ufb3vhy','z29oAwy','r2zcz1u','Awr4','AM1Hqwy','yK1rB2G','v1znt1q','Dgzku0e','EuPzuM4','rvzervC','EvLpvLa','whbmDMm','uMnVvvi','zuH6BLK','r29uA24','wLDrAey','wKLVD20','Dg9mB3DLCKnHC2u','D1HXsK8','ufPAvK0','te5bAfK','y3bKCMq','yMrVA24','uKP6z24','kd88','wNnArxm','CgfYzw50u3bHBKLKlMTLExDVCMq','t3j5zem','DLbtz0q','mZneu2HfzMi','v1rwANm','zNjVBq','DSoTCMD1BgeGzM9YysbKzsb1BweGBgLZDgeGAw4OlI4Ukq','vvHLwxu','ufP2wvm','AgfZ','C2vYDMLJzu5HBwu','zMLLBgq','q2jOthi','CvPNzgm','zgnWD1K','AMnZvNa','wLD6DLG','ywLcy3K','q0L1s1O','yNfrDfC','q0TTwuW','DwTkDuq','y2HJBva','D3L0B3i'];_0x54d2=function(){return _0x3327f6;};return _0x54d2();}function extractContains(_0x99e0f5){const _0x3014d7=_0x4e3d16,_0x5e25c1={'SySgt':_0x3014d7(0x2c9),'LVXcQ':function(_0x844faf,_0x34c3a5,_0x5d4b20){return _0x844faf(_0x34c3a5,_0x5d4b20);},'wZNkX':function(_0x432e2a,_0x25b712){return _0x432e2a===_0x25b712;},'agtGv':_0x3014d7(0x1f3),'jJUBc':_0x3014d7(0xef),'gSaMz':'LdvzU','QIUhX':function(_0x286d88,_0x2e3902){return _0x286d88===_0x2e3902;},'kGgKJ':function(_0x1caefd,_0x19ed59){return _0x1caefd(_0x19ed59);}},_0x104ad6=[],_0x1a20de=_0x461b39=>{const _0x239bce=_0x3014d7,_0x2433d9={'pynWg':function(_0xa4d6be,_0x4ab33e,_0x25b723){const _0x4d9e29=_0x2008;return _0x5e25c1[_0x4d9e29(0x13a)](_0xa4d6be,_0x4ab33e,_0x25b723);}};if(_0x5e25c1[_0x239bce(0x240)](_0x5e25c1[_0x239bce(0x246)],_0x5e25c1[_0x239bce(0x246)])){if(!_0x461b39)return null;if(_0x5e25c1[_0x239bce(0x240)](_0x461b39[_0x239bce(0x1a7)],_0x239bce(0x1a8)))return _0x104ad6[_0x239bce(0x370)](_0x461b39['expr']),null;if(_0x461b39['op']===_0x5e25c1[_0x239bce(0xf4)]){if(_0x5e25c1[_0x239bce(0x240)]('Nwjqd',_0x5e25c1[_0x239bce(0x2b1)]))return _0x2433d9[_0x239bce(0x1f9)](_0x10b4d7,_0x2e3de8[_0x239bce(0xe8)],_0x3c42ed);else{const _0x276369=_0x461b39[_0x239bce(0x2e5)][_0x239bce(0x37b)](_0x1a20de)['filter'](Boolean);if(_0x5e25c1['wZNkX'](_0x276369[_0x239bce(0x25f)],0x0))return null;return _0x5e25c1[_0x239bce(0x2e4)](_0x276369[_0x239bce(0x25f)],0x1)?_0x276369[0x0]:{'op':_0x5e25c1[_0x239bce(0xf4)],'children':_0x276369};}}return _0x461b39;}else throw new _0x3125c3(_0x5e25c1['SySgt'],'contains(...)\x20só\x20é\x20suportado\x20no\x20dataset\x20traces\x20(recebido:\x20'+_0x17d11f[_0x239bce(0x206)]+')');},_0x3b6fa0=_0x5e25c1[_0x3014d7(0x397)](_0x1a20de,_0x99e0f5&&_0x99e0f5[_0x3014d7(0x3b1)]);return{'containsExprs':_0x104ad6,'rootWhere':_0x3b6fa0};}function compileAstFor(_0x50c946,_0x2be898){const _0xd1f8a=_0x4e3d16,_0x144041={'aMAeY':function(_0xe877ed,_0x5363f1,_0x121521){return _0xe877ed(_0x5363f1,_0x121521);},'nqssD':function(_0x424a4e,_0x4df002){return _0x424a4e||_0x4df002;},'XpLvc':_0xd1f8a(0x126)};return _0x144041[_0xd1f8a(0x1dd)](astToOpenSearch,_0x50c946,DATASET_PROFILES[_0x144041[_0xd1f8a(0x24d)](_0x2be898,_0x144041[_0xd1f8a(0x27e)])]);}function compileWhere(_0x3385ed){const _0x2a2c58=_0x4e3d16,_0x3191a4={'dMaKH':_0x2a2c58(0x126)},_0x2e4dbf=DATASET_PROFILES[_0x3385ed&&_0x3385ed['dataset']||_0x3191a4['dMaKH']];return astToOpenSearch(_0x3385ed&&_0x3385ed[_0x2a2c58(0x3b1)],_0x2e4dbf);}function normalizeRegexSource(_0x534a04){const _0x151b09=_0x4e3d16,_0x5ca935={'wHLnO':function(_0x3579c9,_0x818246){return _0x3579c9===_0x818246;},'DeTeS':_0x151b09(0x38c),'dWCrF':_0x151b09(0x145),'IxImD':function(_0x4b213f,_0x8f56c2){return _0x4b213f!==_0x8f56c2;},'nkiLx':_0x151b09(0x339),'vpvRz':_0x151b09(0x193)},_0x412622=[],_0x3167c1=_0x534a04[_0x151b09(0x232)](/\(\?P<([A-Za-z_][A-Za-z0-9_]*)>/g,(_0x3a11f7,_0x5c978e)=>{const _0x31512e=_0x151b09;return _0x412622[_0x31512e(0x370)](_0x5c978e),_0x31512e(0x28b)+_0x5c978e+'>';}),_0x435232=/\(\?<([A-Za-z_][A-Za-z0-9_]*)>/g;let _0x2b4204;while(_0x5ca935[_0x151b09(0x2d2)](_0x2b4204=_0x435232[_0x151b09(0x18d)](_0x3167c1),null)){if(_0x5ca935[_0x151b09(0x21d)](_0x5ca935['nkiLx'],_0x5ca935['vpvRz'])){const _0x26949b=_0x545d06[_0x230e56];return _0x45b1df(_0x26949b&&(_0x5ca935[_0x151b09(0x21d)](_0x26949b['type'],_0x5ca935[_0x151b09(0x363)])||_0x26949b[_0x151b09(0x2f0)]===_0x5ca935[_0x151b09(0x241)]));}else{if(!_0x412622[_0x151b09(0x269)](_0x2b4204[0x1]))_0x412622[_0x151b09(0x370)](_0x2b4204[0x1]);}}return{'jsSource':_0x3167c1,'names':_0x412622};}function compileRegexes(_0x38346e){const _0x65727=_0x4e3d16,_0x4723db={'oEeJL':function(_0x11c249,_0x25e394){return _0x11c249!==_0x25e394;},'vWoXS':_0x65727(0x298),'GUyox':function(_0x41fec1,_0x4a8550){return _0x41fec1!==_0x4a8550;},'GxWpc':_0x65727(0x26c),'IuYJy':_0x65727(0x295),'ZGLtI':_0x65727(0x315),'vrHUI':'regex\x20muito\x20longa','dUTUl':function(_0x304be7,_0x2f7104){return _0x304be7(_0x2f7104);},'pcxLn':'nxNcq','hlojF':_0x65727(0x134),'hmrwN':function(_0x3331d1,_0x14958b){return _0x3331d1===_0x14958b;},'YPFpt':_0x65727(0x1cf)},_0x3ee62e=[],_0x67d9e8=new Set();for(const _0x127a1c of _0x38346e){if(_0x4723db[_0x65727(0x251)](_0x4723db[_0x65727(0x30d)],_0x4723db[_0x65727(0x119)])){if(_0x4723db[_0x65727(0xc9)](_0x127a1c[_0x65727(0x1a7)],_0x4723db[_0x65727(0x1fa)]))continue;if(_0x3ee62e[_0x65727(0x25f)]>=MAX_REGEXES)throw new DslError(_0x4723db[_0x65727(0x1fa)],_0x65727(0x2b2)+MAX_REGEXES+_0x65727(0x35a));if(_0x127a1c[_0x65727(0x3d4)]['length']>MAX_REGEX_LEN)throw new DslError(_0x4723db[_0x65727(0x1fa)],_0x4723db[_0x65727(0x317)]);const {jsSource:_0x5d4c1f,names:_0x202b2d}=_0x4723db['dUTUl'](normalizeRegexSource,_0x127a1c['source']);let _0x5c0448;try{if(_0x4723db[_0x65727(0xd6)]!==_0x4723db[_0x65727(0x1c4)]){const _0xe8596e=(_0x127a1c[_0x65727(0x227)]||'')[_0x65727(0x232)](/[^gimsuy]/g,'');_0x5c0448=new RegExp(_0x5d4c1f,_0xe8596e['includes']('g')?_0xe8596e:_0xe8596e);}else for(const [_0x179e70,_0x178323]of _0x19967e[_0x65727(0x312)](_0x204f11['groups'])){if(_0x4723db['oEeJL'](_0x178323,_0x6e64eb))_0x46882d[_0x179e70]=_0x178323;}}catch(_0x26a9af){if(_0x4723db[_0x65727(0x31b)]('FRtuM',_0x4723db[_0x65727(0x2a7)]))throw new DslError(_0x4723db['ZGLtI'],_0x26a9af[_0x65727(0x10f)],{'detail':_0x127a1c[_0x65727(0x3d4)]});else throw new _0x158b29(_0x4723db[_0x65727(0x319)],'campo\x20não\x20permitido:\x20'+_0x32c57e,{'field':_0x2ba23d});}_0x202b2d[_0x65727(0x1e1)](_0x4a1bab=>_0x67d9e8[_0x65727(0x1a4)](_0x4a1bab)),_0x3ee62e['push']({'regex':_0x5c0448,'names':_0x202b2d});}else{if(_0x4dbe24!==_0x3523d6)_0x517fda[_0xb1ed34]=_0x3d0bcd;}}return{'regexes':_0x3ee62e,'extracted':_0x67d9e8};}function parseCalculate(_0x514e29){const _0x4f3e15=_0x4e3d16,_0x2bd1e3={'htFQa':_0x4f3e15(0x220),'yHOCx':_0x4f3e15(0x396)},_0x38a0bb=_0x514e29[_0x4f3e15(0x3cd)]();if(!_0x38a0bb)return{'type':_0x2bd1e3[_0x4f3e15(0x33d)]};if(/^count$/i['test'](_0x38a0bb))return{'type':'count'};const _0x5f33ad=/^([A-Za-z0-9]+)\s*\(\s*([A-Za-z_][\w.]*)\s*\)$/[_0x4f3e15(0x18d)](_0x38a0bb);if(!_0x5f33ad)throw new DslError(_0x2bd1e3[_0x4f3e15(0x201)],_0x4f3e15(0x38f)+_0x38a0bb,{'detail':_0x38a0bb});const _0x4786e1=_0x5f33ad[0x1][_0x4f3e15(0x284)]();if(!METRIC_FUNCS[_0x4f3e15(0x296)](_0x4786e1))throw new DslError(_0x2bd1e3[_0x4f3e15(0x201)],_0x4f3e15(0x20c)+_0x5f33ad[0x1],{'detail':_0x38a0bb});return{'type':_0x4786e1,'field':_0x5f33ad[0x2]};}function parseQuery(_0x566963,_0x8f4675={}){const _0x48e3cb=_0x4e3d16,_0x28c9d0={'eXtyN':function(_0x2d6fdd,_0x97d332){return _0x2d6fdd===_0x97d332;},'AFAte':_0x48e3cb(0xef),'tGCFj':function(_0x2ca30e,_0x44d268){return _0x2ca30e===_0x44d268;},'RwTwj':function(_0x179e4a,_0x9955ff){return _0x179e4a===_0x9955ff;},'JoCFh':'not','STLia':function(_0x27c5c4,_0x264c29,_0x1971f9){return _0x27c5c4(_0x264c29,_0x1971f9);},'HubIb':function(_0xfb85f0,_0x3ce7f1,_0x200f98){return _0xfb85f0(_0x3ce7f1,_0x200f98);},'qbbpA':function(_0x1c9888,_0x3655f1,_0x55de83,_0xeed4f7){return _0x1c9888(_0x3655f1,_0x55de83,_0xeed4f7);},'UIgaC':function(_0x1de5fe,_0x29dfec){return _0x1de5fe===_0x29dfec;},'mHyMa':function(_0x198f2e,_0x1c29ae){return _0x198f2e===_0x1c29ae;},'ImVWr':function(_0x4125fa,_0x334b24){return _0x4125fa===_0x334b24;},'gSGxE':function(_0x189cb2,_0x4ac6f3){return _0x189cb2<_0x4ac6f3;},'IvmoI':_0x48e3cb(0x383),'qyLcn':function(_0x15aed2,_0x4080dc){return _0x15aed2===_0x4080dc;},'YFSkE':_0x48e3cb(0xfd),'dWJrQ':function(_0x45fc69,_0x11dcb1){return _0x45fc69===_0x11dcb1;},'JoQBS':'spans','MLSNz':function(_0x4343a2,_0x5b631c){return _0x4343a2===_0x5b631c;},'PPyQn':'traces','yJYRn':function(_0x42a1ea,_0x4cb963,_0x4a3ffb){return _0x42a1ea(_0x4cb963,_0x4a3ffb);},'QVKuH':function(_0x3f4956,_0xf52244){return _0x3f4956!==_0xf52244;},'NRqYw':_0x48e3cb(0x14e),'xFdSi':_0x48e3cb(0x2c9),'chcmP':function(_0x1ea145,_0x1e92dd){return _0x1ea145>_0x1e92dd;},'xvreS':_0x48e3cb(0x126),'gGZFd':_0x48e3cb(0x27a),'AiQEj':function(_0x431e9d,_0x2531d9){return _0x431e9d!==_0x2531d9;},'KQbEq':_0x48e3cb(0x361),'mZVhq':function(_0x7cd992,_0x6e5a56){return _0x7cd992===_0x6e5a56;},'kppYi':'parênteses\x20não\x20balanceados\x20em\x20where(...)','KVRaW':function(_0xf272f2,_0x8b9b73){return _0xf272f2+_0x8b9b73;},'CZetn':function(_0x48e55b,_0x3d4cf6){return _0x48e55b(_0x3d4cf6);},'OlPsF':function(_0x123a48,_0x1cd5b5){return _0x123a48(_0x1cd5b5);},'QCSUY':_0x48e3cb(0x31e),'tKXOq':function(_0x4494c6,_0x5670e8,_0x174b34,_0x135fd0){return _0x4494c6(_0x5670e8,_0x174b34,_0x135fd0);},'qpXEk':'groupby','ZoXUY':_0x48e3cb(0x2c0),'mURCo':_0x48e3cb(0x2eb),'UPsqv':function(_0x2e03e5,_0x33d5a8,_0x209805){return _0x2e03e5(_0x33d5a8,_0x209805);},'AqDoR':function(_0x42f244,_0x21bceb){return _0x42f244+_0x21bceb;},'wcsxH':function(_0x4a87f8,_0x816c59){return _0x4a87f8-_0x816c59;},'BrhwB':'hbqYH','Cphsx':function(_0x11859d,_0x47375d){return _0x11859d!==_0x47375d;},'czhLa':_0x48e3cb(0x17d),'HjGJa':_0x48e3cb(0x35e),'ZWzvX':'field','cNCgw':'count','TLYIU':function(_0xb8fde4,_0x539d6b){return _0xb8fde4===_0x539d6b;},'QxfEu':_0x48e3cb(0x258),'yAyFA':_0x48e3cb(0x300),'DvNyF':function(_0x44859c,_0x3dc962){return _0x44859c!==_0x3dc962;},'ifdNs':function(_0x13964f,_0x4bf28f){return _0x13964f!==_0x4bf28f;},'Oahyg':_0x48e3cb(0x31a)};if(_0x28c9d0[_0x48e3cb(0x226)](typeof _0x566963,_0x28c9d0['NRqYw'])||!_0x566963['trim']())throw new DslError(_0x28c9d0[_0x48e3cb(0x3b0)],_0x48e3cb(0x13e));if(_0x28c9d0[_0x48e3cb(0x2a3)](_0x566963[_0x48e3cb(0x25f)],MAX_QUERY_LEN))throw new DslError(_0x28c9d0[_0x48e3cb(0x3b0)],'query\x20excede\x20o\x20tamanho\x20máximo');let _0x15852c=_0x566963['trim'](),_0x314f0b=_0x8f4675['dataset']||_0x28c9d0[_0x48e3cb(0x3d1)];const _0x5005c6=/^from\s*\(\s*([A-Za-z]+)\s*\)\s*/i[_0x48e3cb(0x18d)](_0x15852c);if(_0x5005c6){if(_0x28c9d0[_0x48e3cb(0x106)]===_0x48e3cb(0x27a))_0x314f0b=_0x5005c6[0x1]['toLowerCase'](),_0x15852c=_0x15852c[_0x48e3cb(0x2ef)](_0x5005c6[0x0][_0x48e3cb(0x25f)]);else{if(!_0x3b3318)return null;if(_0x28c9d0[_0x48e3cb(0x1d6)](_0x562279['op'],_0x28c9d0[_0x48e3cb(0x157)])){const _0x4d68c4=_0x243d62[_0x48e3cb(0x2e5)][_0x48e3cb(0x37b)](_0x4cb967=>_0xa32b7(_0x4cb967,_0x4ad9d1))[_0x48e3cb(0x236)](_0x12ee1a);if(_0x28c9d0[_0x48e3cb(0x1d6)](_0x4d68c4['length'],0x0))return null;return _0x28c9d0[_0x48e3cb(0x1d6)](_0x4d68c4[_0x48e3cb(0x25f)],0x1)?_0x4d68c4[0x0]:{'bool':{'filter':_0x4d68c4}};}if(_0x28c9d0[_0x48e3cb(0x39f)](_0x57db18['op'],'or')){const _0x4bac57=_0x103c8d[_0x48e3cb(0x2e5)][_0x48e3cb(0x37b)](_0x8af445=>_0x461ec9(_0x8af445,_0x1df894))[_0x48e3cb(0x236)](_0x55b78b);if(_0x28c9d0[_0x48e3cb(0x1d6)](_0x4bac57[_0x48e3cb(0x25f)],0x0))return null;return{'bool':{'should':_0x4bac57,'minimum_should_match':0x1}};}if(_0x28c9d0[_0x48e3cb(0x2e0)](_0x132f37['op'],_0x28c9d0[_0x48e3cb(0x380)])){const _0x2b1e0d=_0x28c9d0[_0x48e3cb(0x129)](_0x4c84ea,_0x2f50ae[_0x48e3cb(0x250)],_0x48b699);return _0x2b1e0d?{'bool':{'must_not':[_0x2b1e0d]}}:null;}return _0x28c9d0[_0x48e3cb(0x151)](_0x52aca8,_0x7e6d11,_0x10a331);}}const _0x26bc54=DATASET_PROFILES[_0x314f0b];if(!_0x26bc54){if(_0x28c9d0[_0x48e3cb(0x15b)](_0x28c9d0['KQbEq'],_0x48e3cb(0x2f7)))throw new DslError(_0x48e3cb(0x2c9),_0x48e3cb(0x24c)+_0x314f0b+_0x48e3cb(0x323));else{if(!_0x6b2bb1[_0x48e3cb(0x269)](_0x3dee41[0x1]))_0xf4e58a['push'](_0x340893[0x1]);}}if(!/^where\s*\(/i[_0x48e3cb(0x253)](_0x15852c)){if(_0x28c9d0['mZVhq'](_0x48e3cb(0x337),_0x48e3cb(0x2fe))){if(!_0x408557||_0x28c9d0[_0x48e3cb(0x1d6)](_0x70f395['length'],0x0))return!![];for(const _0x121b4a of _0x484ed1){const _0x2b6207=_0x28c9d0[_0x48e3cb(0x12f)](_0x18bd1c,_0x551633,_0x121b4a['field'],_0x2e1723);if(!_0x1f314d(_0x2b6207,_0x121b4a))return![];}return!![];}else throw new DslError(_0x28c9d0[_0x48e3cb(0x3b0)],_0x48e3cb(0x14c));}const _0x36533d=_0x15852c[_0x48e3cb(0x2d3)]('('),_0x392366=_0x28c9d0[_0x48e3cb(0x129)](matchingParen,_0x15852c,_0x36533d);if(_0x28c9d0['gSGxE'](_0x392366,0x0))throw new DslError('malformed',_0x28c9d0[_0x48e3cb(0x301)]);const _0x581b8d=_0x15852c[_0x48e3cb(0x2ef)](_0x28c9d0[_0x48e3cb(0x34d)](_0x36533d,0x1),_0x392366);let _0x2e4461=_0x15852c['slice'](_0x28c9d0[_0x48e3cb(0x34d)](_0x392366,0x1));const _0x13760a=parseWhereAst(_0x28c9d0[_0x48e3cb(0x18f)](tokenizeWhere,_0x581b8d)),_0x3a9351=_0x28c9d0[_0x48e3cb(0x1ca)](flattenAstLeaves,_0x13760a),_0x4e9081=_0x13760a&&_0x28c9d0[_0x48e3cb(0x132)](_0x13760a['op'],'or')?'OR':_0x28c9d0['QCSUY'],{regexes:_0x934307,extracted:_0x1cccfc}=compileRegexes(_0x3a9351);_0x28c9d0[_0x48e3cb(0xf7)](validateWhereAst,_0x13760a,_0x1cccfc,_0x26bc54);const _0x1937d8={};for(const _0x3dd473 of[_0x28c9d0['qpXEk'],_0x28c9d0[_0x48e3cb(0x2b6)],_0x28c9d0[_0x48e3cb(0x2cc)]]){const _0x3b185f=_0x28c9d0['UPsqv'](findSection,_0x2e4461,_0x3dd473);_0x3b185f&&(_0x1937d8[_0x3dd473]=_0x3b185f['content'],_0x2e4461=_0x28c9d0[_0x48e3cb(0x34d)](_0x28c9d0[_0x48e3cb(0x353)](_0x2e4461[_0x48e3cb(0x2ef)](0x0,_0x3b185f[_0x48e3cb(0x358)]),'\x20'['repeat'](_0x28c9d0[_0x48e3cb(0x262)](_0x3b185f['end'],_0x3b185f['start']))),_0x2e4461[_0x48e3cb(0x2ef)](_0x3b185f[_0x48e3cb(0x264)])));}if(_0x2e4461[_0x48e3cb(0x3cd)]())throw new DslError(_0x28c9d0[_0x48e3cb(0x3b0)],_0x48e3cb(0x234)+_0x2e4461[_0x48e3cb(0x3cd)]()+'\x22',{'detail':_0x2e4461[_0x48e3cb(0x3cd)]()});let _0x4fba46=[];if(_0x1937d8[_0x48e3cb(0x3a2)]!==undefined){_0x4fba46=_0x1937d8[_0x48e3cb(0x3a2)][_0x48e3cb(0x399)](',')['map'](_0x40181d=>_0x40181d[_0x48e3cb(0x3cd)]())[_0x48e3cb(0x236)](Boolean);if(_0x28c9d0[_0x48e3cb(0x39f)](_0x4fba46[_0x48e3cb(0x25f)],0x0))throw new DslError(_0x28c9d0[_0x48e3cb(0x3b0)],_0x48e3cb(0x3d0));for(const _0x41bf2b of _0x4fba46){if(_0x28c9d0[_0x48e3cb(0x244)](_0x28c9d0['BrhwB'],_0x48e3cb(0x176))){if(!_0x26bc54[_0x48e3cb(0x1cc)](_0x41bf2b,_0x1cccfc)){if(_0x28c9d0[_0x48e3cb(0xde)](_0x28c9d0['czhLa'],_0x28c9d0[_0x48e3cb(0x231)]))throw new DslError(_0x28c9d0[_0x48e3cb(0x29d)],'campo\x20não\x20permitido\x20em\x20groupby:\x20'+_0x41bf2b,{'field':_0x41bf2b});else{const _0xb87fcf=_0x28c9d0[_0x48e3cb(0x151)](_0x43ee8f,_0x4e505a[_0x48e3cb(0x250)],_0x2720b1);return _0xb87fcf?{'bool':{'must_not':[_0xb87fcf]}}:null;}}}else{const _0x5cc698=_0x28c9d0[_0x48e3cb(0x132)](_0x2f19a1['value'],null)||_0x289b53[_0x48e3cb(0xe8)]===_0x390d6b?-_0x34de9d:_0x24cf9f[_0x48e3cb(0xe8)],_0x2d2708=_0x28c9d0[_0x48e3cb(0x2c5)](_0x463ae2[_0x48e3cb(0xe8)],null)||_0x109e78['value']===_0x112437?-_0x15f5a5:_0x2867cf['value'];if(_0x28c9d0[_0x48e3cb(0x2b8)](_0x5cc698,_0x2d2708))return 0x0;return _0x28c9d0[_0x48e3cb(0x171)](_0x5cc698,_0x2d2708)?-_0x1b0e80:_0x54e5e1;}}}const _0x16de2c=_0x1937d8[_0x48e3cb(0x2c0)]!==undefined?_0x28c9d0[_0x48e3cb(0x1ca)](parseCalculate,_0x1937d8[_0x48e3cb(0x2c0)]):{'type':_0x28c9d0[_0x48e3cb(0x19a)]};if(_0x28c9d0[_0x48e3cb(0x226)](_0x16de2c[_0x48e3cb(0x2f0)],_0x48e3cb(0x220))){const _0x686090=_0x16de2c[_0x48e3cb(0x298)],_0x2c403d=_0x1cccfc[_0x48e3cb(0x296)](_0x686090);if(!_0x26bc54[_0x48e3cb(0x37a)](_0x686090,_0x1cccfc)){if(_0x28c9d0['TLYIU'](_0x28c9d0['QxfEu'],_0x28c9d0['QxfEu']))throw new DslError(_0x28c9d0[_0x48e3cb(0x29d)],'campo\x20não\x20permitido\x20na\x20métrica:\x20'+_0x686090,{'field':_0x686090});else{const _0x2996b0=_0x28c9d0[_0x48e3cb(0x132)](_0x41f2ce[_0x48e3cb(0x1a7)],_0x28c9d0['IvmoI']);if(_0x28c9d0[_0x48e3cb(0x244)](_0x27c593['name'],_0x28c9d0['YFSkE']))return{'multi_match':{'query':_0x1f408e[_0x48e3cb(0xe8)],'fields':_0x918dc2,'type':_0x2996b0?_0x48e3cb(0x383):_0x48e3cb(0x3c5)}};if(_0x28c9d0['dWJrQ'](_0xfc4fc2[_0x48e3cb(0x206)],_0x28c9d0[_0x48e3cb(0x109)])||_0x28c9d0[_0x48e3cb(0x16a)](_0x5926e9[_0x48e3cb(0x206)],_0x28c9d0[_0x48e3cb(0x24e)]))return _0x28c9d0[_0x48e3cb(0x27b)](_0x58fcf4,_0x108459['value'],_0x2996b0);return _0x2996b0?{'match_phrase':{'message':_0x14cae5[_0x48e3cb(0xe8)]}}:{'match':{'message':_0x395d26[_0x48e3cb(0xe8)]}};}}void _0x2c403d;}let _0x1e968d=_0x28c9d0[_0x48e3cb(0x23c)];if(_0x28c9d0[_0x48e3cb(0x3b7)](_0x1937d8[_0x48e3cb(0x2eb)],undefined)){const _0x8da19d=_0x1937d8[_0x48e3cb(0x2eb)][_0x48e3cb(0x3cd)]()[_0x48e3cb(0x284)]();if(_0x28c9d0[_0x48e3cb(0x18c)](_0x8da19d,_0x28c9d0['Oahyg'])&&_0x28c9d0[_0x48e3cb(0xde)](_0x8da19d,_0x48e3cb(0x300)))throw new DslError(_0x28c9d0['xFdSi'],_0x48e3cb(0x2d9)+_0x8da19d+_0x48e3cb(0x2ec));_0x1e968d=_0x8da19d;}const _0x406d58=_0x934307[_0x48e3cb(0x25f)]>0x0,_0x1e76a6=_0x4fba46[_0x48e3cb(0x116)](_0x134b00=>_0x1cccfc[_0x48e3cb(0x296)](_0x134b00)),_0x1fc13f=_0x28c9d0[_0x48e3cb(0x15b)](_0x16de2c[_0x48e3cb(0x2f0)],_0x28c9d0[_0x48e3cb(0x19a)])&&_0x1cccfc[_0x48e3cb(0x296)](_0x16de2c[_0x48e3cb(0x298)]),_0x38c97b=_0x4fba46[_0x48e3cb(0x116)](_0x1d4df4=>isKvPath(_0x1d4df4)),_0x15756d=_0x4fba46[_0x48e3cb(0x116)](_0x3406c4=>isPayloadPath(_0x3406c4)),_0x4710d7=_0x28c9d0[_0x48e3cb(0x226)](_0x16de2c[_0x48e3cb(0x2f0)],'count')&&_0x28c9d0['CZetn'](isPayloadPath,_0x16de2c[_0x48e3cb(0x298)]),_0x260540=_0x3a9351[_0x48e3cb(0x236)](_0x59c750=>_0x59c750[_0x48e3cb(0x298)]&&isPayloadPath(_0x59c750[_0x48e3cb(0x298)])&&[_0x48e3cb(0x298),'in',_0x48e3cb(0x159)][_0x48e3cb(0x269)](_0x59c750[_0x48e3cb(0x1a7)])),_0x409082=_0x406d58||_0x1e76a6||_0x1fc13f||_0x38c97b||_0x15756d||_0x4710d7||_0x28c9d0[_0x48e3cb(0x2a3)](_0x260540[_0x48e3cb(0x25f)],0x0);return{'where':_0x13760a,'dataset':_0x314f0b,'clauses':_0x3a9351,'payloadFilters':_0x260540,'operator':_0x4e9081,'regexes':_0x934307,'extracted':_0x1cccfc,'groupby':_0x4fba46,'calculate':_0x16de2c,'sort':_0x1e968d,'hasRegex':_0x406d58,'serverSide':_0x409082,'hasGroupby':_0x4fba46[_0x48e3cb(0x25f)]>0x0};}function clauseToOpenSearch(_0x22a917){const _0x2ceada=_0x4e3d16,_0x56490c={'IJfHm':function(_0xf8e91b,_0x280dac){return _0xf8e91b!==_0x280dac;},'GDqoO':function(_0xc2f37f,_0x281347){return _0xc2f37f===_0x281347;},'bMYXI':'phrase','bqQtW':'term','HmYHG':_0x2ceada(0x298),'iMUKf':_0x2ceada(0x13f),'LKuGL':_0x2ceada(0x2f6),'MeIHr':function(_0xf4246,_0x4d879a){return _0xf4246===_0x4d879a;},'RpdzM':'message','vqhWK':function(_0x518608,_0x501465){return _0x518608(_0x501465);},'wDGcR':function(_0x5c6f7e,_0x542bd8){return _0x5c6f7e(_0x542bd8);},'HZhQy':_0x2ceada(0x179),'zsGPE':_0x2ceada(0x3cf)};if(_0x56490c[_0x2ceada(0x2fa)](_0x22a917[_0x2ceada(0x1a7)],_0x56490c[_0x2ceada(0x218)]))return{'match_phrase':{'message':_0x22a917[_0x2ceada(0xe8)]}};if(_0x56490c[_0x2ceada(0x2fa)](_0x22a917[_0x2ceada(0x1a7)],_0x56490c[_0x2ceada(0x2a0)]))return{'match':{'message':_0x22a917[_0x2ceada(0xe8)]}};if(_0x22a917['kind']===_0x56490c[_0x2ceada(0x2e1)]){if(_0x56490c['iMUKf']!==_0x56490c[_0x2ceada(0x177)]){if(_0x56490c[_0x2ceada(0x2bc)](_0x22a917[_0x2ceada(0x298)],_0x56490c[_0x2ceada(0x35d)]))return{'match':{'message':_0x22a917[_0x2ceada(0xe8)]}};if(_0x56490c[_0x2ceada(0x265)](isKvPath,_0x22a917[_0x2ceada(0x298)]))return{'term':{[_0x22a917[_0x2ceada(0x298)]]:_0x22a917['value']}};if(_0x56490c[_0x2ceada(0x1e3)](isKvnPath,_0x22a917[_0x2ceada(0x298)])){if(_0x56490c[_0x2ceada(0x2fa)](_0x56490c['HZhQy'],_0x56490c[_0x2ceada(0x1f5)]))return _0x2c6230(_0x518af6[_0x2ceada(0x250)],_0x57dd94),_0x29dbcd;else{const _0x1df9a3=Number(_0x22a917[_0x2ceada(0xe8)]);return Number[_0x2ceada(0x34b)](_0x1df9a3)?{'term':{[_0x22a917[_0x2ceada(0x298)]]:_0x1df9a3}}:{'term':{[_0x22a917[_0x2ceada(0x298)]]:_0x22a917[_0x2ceada(0xe8)]}};}}return{'term':{[_0x22a917[_0x2ceada(0x298)]+_0x2ceada(0x2a5)]:_0x22a917[_0x2ceada(0xe8)]}};}else{const _0x1f0f6a=[],_0x49c6ad=_0x55b8a3[_0x2ceada(0x232)](/\(\?P<([A-Za-z_][A-Za-z0-9_]*)>/g,(_0x46ddc0,_0x206c14)=>{const _0x19ce0b=_0x2ceada;return _0x1f0f6a[_0x19ce0b(0x370)](_0x206c14),_0x19ce0b(0x28b)+_0x206c14+'>';}),_0x170460=/\(\?<([A-Za-z_][A-Za-z0-9_]*)>/g;let _0x28a1ca;while(_0x56490c['IJfHm'](_0x28a1ca=_0x170460[_0x2ceada(0x18d)](_0x49c6ad),null)){if(!_0x1f0f6a[_0x2ceada(0x269)](_0x28a1ca[0x1]))_0x1f0f6a['push'](_0x28a1ca[0x1]);}return{'jsSource':_0x49c6ad,'names':_0x1f0f6a};}}return null;}function buildOpenSearchQuery(_0x539de1,_0x48cf93){const _0x27c0a5=_0x4e3d16,_0x3f06e0={'mGkzl':_0x27c0a5(0x126),'DHxSq':function(_0x159713,_0x16c77f,_0x4e3cf2){return _0x159713(_0x16c77f,_0x4e3cf2);}},_0x14e1ef=DATASET_PROFILES[_0x539de1&&_0x539de1[_0x27c0a5(0x26b)]||_0x3f06e0[_0x27c0a5(0x1ba)]],_0x1a4ddb={'range':{[_0x14e1ef[_0x27c0a5(0xcf)]]:{'gte':_0x48cf93[_0x27c0a5(0x292)],'lte':_0x48cf93['to']}}},_0x4f0a26=_0x3f06e0[_0x27c0a5(0x2c6)](astToOpenSearch,_0x539de1[_0x27c0a5(0x3b1)],DATASET_PROFILES[_0x539de1&&_0x539de1[_0x27c0a5(0x26b)]||_0x3f06e0[_0x27c0a5(0x1ba)]]);if(!_0x4f0a26)return{'bool':{'filter':[_0x1a4ddb]}};return{'bool':{'filter':[_0x1a4ddb],'must':[_0x4f0a26]}};}function sourceFieldsFor(_0x60805c){const _0xf91e55=_0x4e3d16,_0x36b893={'ULtTH':_0xf91e55(0x383),'axFlx':function(_0x2b5d54,_0x60ae4b){return _0x2b5d54(_0x60ae4b);},'dJvqj':function(_0x166fcd,_0x3d01f9){return _0x166fcd(_0x3d01f9);},'jHycS':'response.result','crZBY':function(_0x468405,_0x43f734){return _0x468405===_0x43f734;},'iaBbQ':'string','zPWaq':'wTLeC','vxzmk':_0xf91e55(0x111),'dpdTD':_0xf91e55(0x298),'spjof':_0xf91e55(0x10f),'mIcIw':function(_0x739aae,_0x93c4bc){return _0x739aae!==_0x93c4bc;},'MNrQG':_0xf91e55(0x220)},_0x5eb9cc=new Set([_0x36b893[_0xf91e55(0x1fd)],TIME_FIELD]),_0x469511=_0x4dc575=>{const _0x95380d=_0xf91e55;if(_0x60805c[_0x95380d(0x25d)][_0x95380d(0x296)](_0x4dc575))return;if(_0x36b893['axFlx'](isBodyPath,_0x4dc575)){if(_0x95380d(0x178)===_0x95380d(0x114))return _0x36ce4++,{'kind':_0x36b893[_0x95380d(0x24b)],'value':_0x3eeb2f[_0x95380d(0xe8)]};else{_0x5eb9cc[_0x95380d(0x1a4)](_0x95380d(0x2ba));return;}}if(_0x36b893[_0x95380d(0x33e)](isResponsePath,_0x4dc575)){_0x5eb9cc['add'](_0x36b893[_0x95380d(0x23d)]);return;}_0x5eb9cc[_0x95380d(0x1a4)](_0x4dc575);};_0x60805c['groupby']['forEach'](_0x469511);if(_0x36b893['mIcIw'](_0x60805c[_0xf91e55(0x2c0)][_0xf91e55(0x2f0)],_0x36b893[_0xf91e55(0x39a)]))_0x36b893['axFlx'](_0x469511,_0x60805c[_0xf91e55(0x2c0)]['field']);return _0x60805c[_0xf91e55(0x32c)]['forEach'](_0x998a5b=>{const _0x320210=_0xf91e55;if(_0x36b893[_0x320210(0xe7)]===_0x36b893['vxzmk']){const _0x35861f=_0x36b893[_0x320210(0x3c2)](typeof(_0x42ffee&&_0x176864[_0x320210(0x10f)]),_0x36b893[_0x320210(0x351)])?_0x1aad08['message']:'',_0x41d2ea={};for(const {regex:_0x390557}of _0x142ae4){_0x390557[_0x320210(0x208)]=0x0;const _0x4fc0eb=_0x390557[_0x320210(0x18d)](_0x35861f);if(!_0x4fc0eb)return{'ok':![],'extracted':_0x41d2ea};if(_0x4fc0eb['groups'])for(const [_0x478a70,_0x6b90d7]of _0x21c913[_0x320210(0x312)](_0x4fc0eb[_0x320210(0x233)])){if(_0x6b90d7!==_0x16b214)_0x41d2ea[_0x478a70]=_0x6b90d7;}}return{'ok':!![],'extracted':_0x41d2ea};}else{if(_0x998a5b['kind']===_0x36b893[_0x320210(0x349)])_0x36b893[_0x320210(0x33e)](_0x469511,_0x998a5b[_0x320210(0x298)]);}}),Array[_0xf91e55(0x292)](_0x5eb9cc);}function metricSubAgg(_0x17f6b4,_0x24c2ad){const _0x510277=_0x4e3d16,_0x11d5e7={'YOKOd':function(_0x3349c9,_0x39df2f){return _0x3349c9||_0x39df2f;},'vXsSP':_0x510277(0x126),'MXsjn':function(_0x5e0310,_0x55f855){return _0x5e0310===_0x55f855;},'GhcUh':_0x510277(0x31c),'loKVW':_0x510277(0x16f),'yQWtj':_0x510277(0x2be),'BTAin':function(_0xf88163,_0x2f8671){return _0xf88163===_0x2f8671;},'DmevV':_0x510277(0x34f),'XdUpf':_0x510277(0x181),'VOzVK':function(_0x3ac09a,_0x4fa227){return _0x3ac09a===_0x4fa227;},'fWCXz':'p99'},{type:_0xd23a41}=_0x17f6b4,_0x3bdb86=DATASET_PROFILES[_0x11d5e7[_0x510277(0x247)](_0x24c2ad,_0x11d5e7[_0x510277(0xe3)])],_0x4ab23d=_0x3bdb86['metricPath'](_0x17f6b4[_0x510277(0x298)]);if(_0x11d5e7[_0x510277(0x354)](_0xd23a41,_0x11d5e7['GhcUh']))return{'metric':{'avg':{'field':_0x4ab23d}}};if(_0x11d5e7['MXsjn'](_0xd23a41,_0x11d5e7[_0x510277(0x2a9)]))return{'metric':{'sum':{'field':_0x4ab23d}}};if(_0xd23a41===_0x11d5e7['yQWtj'])return{'metric':{'min':{'field':_0x4ab23d}}};if(_0x11d5e7['BTAin'](_0xd23a41,_0x11d5e7[_0x510277(0x3be)]))return{'metric':{'max':{'field':_0x4ab23d}}};if(_0xd23a41===_0x11d5e7[_0x510277(0x32f)])return{'metric':{'percentiles':{'field':_0x4ab23d,'percents':[0x5f]}}};if(_0x11d5e7[_0x510277(0x341)](_0xd23a41,_0x11d5e7['fWCXz']))return{'metric':{'percentiles':{'field':_0x4ab23d,'percents':[0x63]}}};return undefined;}function readNativeMetric(_0xcb4574,_0x58f551){const _0x37a5fb=_0x4e3d16,_0x51880a={'pwKGu':function(_0x140f7e,_0x54ab75){return _0x140f7e===_0x54ab75;},'RdYrt':_0x37a5fb(0x220),'NxQnt':'p95','QEMIm':_0x37a5fb(0xfa),'qFwhw':function(_0x218af7,_0xb8573c){return _0x218af7===_0xb8573c;},'RFGev':_0x37a5fb(0x205)};if(_0x51880a[_0x37a5fb(0x3b4)](_0x58f551[_0x37a5fb(0x2f0)],_0x51880a[_0x37a5fb(0x1c3)]))return _0xcb4574['doc_count'];const _0x4ec981=_0xcb4574[_0x37a5fb(0x396)]||{};if(_0x51880a[_0x37a5fb(0x3b4)](_0x58f551[_0x37a5fb(0x2f0)],_0x51880a[_0x37a5fb(0x146)]))return(_0x4ec981['values']&&(_0x4ec981['values'][_0x51880a[_0x37a5fb(0x310)]]??_0x4ec981[_0x37a5fb(0x364)]['95']))??null;if(_0x51880a[_0x37a5fb(0x306)](_0x58f551[_0x37a5fb(0x2f0)],_0x37a5fb(0x139)))return(_0x4ec981['values']&&(_0x4ec981[_0x37a5fb(0x364)][_0x51880a[_0x37a5fb(0x2d1)]]??_0x4ec981[_0x37a5fb(0x364)]['99']))??null;return _0x4ec981[_0x37a5fb(0xe8)]??null;}function buildTermsAgg(_0x1e3c80){const _0x196527=_0x4e3d16,_0x1c04d9={'hAZVq':function(_0x15ac5e,_0x4b2bc3){return _0x15ac5e===_0x4b2bc3;},'HUIwd':_0x196527(0x31a),'diBcG':function(_0x36d943,_0x386e49){return _0x36d943===_0x386e49;},'BNVgs':function(_0x5336f7,_0x210c3e){return _0x5336f7===_0x210c3e;},'rbVcw':function(_0x21a475,_0x297295){return _0x21a475<_0x297295;},'cYFCZ':_0x196527(0x10f),'ChvMP':function(_0x575167,_0x1c4a68){return _0x575167(_0x1c4a68);},'DJtrX':function(_0x26c468,_0x52baa6){return _0x26c468!==_0x52baa6;},'WjWlQ':_0x196527(0x11c),'wytor':'desc','GRELo':function(_0x300cd8,_0x5a6664){return _0x300cd8===_0x5a6664;},'fUxqI':_0x196527(0x181),'ehvQk':function(_0x2ed79a,_0x1b35b2){return _0x2ed79a===_0x1b35b2;},'iQHoM':'p99','hXMzS':function(_0x39f635,_0x4ff098){return _0x39f635-_0x4ff098;},'vZTcO':function(_0x416eb0,_0x234b07){return _0x416eb0+_0x234b07;},'yWOwQ':_0x196527(0x11e),'BreSo':function(_0x5d37ae,_0x3720e3){return _0x5d37ae!==_0x3720e3;},'JbTRp':function(_0x1f657f,_0x127ced,_0x2e5185){return _0x1f657f(_0x127ced,_0x2e5185);},'rvEBA':function(_0xb6f4fb,_0x403fe4){return _0xb6f4fb(_0x403fe4);}},_0x120f9e=_0x1e3c80[_0x196527(0x3a2)],_0x220cd2=_0x1e3c80['calculate'],_0x40fbee=_0x5d6dc8=>{const _0x1b4d33=_0x196527,_0x1391fe={'KNWvM':function(_0x4edd93,_0x216c8d){const _0x25928b=_0x2008;return _0x1c04d9[_0x25928b(0x267)](_0x4edd93,_0x216c8d);},'ZggvJ':function(_0x55fb6e,_0x207dcb){const _0x2d43d6=_0x2008;return _0x1c04d9[_0x2d43d6(0x270)](_0x55fb6e,_0x207dcb);},'hhZLs':function(_0x1f6232,_0x2f54a3){const _0x596443=_0x2008;return _0x1c04d9[_0x596443(0x327)](_0x1f6232,_0x2f54a3);},'XsVSm':function(_0x2406bc,_0x5e14fd){const _0x53871d=_0x2008;return _0x1c04d9[_0x53871d(0x360)](_0x2406bc,_0x5e14fd);},'AlTHE':_0x1c04d9[_0x1b4d33(0x108)],'KAZjs':function(_0x1e2d17,_0x3ef93c){return _0x1c04d9['ChvMP'](_0x1e2d17,_0x3ef93c);},'LbuJP':function(_0x3cca90,_0x37635a){const _0x475574=_0x1b4d33;return _0x1c04d9[_0x475574(0x2c8)](_0x3cca90,_0x37635a);}};if(_0x1c04d9[_0x1b4d33(0x219)](_0x1c04d9[_0x1b4d33(0x19e)],_0x1c04d9[_0x1b4d33(0x19e)])){const _0x34359f=_0x1c04d9[_0x1b4d33(0x267)](_0x58e7e6,_0x1c04d9[_0x1b4d33(0x385)])?0x1:-0x1;_0x382382[_0x1b4d33(0x2eb)]((_0x7987f,_0x11b7b3)=>{const _0x1a5602=_0x1b4d33,_0x227b8f=_0x1391fe['KNWvM'](_0x7987f[_0x1a5602(0xe8)],null)||_0x7987f['value']===_0x431811?-_0x3ecbab:_0x7987f[_0x1a5602(0xe8)],_0x3f17cc=_0x1391fe['KNWvM'](_0x11b7b3['value'],null)||_0x1391fe[_0x1a5602(0x302)](_0x11b7b3[_0x1a5602(0xe8)],_0x43b54f)?-_0x58e776:_0x11b7b3[_0x1a5602(0xe8)];if(_0x1391fe[_0x1a5602(0x3c8)](_0x227b8f,_0x3f17cc))return 0x0;return _0x1391fe['XsVSm'](_0x227b8f,_0x3f17cc)?-_0x34359f:_0x34359f;});}else{const _0xbda351=_0x120f9e[_0x5d6dc8],_0x3a6957=DATASET_PROFILES[_0x1e3c80[_0x1b4d33(0x26b)]||_0x1b4d33(0x126)],_0x5c83e9=_0x3a6957[_0x1b4d33(0x33a)](_0xbda351,_0x1e3c80[_0x1b4d33(0x25d)]),_0x4c01cf=_0x220cd2['type']===_0x1b4d33(0x220)?{'_count':_0x1c04d9[_0x1b4d33(0x2a4)]}:_0x1c04d9['GRELo'](_0x220cd2[_0x1b4d33(0x2f0)],_0x1c04d9[_0x1b4d33(0x207)])?{'metric.95':_0x1c04d9[_0x1b4d33(0x2a4)]}:_0x1c04d9[_0x1b4d33(0x237)](_0x220cd2['type'],_0x1c04d9['iQHoM'])?{'metric.99':_0x1c04d9[_0x1b4d33(0x2a4)]}:{'metric':_0x1c04d9[_0x1b4d33(0x2a4)]},_0x8d473a={'terms':{'field':_0x5c83e9,'size':TERMS_CAP}};if(_0x5d6dc8<_0x1c04d9[_0x1b4d33(0x3a5)](_0x120f9e[_0x1b4d33(0x25f)],0x1))_0x8d473a[_0x1b4d33(0x22a)]={'sub':_0x1c04d9['ChvMP'](_0x40fbee,_0x1c04d9[_0x1b4d33(0xf9)](_0x5d6dc8,0x1))},_0x8d473a[_0x1b4d33(0x381)][_0x1b4d33(0x2d4)]={'_count':'desc'};else{if(_0x1c04d9[_0x1b4d33(0x22d)](_0x1b4d33(0x11e),_0x1c04d9[_0x1b4d33(0x123)]))_0x1c04d9[_0x1b4d33(0x1e7)](_0x220cd2['type'],_0x1b4d33(0x220))?(_0x8d473a[_0x1b4d33(0x22a)]=_0x1c04d9[_0x1b4d33(0x3af)](metricSubAgg,_0x220cd2,_0x1e3c80['dataset']),_0x8d473a[_0x1b4d33(0x381)][_0x1b4d33(0x2d4)]=_0x4c01cf):_0x8d473a[_0x1b4d33(0x381)]['order']={'_count':_0x1c04d9[_0x1b4d33(0x2a4)]};else{if(_0x3f5532[_0x1b4d33(0x298)]===_0x1391fe[_0x1b4d33(0x26e)])return{'match':{'message':_0x1fc7bf[_0x1b4d33(0xe8)]}};if(_0x1391fe[_0x1b4d33(0x386)](_0x5b9cfa,_0x15cf39[_0x1b4d33(0x298)]))return{'term':{[_0x38f074[_0x1b4d33(0x298)]]:_0x2a95ac[_0x1b4d33(0xe8)]}};if(_0x1391fe[_0x1b4d33(0x386)](_0xcf188c,_0x5cc982[_0x1b4d33(0x298)])){const _0x5c5eaa=_0x1391fe[_0x1b4d33(0x2fc)](_0x71cfec,_0xac3bb6[_0x1b4d33(0xe8)]);return _0x57be9a[_0x1b4d33(0x34b)](_0x5c5eaa)?{'term':{[_0x546458[_0x1b4d33(0x298)]]:_0x5c5eaa}}:{'term':{[_0x1ff5fc[_0x1b4d33(0x298)]]:_0x346d44[_0x1b4d33(0xe8)]}};}return{'term':{[_0x12a3ef[_0x1b4d33(0x298)]+_0x1b4d33(0x2a5)]:_0x112a5b[_0x1b4d33(0xe8)]}};}}return _0x8d473a;}};return{'groups':_0x1c04d9[_0x196527(0x3ac)](_0x40fbee,0x0)};}function parseTermsAgg(_0x6b7d8,_0x1e6e08){const _0x5d5997=_0x4e3d16,_0x532234={'Qqswy':function(_0x459088){return _0x459088();},'wCnUn':function(_0x7046cf,_0xc6a8b1){return _0x7046cf(_0xc6a8b1);},'fMkxw':_0x5d5997(0x1a8),'dCReT':function(_0x3154ae,_0x4ee122,_0x46f756,_0x5b2f56){return _0x3154ae(_0x4ee122,_0x46f756,_0x5b2f56);},'aRbQp':function(_0x3f494e,_0x45995d,_0x487a8e){return _0x3f494e(_0x45995d,_0x487a8e);},'HxYZU':function(_0x62dc1e,_0x337731){return _0x62dc1e===_0x337731;},'lJsjp':_0x5d5997(0x1e0),'TqGiT':_0x5d5997(0x303),'YGjHH':function(_0x52d12e,_0x5d7a3c){return _0x52d12e===_0x5d7a3c;},'bWKAZ':'VkSHs','TqtgF':function(_0x342165,_0x3aec01){return _0x342165!==_0x3aec01;},'ZWQhF':'sXVXX','ftcAQ':function(_0x55a66b,_0x177560,_0x24552f){return _0x55a66b(_0x177560,_0x24552f);},'wUEEp':function(_0x3e560e,_0x39207e,_0x388f89){return _0x3e560e(_0x39207e,_0x388f89);}},_0x165a04=_0x1e6e08[_0x5d5997(0x3a2)],_0x3ce01c=_0x1e6e08[_0x5d5997(0x2c0)],_0x59d675=[],_0x3b70cf=(_0xb8e2fd,_0x4d7d21,_0x2e5c9d)=>{const _0x2e622a=_0x5d5997,_0x1da8c4={'GEzZj':function(_0xf6aceb,_0x1f25c0){return _0xf6aceb(_0x1f25c0);},'GWYkG':function(_0x509e91,_0x395be4,_0x1423c8,_0x3909a0){const _0x399e70=_0x2008;return _0x532234[_0x399e70(0x2bb)](_0x509e91,_0x395be4,_0x1423c8,_0x3909a0);},'RkoYE':function(_0x5014f7,_0x1e5fef,_0x248073){const _0x107ffc=_0x2008;return _0x532234[_0x107ffc(0x32b)](_0x5014f7,_0x1e5fef,_0x248073);}};if(_0x532234['HxYZU'](_0x532234[_0x2e622a(0x1bd)],_0x532234[_0x2e622a(0x2d7)]))return _0xe4b84a[_0x2e622a(0x370)](_0x1bc77b),_0x2e622a(0x28b)+_0x27a49d+'>';else for(const _0x4336f2 of _0xb8e2fd||[]){if(_0x532234['YGjHH'](_0x532234['bWKAZ'],'VkSHs')){const _0x3a00cc=Object[_0x2e622a(0x330)]({},_0x2e5c9d,{[_0x165a04[_0x4d7d21]]:_0x4336f2['key']});if(_0x532234[_0x2e622a(0xd1)](_0x4d7d21,_0x165a04[_0x2e622a(0x25f)]-0x1)){if(_0x532234['TqtgF'](_0x532234[_0x2e622a(0x282)],_0x532234['ZWQhF'])){_0x74401a++;const _0x4013a2=_0x532234['Qqswy'](_0x1d235e);return _0x532234[_0x2e622a(0x2ad)](_0x168803,')'),{'kind':_0x532234[_0x2e622a(0x22c)],'expr':_0x4013a2};}else _0x59d675[_0x2e622a(0x370)](Object[_0x2e622a(0x330)]({},_0x3a00cc,{'value':_0x532234[_0x2e622a(0x130)](readNativeMetric,_0x4336f2,_0x3ce01c)}));}else _0x3b70cf(_0x4336f2[_0x2e622a(0x362)]&&_0x4336f2[_0x2e622a(0x362)][_0x2e622a(0x235)]||[],_0x4d7d21+0x1,_0x3a00cc);}else{if(_0x3b792e[_0x2e622a(0x296)](_0x2834b5))return _0x53c96b[_0x1f635a];if(_0x1da8c4[_0x2e622a(0x1a2)](_0x5a1f41,_0x257e8e))return _0x1da8c4[_0x2e622a(0x20f)](_0x41eb08,_0x537098,_0x219368,_0x5ebb6a);return _0x1da8c4[_0x2e622a(0x255)](_0x3a1f64,_0x23e673,_0x2e5e33);}}},_0x115315=_0x6b7d8&&_0x6b7d8[_0x5d5997(0x233)]&&_0x6b7d8[_0x5d5997(0x233)][_0x5d5997(0x235)]||[];return _0x532234[_0x5d5997(0x2bb)](_0x3b70cf,_0x115315,0x0,{}),_0x532234[_0x5d5997(0xd0)](sortRows,_0x59d675,_0x1e6e08[_0x5d5997(0x2eb)]),_0x59d675;}function getPath(_0xd2d352,_0x446484){const _0x59291b=_0x4e3d16;if(!_0xd2d352||!_0x446484)return undefined;if(Object[_0x59291b(0x36b)][_0x59291b(0x204)][_0x59291b(0x3d3)](_0xd2d352,_0x446484))return _0xd2d352[_0x446484];return _0x446484[_0x59291b(0x399)]('.')['reduce']((_0x60cbe4,_0x7dd4c1)=>_0x60cbe4===null||_0x60cbe4===undefined?undefined:_0x60cbe4[_0x7dd4c1],_0xd2d352);}function toNumber(_0x502e43){const _0x5a9356=_0x4e3d16,_0x346cd2={'JYSLX':function(_0x56a4a9,_0x350da4){return _0x56a4a9===_0x350da4;},'fLgPs':function(_0x12a4e7,_0x4aba40){return _0x12a4e7===_0x4aba40;},'fWQth':function(_0x4cdcfb,_0x5c6dc1){return _0x4cdcfb(_0x5c6dc1);}};if(_0x346cd2[_0x5a9356(0x189)](_0x502e43,null)||_0x346cd2[_0x5a9356(0x2f4)](_0x502e43,undefined)||_0x502e43==='')return null;const _0x21beb2=_0x346cd2[_0x5a9356(0x163)](Number,_0x502e43);return Number['isFinite'](_0x21beb2)?_0x21beb2:null;}const MAX_PAYLOAD_PARSE_LEN=0x100*0x400;function safeJsonParse(_0x459bb3){const _0x5ba9da=_0x4e3d16,_0x53fe21={'WTVjs':function(_0x3b308f,_0xc4fb83){return _0x3b308f===_0xc4fb83;},'AXtaC':_0x5ba9da(0x220),'ToCUI':function(_0x4a82ae,_0x5d8e72,_0x1f8a62){return _0x4a82ae(_0x5d8e72,_0x1f8a62);},'nVoiw':function(_0x3e7b63,_0x368911){return _0x3e7b63!==_0x368911;},'qZgdc':_0x5ba9da(0x14e),'EmkXm':function(_0x4ad6b6,_0x390460){return _0x4ad6b6===_0x390460;},'CRNSG':function(_0x242ce1,_0x56c85b){return _0x242ce1>_0x56c85b;},'bqDXM':function(_0x279054,_0x2bbdce){return _0x279054!==_0x2bbdce;},'NhOKa':_0x5ba9da(0x1d1),'Lkmpm':_0x5ba9da(0x37e),'iHJRP':_0x5ba9da(0x168)};if(_0x53fe21[_0x5ba9da(0x3b9)](typeof _0x459bb3,_0x53fe21[_0x5ba9da(0x29a)])||_0x53fe21[_0x5ba9da(0x164)](_0x459bb3['length'],0x0)||_0x53fe21[_0x5ba9da(0x10c)](_0x459bb3['length'],MAX_PAYLOAD_PARSE_LEN))return null;try{const _0x46b0e9=JSON[_0x5ba9da(0x328)](_0x459bb3);return _0x53fe21[_0x5ba9da(0x2f1)](_0x46b0e9,null)&&_0x53fe21[_0x5ba9da(0x291)](typeof _0x46b0e9,_0x53fe21['NhOKa'])?_0x46b0e9:null;}catch{if(_0x53fe21[_0x5ba9da(0x291)](_0x53fe21[_0x5ba9da(0x22b)],_0x53fe21[_0x5ba9da(0x10a)])){const _0x1300bb=_0x53fe21['WTVjs'](_0x3e7c9f[_0x5ba9da(0x2f0)],_0x53fe21[_0x5ba9da(0x2b0)])?_0x4db37a[_0x5ba9da(0x220)]:_0x53fe21['ToCUI'](_0xb376d6,_0x22ac66[_0x5ba9da(0x2f0)],_0x382ecf[_0x5ba9da(0x364)]);_0x519dbe['push'](_0x2a0f98[_0x5ba9da(0x330)]({},_0x56aaba['dims'],{'value':_0x1300bb}));}else return null;}}function payloadValue(_0x5c6503,_0x400920,_0x19fc60){const _0x50abf6=_0x4e3d16,_0x16c624={'aNEIB':function(_0x2b57a6,_0x223269){return _0x2b57a6(_0x223269);},'etrZZ':function(_0x2d0d5e,_0x3f9106){return _0x2d0d5e===_0x3f9106;},'cuPef':function(_0x191e48,_0x30d779){return _0x191e48(_0x30d779);},'MbMCP':function(_0xe57a77,_0x137e9c,_0x573cd1){return _0xe57a77(_0x137e9c,_0x573cd1);},'vmGSH':function(_0x20a3e2,_0x1e7633){return _0x20a3e2(_0x1e7633);},'mgwYR':function(_0x19800e,_0x4e2504,_0xd6e8c7){return _0x19800e(_0x4e2504,_0xd6e8c7);}};if(_0x16c624[_0x50abf6(0xdc)](isBodyPath,_0x400920)){if(_0x16c624['etrZZ'](_0x19fc60['body'],undefined))_0x19fc60[_0x50abf6(0x17e)]=_0x16c624[_0x50abf6(0x105)](safeJsonParse,getPath(_0x5c6503,_0x50abf6(0x2ba)));return _0x19fc60[_0x50abf6(0x17e)]?_0x16c624[_0x50abf6(0x2fb)](getPath,_0x19fc60[_0x50abf6(0x17e)],_0x400920[_0x50abf6(0x2ef)](_0x50abf6(0x2bf)[_0x50abf6(0x25f)])):undefined;}if(_0x16c624[_0x50abf6(0x217)](isResponsePath,_0x400920)){if(_0x16c624['etrZZ'](_0x19fc60[_0x50abf6(0x1b6)],undefined))_0x19fc60['response']=safeJsonParse(_0x16c624['MbMCP'](getPath,_0x5c6503,'response.result'));return _0x19fc60['response']?_0x16c624['mgwYR'](getPath,_0x19fc60['response'],_0x400920['slice'](_0x50abf6(0xeb)['length'])):undefined;}return undefined;}function flattenLeafPaths(_0x1696c6,_0x52c1d4={}){const _0x105ac2=_0x4e3d16,_0x333bc2={'yYOVP':function(_0x210ffb,_0x10aae6){return _0x210ffb===_0x10aae6;},'mXesV':_0x105ac2(0x298),'vwYOa':function(_0x49c4c0,_0x563c52){return _0x49c4c0!==_0x563c52;},'LkbQK':_0x105ac2(0x1d1),'brvXp':function(_0x3585c6,_0x3dcbdb,_0x2da3c0,_0x47e9a5){return _0x3585c6(_0x3dcbdb,_0x2da3c0,_0x47e9a5);},'XjzJE':function(_0x31d963,_0x3db076){return _0x31d963+_0x3db076;},'wjXCo':_0x105ac2(0xe5),'XEGnd':function(_0x4f708f,_0x4f37e9,_0x1415ae,_0x1332ee){return _0x4f708f(_0x4f37e9,_0x1415ae,_0x1332ee);}},_0x24967b=_0x52c1d4['maxDepth']||0x6,_0x334a52=[],_0x33f212=(_0x32616b,_0xcbefc8,_0x36846)=>{const _0x2af3ab=_0x105ac2,_0x3cc889={'oOqmV':function(_0x326af6,_0x4ed8f7){const _0x30f942=_0x2008;return _0x333bc2[_0x30f942(0x27d)](_0x326af6,_0x4ed8f7);},'kEoKF':_0x2af3ab(0x2c9),'tzIDn':'groupby(...)\x20vazio','BYiMl':_0x333bc2[_0x2af3ab(0x150)]};if(_0x333bc2[_0x2af3ab(0x2dc)](_0x32616b,null)&&_0x333bc2[_0x2af3ab(0x27d)](typeof _0x32616b,_0x333bc2[_0x2af3ab(0x308)])&&!Array['isArray'](_0x32616b)&&_0x36846<_0x24967b)for(const _0x3c7436 of Object['keys'](_0x32616b)){if(!/^[A-Za-z0-9_][A-Za-z0-9_.-]*$/['test'](_0x3c7436))continue;_0x333bc2[_0x2af3ab(0x2df)](_0x33f212,_0x32616b[_0x3c7436],_0xcbefc8?_0xcbefc8+'.'+_0x3c7436:_0x3c7436,_0x333bc2[_0x2af3ab(0x3ca)](_0x36846,0x1));}else{if(_0xcbefc8){if(_0x333bc2[_0x2af3ab(0x2dc)](_0x2af3ab(0xe5),_0x333bc2[_0x2af3ab(0x2c7)])){_0x234dfc=_0x15020[_0x2af3ab(0x3a2)]['split'](',')[_0x2af3ab(0x37b)](_0x5d5043=>_0x5d5043[_0x2af3ab(0x3cd)]())[_0x2af3ab(0x236)](_0x3b037f);if(_0x3cc889[_0x2af3ab(0x20a)](_0x33abc4[_0x2af3ab(0x25f)],0x0))throw new _0x49d333(_0x3cc889['kEoKF'],_0x3cc889[_0x2af3ab(0xee)]);for(const _0x5417a9 of _0x5aefb8){if(!_0x201464[_0x2af3ab(0x1cc)](_0x5417a9,_0x52b7b6))throw new _0x33826f(_0x3cc889[_0x2af3ab(0x3ba)],_0x2af3ab(0x3bb)+_0x5417a9,{'field':_0x5417a9});}}else _0x334a52[_0x2af3ab(0x370)](_0xcbefc8);}}};return _0x333bc2['XEGnd'](_0x33f212,_0x1696c6,'',0x0),_0x334a52;}function resolveScanValue(_0xd37f14,_0x2629af,_0x12c909,_0x3f1dab,_0x5b8a8f){const _0x39af00=_0x4e3d16,_0x101ba4={'dIKvn':function(_0x1b10bb,_0xfe57a7){return _0x1b10bb(_0xfe57a7);},'rimzr':function(_0x4faa7b,_0x18adaf,_0x3a66dd,_0x4d60fd){return _0x4faa7b(_0x18adaf,_0x3a66dd,_0x4d60fd);},'BVEFX':function(_0x36f8a7,_0x207b5b,_0x1e1970){return _0x36f8a7(_0x207b5b,_0x1e1970);}};if(_0x3f1dab['has'](_0x2629af))return _0x12c909[_0x2629af];if(_0x101ba4[_0x39af00(0x1d9)](isPayloadPath,_0x2629af))return _0x101ba4[_0x39af00(0x30f)](payloadValue,_0xd37f14,_0x2629af,_0x5b8a8f);return _0x101ba4[_0x39af00(0x141)](getPath,_0xd37f14,_0x2629af);}function evalPayloadClause(_0x3bdb09,_0x2b84bf){const _0xb4d9de=_0x4e3d16,_0xd39111={'OYiKF':function(_0x58bfb1,_0x5af1cd){return _0x58bfb1===_0x5af1cd;},'QxMGG':_0xb4d9de(0x159),'kSRhj':function(_0x1d2c73,_0x290375){return _0x1d2c73!==_0x290375;},'ZaKQM':function(_0x108be3,_0x516085){return _0x108be3===_0x516085;},'ktAoF':function(_0x5acd90,_0x129180){return _0x5acd90(_0x129180);},'xPjVE':function(_0x2c93ef,_0x35478c){return _0x2c93ef===_0x35478c;},'Jvqtd':function(_0x2d3be5,_0x51bcd2){return _0x2d3be5!==_0x51bcd2;},'CIuKZ':function(_0x29c43b,_0x52495e){return _0x29c43b(_0x52495e);},'OZwuJ':_0xb4d9de(0x1a8),'MrufC':function(_0x2ebf79,_0x320397){return _0x2ebf79(_0x320397);},'AKlMt':function(_0x2b4ba6,_0x140289){return _0x2b4ba6(_0x140289);},'wXqJO':_0xb4d9de(0x326),'ojIak':_0xb4d9de(0x180),'uEdzH':function(_0x2c8a0f,_0x321124){return _0x2c8a0f>=_0x321124;},'ChbpB':function(_0x400b4c,_0x14d92d){return _0x400b4c<_0x14d92d;},'ARupe':function(_0x157b6f,_0x513a4e){return _0x157b6f<=_0x513a4e;}};if(_0xd39111[_0xb4d9de(0x1c9)](_0x2b84bf[_0xb4d9de(0x1a7)],_0xd39111[_0xb4d9de(0x248)]))return _0xd39111['kSRhj'](_0x3bdb09,undefined)&&_0x3bdb09!==null;if(_0xd39111[_0xb4d9de(0xdd)](_0x3bdb09,undefined)||_0xd39111[_0xb4d9de(0xdd)](_0x3bdb09,null))return![];if(_0xd39111[_0xb4d9de(0xdd)](_0x2b84bf[_0xb4d9de(0x1a7)],'in')){const _0x98c579=(_0x2b84bf[_0xb4d9de(0x364)]||[])[_0xb4d9de(0x37b)](_0x40874e=>String(_0x40874e)[_0xb4d9de(0x284)]());return _0x98c579['includes'](_0xd39111[_0xb4d9de(0xf8)](String,_0x3bdb09)[_0xb4d9de(0x284)]());}switch(_0x2b84bf[_0xb4d9de(0x37d)]){case'eq':return _0xd39111['xPjVE'](_0xd39111[_0xb4d9de(0xf8)](String,_0x3bdb09)[_0xb4d9de(0x284)](),_0xd39111[_0xb4d9de(0xf8)](String,_0x2b84bf[_0xb4d9de(0xe8)])['toLowerCase']());case'ne':return _0xd39111[_0xb4d9de(0x230)](_0xd39111['CIuKZ'](String,_0x3bdb09)[_0xb4d9de(0x284)](),_0xd39111[_0xb4d9de(0x29f)](String,_0x2b84bf[_0xb4d9de(0xe8)])[_0xb4d9de(0x284)]());case _0xd39111[_0xb4d9de(0x1ce)]:return _0xd39111['MrufC'](String,_0x3bdb09)[_0xb4d9de(0x284)]()[_0xb4d9de(0x269)](_0xd39111['AKlMt'](String,_0x2b84bf[_0xb4d9de(0xe8)])[_0xb4d9de(0x284)]());case'gt':case _0xd39111[_0xb4d9de(0x285)]:case'lt':case _0xd39111[_0xb4d9de(0x3a4)]:{const _0x337323=_0xd39111[_0xb4d9de(0x29f)](Number,_0x3bdb09),_0x272257=_0xd39111[_0xb4d9de(0xf8)](Number,_0x2b84bf[_0xb4d9de(0xe8)]);if(!Number[_0xb4d9de(0x34b)](_0x337323)||!Number[_0xb4d9de(0x34b)](_0x272257))return![];return _0x2b84bf['cmp']==='gt'?_0x337323>_0x272257:_0xd39111[_0xb4d9de(0x1c9)](_0x2b84bf['cmp'],_0xd39111['wXqJO'])?_0xd39111[_0xb4d9de(0x1f6)](_0x337323,_0x272257):_0xd39111[_0xb4d9de(0xdd)](_0x2b84bf[_0xb4d9de(0x37d)],'lt')?_0xd39111[_0xb4d9de(0x259)](_0x337323,_0x272257):_0xd39111['ARupe'](_0x337323,_0x272257);}default:return![];}}function evalPayloadFilters(_0x4b6957,_0x1fb81e,_0x1a21e0){const _0x3f323a=_0x4e3d16,_0x3e2926={'RkPWs':function(_0x5aeb0e,_0x15efe8){return _0x5aeb0e===_0x15efe8;},'CmieY':function(_0xa14263,_0x289ef6,_0x31743f){return _0xa14263(_0x289ef6,_0x31743f);}};if(!_0x1fb81e||_0x3e2926[_0x3f323a(0x25a)](_0x1fb81e['length'],0x0))return!![];for(const _0x557c4c of _0x1fb81e){const _0x433b1e=payloadValue(_0x4b6957,_0x557c4c[_0x3f323a(0x298)],_0x1a21e0);if(!_0x3e2926['CmieY'](evalPayloadClause,_0x433b1e,_0x557c4c))return![];}return!![];}function extractFromDoc(_0x4af649,_0x2772f0){const _0x9c4af0=_0x4e3d16,_0x4730af={'RNTVX':function(_0x8b015,_0x2dcd2f){return _0x8b015||_0x2dcd2f;},'nkTjq':'logs','SmfHA':function(_0xc8f588,_0x10dbd5,_0x41001e,_0x2c5853){return _0xc8f588(_0x10dbd5,_0x41001e,_0x2c5853);},'wQWvw':function(_0x145cbd,_0x5e3d9c){return _0x145cbd===_0x5e3d9c;},'GtTpV':'string','nWqJR':function(_0x3b3d72,_0x47205e){return _0x3b3d72!==_0x47205e;},'SaHpM':_0x9c4af0(0x228),'nczJh':_0x9c4af0(0x124),'hTfvl':function(_0x3fcc89,_0x2a4237){return _0x3fcc89!==_0x2a4237;}},_0x1c96fd=_0x4730af['wQWvw'](typeof(_0x4af649&&_0x4af649[_0x9c4af0(0x10f)]),_0x4730af[_0x9c4af0(0x152)])?_0x4af649[_0x9c4af0(0x10f)]:'',_0x4859c4={};for(const {regex:_0x42b0ed}of _0x2772f0){if(_0x4730af[_0x9c4af0(0x12d)](_0x4730af[_0x9c4af0(0x1b1)],_0x9c4af0(0x228)))return(_0x20fbe7[_0x4730af['RNTVX'](_0x1b2cd5,_0x4730af[_0x9c4af0(0x221)])]||_0x1b9109[_0x9c4af0(0x126)])[_0x9c4af0(0xcf)];else{_0x42b0ed[_0x9c4af0(0x208)]=0x0;const _0x325bc1=_0x42b0ed['exec'](_0x1c96fd);if(!_0x325bc1)return{'ok':![],'extracted':_0x4859c4};if(_0x325bc1['groups']){if(_0x4730af[_0x9c4af0(0x153)]!==_0x9c4af0(0x124))_0x4730af[_0x9c4af0(0xd5)](_0x2c2cf3,_0x5e8f0c[_0x9c4af0(0x362)]&&_0x52a0be[_0x9c4af0(0x362)][_0x9c4af0(0x235)]||[],_0x55c47e+0x1,_0x12331b);else for(const [_0x4136a5,_0x5c2a63]of Object[_0x9c4af0(0x312)](_0x325bc1[_0x9c4af0(0x233)])){if(_0x4730af[_0x9c4af0(0x1fc)](_0x5c2a63,undefined))_0x4859c4[_0x4136a5]=_0x5c2a63;}}}}return{'ok':!![],'extracted':_0x4859c4};}function percentile(_0x50a951,_0x4cf12e){const _0x2352e9=_0x4e3d16,_0x242ed3={'EFkGT':function(_0x3d1d3c,_0x5bd1f6){return _0x3d1d3c*_0x5bd1f6;},'TlMYX':function(_0xa6873d,_0x397098){return _0xa6873d/_0x397098;},'vQaiv':function(_0x4441e3,_0x40f10f){return _0x4441e3-_0x40f10f;},'MgYiU':function(_0x340ed5,_0x4c7374){return _0x340ed5+_0x4c7374;},'CbhLr':function(_0x546b8a,_0x246bf8){return _0x546b8a-_0x246bf8;}};if(_0x50a951[_0x2352e9(0x25f)]===0x0)return null;if(_0x50a951[_0x2352e9(0x25f)]===0x1)return _0x50a951[0x0];const _0x19d664=_0x242ed3['EFkGT'](_0x242ed3[_0x2352e9(0x388)](_0x4cf12e,0x64),_0x242ed3[_0x2352e9(0x10e)](_0x50a951[_0x2352e9(0x25f)],0x1)),_0x69f5d5=Math[_0x2352e9(0x382)](_0x19d664),_0x5b21bd=Math[_0x2352e9(0x1b2)](_0x19d664);if(_0x69f5d5===_0x5b21bd)return _0x50a951[_0x69f5d5];return _0x242ed3[_0x2352e9(0x347)](_0x50a951[_0x69f5d5],_0x242ed3[_0x2352e9(0x299)](_0x50a951[_0x5b21bd],_0x50a951[_0x69f5d5])*(_0x19d664-_0x69f5d5));}function finalizeMetric(_0x49eadf,_0x106e1b){const _0x54e4cf=_0x4e3d16,_0x3e8ea1={'wNZPa':function(_0x5f3c64,_0x69a0f6){return _0x5f3c64===_0x69a0f6;},'ArZwl':'sum','uoqnO':function(_0x53d528,_0x122aa2){return _0x53d528===_0x122aa2;},'GGDqU':_0x54e4cf(0x31c),'hhNvR':function(_0x3ff928,_0x853293){return _0x3ff928/_0x853293;},'iHmlL':function(_0x531719,_0xab9160){return _0x531719===_0xab9160;},'vROfF':_0x54e4cf(0x2be),'ikesf':function(_0x2e396b,_0x5174fd){return _0x2e396b===_0x5174fd;},'bOkIZ':function(_0x375de3,_0x14d14d){return _0x375de3===_0x14d14d;},'SaCGk':function(_0x50b951,_0x12d95d){return _0x50b951===_0x12d95d;},'GEJkr':function(_0x50c6fa,_0x21f42b,_0x14661b){return _0x50c6fa(_0x21f42b,_0x14661b);}};if(_0x3e8ea1[_0x54e4cf(0x39c)](_0x106e1b[_0x54e4cf(0x25f)],0x0))return null;if(_0x49eadf===_0x3e8ea1[_0x54e4cf(0x384)])return _0x106e1b[_0x54e4cf(0x307)]((_0xe15e4a,_0x48617a)=>_0xe15e4a+_0x48617a,0x0);if(_0x3e8ea1[_0x54e4cf(0x1eb)](_0x49eadf,_0x3e8ea1[_0x54e4cf(0x367)]))return _0x3e8ea1[_0x54e4cf(0xc8)](_0x106e1b[_0x54e4cf(0x307)]((_0x290536,_0x2b63c8)=>_0x290536+_0x2b63c8,0x0),_0x106e1b[_0x54e4cf(0x25f)]);if(_0x3e8ea1[_0x54e4cf(0x118)](_0x49eadf,_0x3e8ea1[_0x54e4cf(0x3ce)]))return Math[_0x54e4cf(0x2be)](..._0x106e1b);if(_0x3e8ea1[_0x54e4cf(0x2d8)](_0x49eadf,_0x54e4cf(0x34f)))return Math[_0x54e4cf(0x34f)](..._0x106e1b);const _0x5a4455=_0x106e1b[_0x54e4cf(0x2ef)]()[_0x54e4cf(0x2eb)]((_0x1d7b76,_0x2a44bc)=>_0x1d7b76-_0x2a44bc);if(_0x3e8ea1[_0x54e4cf(0x32a)](_0x49eadf,_0x54e4cf(0x181)))return percentile(_0x5a4455,0x5f);if(_0x3e8ea1[_0x54e4cf(0x2f5)](_0x49eadf,_0x54e4cf(0x139)))return _0x3e8ea1[_0x54e4cf(0x161)](percentile,_0x5a4455,0x63);return null;}function metricLabel(_0x43f669){const _0x29dd74=_0x4e3d16,_0x41b25a={'GKfAI':function(_0xbd0ba7,_0x268217){return _0xbd0ba7===_0x268217;},'VlyeX':_0x29dd74(0x220)};return _0x41b25a['GKfAI'](_0x43f669[_0x29dd74(0x2f0)],_0x29dd74(0x220))?_0x41b25a[_0x29dd74(0x1ed)]:_0x43f669['type']+'('+_0x43f669[_0x29dd74(0x298)]+')';}function aggregateServerSide(_0x252b53,_0xa81a52){const _0x14c470=_0x4e3d16,_0x571257={'AICJT':function(_0x1cba51,_0x196168){return _0x1cba51(_0x196168);},'OIWuF':function(_0x16cf87,_0x44f3af){return _0x16cf87===_0x44f3af;},'sNrly':_0x14c470(0x145),'KWddW':function(_0x3490bf,_0x3ddaa8,_0x16cf6f){return _0x3490bf(_0x3ddaa8,_0x16cf6f);},'FDRPB':function(_0xa58fa5,_0x1e2cc5,_0x1600fe,_0x31d8cf){return _0xa58fa5(_0x1e2cc5,_0x1600fe,_0x31d8cf);},'gTpcx':function(_0x172a52,_0xeb63fb,_0xf91ae2,_0x1740ea,_0x93ae42,_0x53031e){return _0x172a52(_0xeb63fb,_0xf91ae2,_0x1740ea,_0x93ae42,_0x53031e);},'MSQnO':function(_0x52fb8,_0x33cee2){return _0x52fb8===_0x33cee2;},'KKlWq':function(_0x43c333,_0x320002){return _0x43c333!==_0x320002;},'vPSgD':_0x14c470(0x1b3),'VMNZL':_0x14c470(0x220),'KgonR':'sqYjt','PKPrI':function(_0x56d59f,_0x4fb761){return _0x56d59f!==_0x4fb761;}},{groupby:_0x17e861,calculate:_0x4ad049,regexes:_0x1c35cc,extracted:_0x5b2d49,payloadFilters:_0x57c598}=_0xa81a52,_0x529b76=new Map();let _0x4defa4=0x0;for(const _0x3fee68 of _0x252b53){const _0x3b7d62=_0x3fee68&&_0x3fee68[_0x14c470(0xff)]||{},{ok:_0x43d81a,extracted:_0x4828d1}=_0x571257[_0x14c470(0x2ee)](extractFromDoc,_0x3b7d62,_0x1c35cc);if(!_0x43d81a)continue;const _0x52e6db={};if(!_0x571257[_0x14c470(0xfb)](evalPayloadFilters,_0x3b7d62,_0x57c598,_0x52e6db))continue;_0x4defa4++;const _0x52feb2=[];let _0x38aa95=![];for(const _0x3b0204 of _0x17e861){const _0x4cbde2=_0x571257[_0x14c470(0x31d)](resolveScanValue,_0x3b7d62,_0x3b0204,_0x4828d1,_0x5b2d49,_0x52e6db);if(_0x4cbde2===undefined||_0x571257['OIWuF'](_0x4cbde2,null)||_0x571257[_0x14c470(0x1b4)](_0x4cbde2,'')){_0x38aa95=!![];break;}_0x52feb2[_0x14c470(0x370)](_0x571257[_0x14c470(0xf0)](String,_0x4cbde2));}if(_0x38aa95)continue;const _0x20aa74=_0x52feb2['join']('\x00');let _0x58e43c=_0x529b76[_0x14c470(0x1d3)](_0x20aa74);if(!_0x58e43c){if(_0x571257['KKlWq'](_0x571257[_0x14c470(0x28f)],_0x14c470(0x1b3)))return{'bool':{'should':[_0x571257[_0x14c470(0xf0)](_0x2b3207,_0x36a6d9[_0x14c470(0x2e6)]),{'match_phrase':{[_0x13d186[_0x14c470(0x2aa)]]:_0x489837[_0x14c470(0xe8)]}}],'minimum_should_match':0x1}};else{const _0x45425b={};_0x17e861[_0x14c470(0x1e1)]((_0x1f4819,_0x55b122)=>{_0x45425b[_0x1f4819]=_0x52feb2[_0x55b122];}),_0x58e43c={'dims':_0x45425b,'count':0x0,'values':[]},_0x529b76[_0x14c470(0x30b)](_0x20aa74,_0x58e43c);}}_0x58e43c[_0x14c470(0x220)]++;if(_0x571257['KKlWq'](_0x4ad049['type'],_0x571257[_0x14c470(0xd4)])){if('iTxPf'===_0x571257['KgonR']){const _0x157185=_0x46e500[_0x5626fc];return _0x571257[_0x14c470(0xf0)](_0x34cba2,_0x1a4850)||_0x17b55e(_0x157185&&(_0x571257['OIWuF'](_0x157185['type'],_0x14c470(0x38c))||_0x157185[_0x14c470(0x2f0)]===_0x571257[_0x14c470(0x20b)]));}else{const _0x18ce09=resolveScanValue(_0x3b7d62,_0x4ad049[_0x14c470(0x298)],_0x4828d1,_0x5b2d49,_0x52e6db),_0x126bf0=toNumber(_0x18ce09);if(_0x571257['PKPrI'](_0x126bf0,null))_0x58e43c[_0x14c470(0x364)][_0x14c470(0x370)](_0x126bf0);}}}const _0x484473=[];for(const _0x137d2e of _0x529b76['values']()){const _0x3d2099=_0x4ad049['type']===_0x571257['VMNZL']?_0x137d2e[_0x14c470(0x220)]:finalizeMetric(_0x4ad049[_0x14c470(0x2f0)],_0x137d2e[_0x14c470(0x364)]);_0x484473[_0x14c470(0x370)](Object[_0x14c470(0x330)]({},_0x137d2e['dims'],{'value':_0x3d2099}));}return _0x571257[_0x14c470(0x2ee)](sortRows,_0x484473,_0xa81a52[_0x14c470(0x2eb)]),{'rows':_0x484473,'matched':_0x4defa4};}function sortRows(_0x2cd8d9,_0x2b976e){const _0x1d8377=_0x4e3d16,_0x340c3f={'jcCID':function(_0x553d74,_0x4d2034){return _0x553d74===_0x4d2034;},'baxgu':function(_0x4a9b90,_0x15e220){return _0x4a9b90===_0x15e220;},'jwSWe':function(_0x31db45,_0x399a1a){return _0x31db45<_0x399a1a;},'OrvBx':function(_0x1e896b,_0x28186a){return _0x1e896b===_0x28186a;},'tOiKG':_0x1d8377(0x31a)},_0x119825=_0x340c3f[_0x1d8377(0x254)](_0x2b976e,_0x340c3f[_0x1d8377(0x183)])?0x1:-0x1;_0x2cd8d9[_0x1d8377(0x2eb)]((_0x36cff1,_0x20fe71)=>{const _0x39482b=_0x1d8377,_0x111d31=_0x340c3f[_0x39482b(0x342)](_0x36cff1[_0x39482b(0xe8)],null)||_0x340c3f[_0x39482b(0x342)](_0x36cff1[_0x39482b(0xe8)],undefined)?-Infinity:_0x36cff1[_0x39482b(0xe8)],_0xc3634f=_0x340c3f[_0x39482b(0x342)](_0x20fe71['value'],null)||_0x340c3f[_0x39482b(0x342)](_0x20fe71[_0x39482b(0xe8)],undefined)?-Infinity:_0x20fe71[_0x39482b(0xe8)];if(_0x340c3f[_0x39482b(0x390)](_0x111d31,_0xc3634f))return 0x0;return _0x340c3f[_0x39482b(0x12e)](_0x111d31,_0xc3634f)?-_0x119825:_0x119825;});}module[_0x4e3d16(0xe2)]={'MAX_QUERY_LEN':MAX_QUERY_LEN,'MAX_REGEXES':MAX_REGEXES,'MAX_SCAN_DOCS':MAX_SCAN_DOCS,'TERMS_CAP':TERMS_CAP,'DEFAULT_HIT_SIZE':DEFAULT_HIT_SIZE,'MAX_HIT_SIZE':MAX_HIT_SIZE,'TIME_FIELD':TIME_FIELD,'LOG_FIELD_ALLOWLIST':LOG_FIELD_ALLOWLIST,'LOG_NUMERIC_FIELDS':LOG_NUMERIC_FIELDS,'METRIC_FUNCS':METRIC_FUNCS,'DslError':DslError,'parseQuery':parseQuery,'parseCalculate':parseCalculate,'normalizeRegexSource':normalizeRegexSource,'buildOpenSearchQuery':buildOpenSearchQuery,'compileWhere':compileWhere,'timeFieldFor':timeFieldFor,'aggPathFor':aggPathFor,'extractContains':extractContains,'compileAstFor':compileAstFor,'REQUESTS_HITS_SOURCE':REQUESTS_HITS_SOURCE,'clauseToOpenSearch':clauseToOpenSearch,'sourceFieldsFor':sourceFieldsFor,'metricLabel':metricLabel,'buildTermsAgg':buildTermsAgg,'parseTermsAgg':parseTermsAgg,'metricSubAgg':metricSubAgg,'readNativeMetric':readNativeMetric,'extractFromDoc':extractFromDoc,'aggregateServerSide':aggregateServerSide,'sortRows':sortRows,'finalizeMetric':finalizeMetric,'percentile':percentile,'getPath':getPath,'isBodyPath':isBodyPath,'isResponsePath':isResponsePath,'isPayloadPath':isPayloadPath,'safeJsonParse':safeJsonParse,'payloadValue':payloadValue,'evalPayloadFilters':evalPayloadFilters,'flattenLeafPaths':flattenLeafPaths};