boletosimples 0.6.0 → 2.1.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 (138) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +16 -12
  3. data/README.md +21 -59
  4. data/lib/boletosimples/configuration.rb +25 -28
  5. data/lib/boletosimples/last_request.rb +17 -10
  6. data/lib/boletosimples/middlewares/bearer.rb +12 -0
  7. data/lib/boletosimples/middlewares/custom_headers.rb +12 -0
  8. data/lib/boletosimples/middlewares/debug.rb +30 -0
  9. data/lib/boletosimples/middlewares/last_request.rb +3 -1
  10. data/lib/boletosimples/middlewares/raise_error.rb +9 -2
  11. data/lib/boletosimples/middlewares/user_agent.rb +3 -1
  12. data/lib/boletosimples/resources/bank_billet.rb +5 -11
  13. data/lib/boletosimples/resources/bank_billet_account.rb +3 -1
  14. data/lib/boletosimples/resources/bank_billet_discharge.rb +3 -1
  15. data/lib/boletosimples/resources/bank_billet_payment.rb +3 -1
  16. data/lib/boletosimples/resources/bank_billet_remittance.rb +3 -1
  17. data/lib/boletosimples/resources/base_model.rb +3 -1
  18. data/lib/boletosimples/resources/customer.rb +3 -1
  19. data/lib/boletosimples/resources/customer_import.rb +5 -3
  20. data/lib/boletosimples/resources/customer_subscription.rb +3 -10
  21. data/lib/boletosimples/resources/customer_subscription_import.rb +5 -3
  22. data/lib/boletosimples/resources/discharge.rb +4 -11
  23. data/lib/boletosimples/resources/email_delivery.rb +3 -1
  24. data/lib/boletosimples/resources/event.rb +3 -1
  25. data/lib/boletosimples/resources/installment.rb +3 -1
  26. data/lib/boletosimples/resources/remittance.rb +3 -1
  27. data/lib/boletosimples/resources/sms_delivery.rb +6 -0
  28. data/lib/boletosimples/resources/transaction.rb +3 -1
  29. data/lib/boletosimples/resources/webhook.rb +3 -1
  30. data/lib/boletosimples/resources/webhook_delivery.rb +3 -1
  31. data/lib/boletosimples/response_error.rb +10 -5
  32. data/lib/boletosimples/version.rb +3 -1
  33. data/lib/boletosimples.rb +6 -6
  34. data/spec/boletosimples/configuration_spec.rb +67 -80
  35. data/spec/boletosimples/last_request_spec.rb +17 -28
  36. data/spec/boletosimples/middlewares/custom_headers_spec.rb +26 -0
  37. data/spec/boletosimples/resources/bank_billet_account_spec.rb +57 -33
  38. data/spec/boletosimples/resources/bank_billet_discharge_spec.rb +7 -12
  39. data/spec/boletosimples/resources/bank_billet_payment_spec.rb +7 -12
  40. data/spec/boletosimples/resources/bank_billet_remittance_spec.rb +7 -12
  41. data/spec/boletosimples/resources/bank_billet_spec.rb +56 -42
  42. data/spec/boletosimples/resources/customer_import_spec.rb +41 -30
  43. data/spec/boletosimples/resources/customer_spec.rb +57 -39
  44. data/spec/boletosimples/resources/customer_subscription_import_spec.rb +41 -30
  45. data/spec/boletosimples/resources/customer_subscription_spec.rb +61 -33
  46. data/spec/boletosimples/resources/discharge_spec.rb +64 -11
  47. data/spec/boletosimples/resources/email_delivery_spec.rb +6 -11
  48. data/spec/boletosimples/resources/event_spec.rb +7 -12
  49. data/spec/boletosimples/resources/installment_spec.rb +61 -32
  50. data/spec/boletosimples/resources/remittance_spec.rb +7 -12
  51. data/spec/boletosimples/resources/sms_delivery_spec.rb +12 -0
  52. data/spec/boletosimples/resources/transactions_spec.rb +7 -12
  53. data/spec/boletosimples/resources/webhook_delivery_spec.rb +7 -12
  54. data/spec/boletosimples/resources/webhook_spec.rb +7 -12
  55. data/spec/fixtures/discharge.RET +3 -0
  56. data/spec/fixtures/vcr_cassettes/custom_headers.yml +113 -0
  57. data/spec/fixtures/vcr_cassettes/last_request/bank_billets.yml +409 -95
  58. data/spec/fixtures/vcr_cassettes/resources/bank_billet/all.yml +101 -99
  59. data/spec/fixtures/vcr_cassettes/resources/bank_billet/cancel/success.yml +55 -95
  60. data/spec/fixtures/vcr_cassettes/resources/bank_billet/create/invalid_params.yml +55 -27
  61. data/spec/fixtures/vcr_cassettes/resources/bank_billet/create/invalid_root.yml +51 -24
  62. data/spec/fixtures/vcr_cassettes/resources/bank_billet/create/valid.yml +64 -34
  63. data/spec/fixtures/vcr_cassettes/resources/bank_billet/duplicate/success.yml +97 -0
  64. data/spec/fixtures/vcr_cassettes/resources/bank_billet/find.yml +73 -34
  65. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/all.yml +82 -27
  66. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/create/invalid_params.yml +57 -27
  67. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/create/invalid_root.yml +53 -26
  68. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/create/valid.yml +64 -28
  69. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/find.yml +61 -25
  70. data/spec/fixtures/vcr_cassettes/resources/bank_billet_discharge/all.yml +59 -46
  71. data/spec/fixtures/vcr_cassettes/resources/bank_billet_payment/all.yml +74 -71
  72. data/spec/fixtures/vcr_cassettes/resources/bank_billet_remittance/all.yml +63 -47
  73. data/spec/fixtures/vcr_cassettes/resources/customer/all.yml +141 -39
  74. data/spec/fixtures/vcr_cassettes/resources/customer/create/invalid_params.yml +54 -25
  75. data/spec/fixtures/vcr_cassettes/resources/customer/create/invalid_root.yml +54 -24
  76. data/spec/fixtures/vcr_cassettes/resources/customer/create/valid.yml +56 -28
  77. data/spec/fixtures/vcr_cassettes/resources/customer/find.yml +56 -26
  78. data/spec/fixtures/vcr_cassettes/resources/customer_import/all.yml +58 -59
  79. data/spec/fixtures/vcr_cassettes/resources/customer_import/create/invalid_params.yml +53 -51
  80. data/spec/fixtures/vcr_cassettes/resources/customer_import/create/invalid_root.yml +54 -52
  81. data/spec/fixtures/vcr_cassettes/resources/customer_import/create/valid.yml +58 -67
  82. data/spec/fixtures/vcr_cassettes/resources/customer_import/find.yml +55 -53
  83. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/all.yml +65 -51
  84. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/create/invalid_params.yml +56 -50
  85. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/create/invalid_root.yml +52 -48
  86. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/create/valid.yml +63 -52
  87. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/find.yml +61 -51
  88. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/next_charge.yml +60 -132
  89. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/all.yml +58 -54
  90. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/create/invalid_params.yml +53 -52
  91. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/create/invalid_root.yml +55 -53
  92. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/create/valid.yml +58 -69
  93. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/find.yml +55 -54
  94. data/spec/fixtures/vcr_cassettes/resources/discharge/all.yml +63 -34
  95. data/spec/fixtures/vcr_cassettes/resources/discharge/create/invalid_params.yml +86 -0
  96. data/spec/fixtures/vcr_cassettes/resources/discharge/create/invalid_root.yml +85 -0
  97. data/spec/fixtures/vcr_cassettes/resources/discharge/create/valid.yml +100 -0
  98. data/spec/fixtures/vcr_cassettes/resources/discharge/find.yml +89 -0
  99. data/spec/fixtures/vcr_cassettes/resources/email_delivery/all.yml +40 -43
  100. data/spec/fixtures/vcr_cassettes/resources/event/all.yml +326 -167
  101. data/spec/fixtures/vcr_cassettes/resources/installment/all.yml +113 -51
  102. data/spec/fixtures/vcr_cassettes/resources/installment/create/invalid_params.yml +57 -52
  103. data/spec/fixtures/vcr_cassettes/resources/installment/create/invalid_root.yml +52 -48
  104. data/spec/fixtures/vcr_cassettes/resources/installment/create/valid.yml +63 -52
  105. data/spec/fixtures/vcr_cassettes/resources/installment/find.yml +83 -51
  106. data/spec/fixtures/vcr_cassettes/resources/remittance/all.yml +83 -62
  107. data/spec/fixtures/vcr_cassettes/resources/sns_delivery/all.yml +89 -0
  108. data/spec/fixtures/vcr_cassettes/resources/transaction/all.yml +73 -60
  109. data/spec/fixtures/vcr_cassettes/resources/web_hook/all.yml +59 -34
  110. data/spec/fixtures/vcr_cassettes/resources/webhook_delivery/all.yml +2684 -55
  111. data/spec/spec_helper.rb +3 -20
  112. data/spec/support/stub_env.rb +7 -0
  113. data/spec/support/vcr.rb +3 -4
  114. metadata +42 -176
  115. data/.coveralls.yml +0 -2
  116. data/.gitignore +0 -19
  117. data/.ruby-version +0 -1
  118. data/.travis.yml +0 -46
  119. data/Gemfile +0 -4
  120. data/Rakefile +0 -14
  121. data/boletosimples.gemspec +0 -38
  122. data/gemfiles/rails_42.gemfile +0 -8
  123. data/gemfiles/rails_50.gemfile +0 -8
  124. data/gemfiles/rails_51.gemfile +0 -8
  125. data/gemfiles/rails_52.gemfile +0 -9
  126. data/lib/boletosimples/extra.rb +0 -8
  127. data/lib/boletosimples/resources/partner/user.rb +0 -7
  128. data/lib/oauth2_patch.rb +0 -24
  129. data/spec/boletosimples/extra_spec.rb +0 -31
  130. data/spec/boletosimples/resources/partner/user_spec.rb +0 -19
  131. data/spec/fixtures/vcr_cassettes/configuration/client_credentials/invalid.yml +0 -64
  132. data/spec/fixtures/vcr_cassettes/configuration/client_credentials/valid.yml +0 -56
  133. data/spec/fixtures/vcr_cassettes/extra/userinfo/authenticated.yml +0 -58
  134. data/spec/fixtures/vcr_cassettes/extra/userinfo/not_authenticated.yml +0 -54
  135. data/spec/fixtures/vcr_cassettes/last_request/userinfo.yml +0 -58
  136. data/spec/fixtures/vcr_cassettes/resources/bank_billet/cancel/failure.yml +0 -118
  137. data/spec/fixtures/vcr_cassettes/resources/partner/user/create.yml +0 -60
  138. data/spec/spec.opts +0 -8
@@ -2,84 +2,2713 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://sandbox.boletosimples.com.br/api/v1/webhook_deliveries?access_token=BOLETOSIMPLES_ACCESS_TOKEN
5
+ uri: https://api-sandbox.kobana.com.br/v1/webhook_deliveries
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - BoletoSimples Ruby Client v0.2.3 (contato@boletosimples.com.br)
11
+ - email@minhaempresa.com.br
12
12
  Authorization:
13
- - Token token="BOLETOSIMPLES_ACCESS_TOKEN"
13
+ - Bearer BOLETOSIMPLES_API_TOKEN
14
+ Accept:
15
+ - application/json
14
16
  Accept-Encoding:
15
17
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
- Accept:
17
- - "*/*"
18
18
  response:
19
19
  status:
20
20
  code: 200
21
21
  message: OK
22
22
  headers:
23
- Connection:
24
- - keep-alive
25
23
  Content-Type:
26
24
  - application/json; charset=utf-8
27
25
  Transfer-Encoding:
28
26
  - chunked
29
- Status:
30
- - 200 OK
31
- Cache-Control:
32
- - must-revalidate, private, max-age=0
27
+ Connection:
28
+ - keep-alive
29
+ Server:
30
+ - Cowboy
31
+ X-Frame-Options:
32
+ - DENY
33
+ X-Xss-Protection:
34
+ - 1; mode=block
35
+ X-Content-Type-Options:
36
+ - nosniff
37
+ X-Download-Options:
38
+ - noopen
39
+ X-Permitted-Cross-Domain-Policies:
40
+ - none
41
+ Referrer-Policy:
42
+ - strict-origin-when-cross-origin
43
+ Expect-Ct:
44
+ - max-age=0, report-uri="https://boletosimples.report-uri.com/r/d/ct/reportOnly"
45
+ Cross-Origin-Resource-Policy:
46
+ - cross-origin
47
+ Cross-Origin-Embedder-Policy:
48
+ - unsafe-none
49
+ Cross-Origin-Opener-Policy:
50
+ - unsafe-none
51
+ Link:
52
+ - <https://api-sandbox.kobana.com.br/api/v1/webhook_deliveries?page=2>; rel="next"
53
+ Per-Page:
54
+ - '50'
55
+ Page:
56
+ - ''
33
57
  X-Ratelimit-Limit:
34
- - '500'
35
- Date:
36
- - Mon, 24 Aug 2015 18:22:27 GMT
37
- Strict-Transport-Security:
38
- - max-age=2592000
58
+ - '100'
39
59
  X-Ratelimit-Remaining:
40
- - '491'
41
- Vary:
42
- - Accept-Encoding
43
- X-Request-Id:
44
- - 27610549-e053-4cce-b496-6e097d680193
45
- Total:
46
- - '1'
60
+ - '64'
47
61
  Etag:
48
- - W/"821177355d204f38ed3af15a2aecde23"
62
+ - W/"b45286d2a75cec94373233caf7bed406"
63
+ Cache-Control:
64
+ - must-revalidate, private, max-age=0
65
+ X-Request-Id:
66
+ - 46e67110-9ae5-4f18-add1-4dfba49792cf
49
67
  X-Runtime:
50
- - '0.065348'
68
+ - '0.219428'
69
+ Date:
70
+ - Tue, 22 Feb 2022 17:30:36 GMT
51
71
  X-Rack-Cache:
52
72
  - miss
53
- X-Powered-By:
54
- - Phusion Passenger 5.0.15
55
- Server:
56
- - nginx/1.8.0 + Phusion Passenger 5.0.15
73
+ Strict-Transport-Security:
74
+ - max-age=31556952; includeSubDomains; preload
75
+ Vary:
76
+ - Origin,Accept-Encoding
77
+ X-Rack-Cors:
78
+ - miss; no-origin
57
79
  Via:
58
- - 1.1 vegur
80
+ - 1.1 vegur, 1.1 6bcc5cb16e0756268a257daab0f6082c.cloudfront.net (CloudFront)
81
+ X-Cache:
82
+ - Miss from cloudfront
83
+ X-Amz-Cf-Pop:
84
+ - MIA3-C1
85
+ X-Amz-Cf-Id:
86
+ - NPAtlrP-kBXiUmaa3w1vRkohUsrVUsX94jNt5R2U79xKfLiysLWxhQ==
59
87
  body:
60
88
  encoding: UTF-8
61
- string: '[{"id":1434,"uid":"476750a1-bbdf-4e2c-b821-ce80d916af1d","url":"https://example.com","duration":194,"request_headers":{"X-BoletoSimples-Event":"ping","X-Hub-Signature":"sha1=fb0ba87d0416cfaadc762b7296f4a2edeeb3501b","X-BoletoSimples-Delivery-Id":"476750a1-bbdf-4e2c-b821-ce80d916af1d","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
62
- (sandbox)","Content-Type":"application/json"},"request_payload":{"event_code":"ping","webhook":{"id":48,"url":"https://example.com"}},"request_error":null,"response_body":"\u003c!doctype
63
- html\u003e\n\u003chtml\u003e\n\u003chead\u003e\n \u003ctitle\u003eExample
64
- Domain\u003c/title\u003e\n\n \u003cmeta charset=\"utf-8\" /\u003e\n \u003cmeta
65
- http-equiv=\"Content-type\" content=\"text/html; charset=utf-8\" /\u003e\n \u003cmeta
66
- name=\"viewport\" content=\"width=device-width, initial-scale=1\" /\u003e\n \u003cstyle
67
- type=\"text/css\"\u003e\n body {\n background-color: #f0f0f2;\n margin:
68
- 0;\n padding: 0;\n font-family: \"Open Sans\", \"Helvetica Neue\",
69
- Helvetica, Arial, sans-serif;\n \n }\n div {\n width:
70
- 600px;\n margin: 5em auto;\n padding: 50px;\n background-color:
71
- #fff;\n border-radius: 1em;\n }\n a:link, a:visited {\n color:
72
- #38488f;\n text-decoration: none;\n }\n @media (max-width: 700px)
73
- {\n body {\n background-color: #fff;\n }\n div
74
- {\n width: auto;\n margin: 0 auto;\n border-radius:
75
- 0;\n padding: 1em;\n }\n }\n \u003c/style\u003e \n\u003c/head\u003e\n\n\u003cbody\u003e\n\u003cdiv\u003e\n \u003ch1\u003eExample
76
- Domain\u003c/h1\u003e\n \u003cp\u003eThis domain is established to be used
77
- for illustrative examples in documents. You may use this\n domain in examples
78
- without prior coordination or asking for permission.\u003c/p\u003e\n \u003cp\u003e\u003ca
79
- href=\"http://www.iana.org/domains/example\"\u003eMore information...\u003c/a\u003e\u003c/p\u003e\n\u003c/div\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":200,"response_headers":{"accept-ranges":["bytes"],"cache-control":["max-age=604800"],"content-type":["text/html"],"date":["Mon,
80
- 24 Aug 2015 18:19:26 GMT"],"etag":["\"359670651\""],"expires":["Mon, 31 Aug
81
- 2015 18:19:26 GMT"],"last-modified":["Fri, 09 Aug 2013 23:54:35 GMT"],"server":["EOS
82
- (lax004/2816)"],"content-length":["1270"],"connection":["close"]},"response_message":"OK","delivered_at":"2015-08-24T15:19:26.452-03:00","event":null}]'
83
- http_version:
84
- recorded_at: Mon, 24 Aug 2015 18:22:27 GMT
85
- recorded_with: VCR 2.9.3
89
+ string: '[{"id":724188,"uid":"5555437c-428a-4d02-9f7b-9cc3b8cf4254","url":"http://requestb.in/1gsu9nc1","duration":16,"request_headers":{"X-BoletoSimples-Event":"import.processed","X-Hub-Signature":"sha1=05feb4057a109aaabb9459ec60aee930ce999d50","X-BoletoSimples-Delivery-Id":"5555437c-428a-4d02-9f7b-9cc3b8cf4254","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
90
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":1278,"created_rows":0,"enqueued_at":null,"started_at":"2022-02-22
91
+ 14:27:22 -0300","finished_at":"2022-02-22 14:27:23 -0300","processed_at":null,"failed_to_create_rows":0,"failed_to_update_rows":0,"import_errors":"ERR
92
+ max number of clients reached","processed_rows":0,"total_rows":null,"updated_rows":0,"source_file_name":"customers.csv","source_file_size":190,"status":"fatal_error","created_via_api":true},"changes":{"status":["started","fatal_error"],"import_errors":[null,"ERR
93
+ max number of clients reached"],"updated_at":["2022-02-22 14:27:22 -0300","2022-02-22
94
+ 14:27:23 -0300"],"finished_at":[null,"2022-02-22 14:27:23 -0300"]},"event_code":"import.processed","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:46-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
95
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
96
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
97
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
98
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
99
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
100
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
101
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
102
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
103
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
104
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
105
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
106
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
107
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
108
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
109
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
110
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
111
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
112
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
113
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
114
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
115
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
116
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
117
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
118
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
119
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
120
+ lg:leading-relaxed\"\u003eRay ID: 6e19f0404e127fed \u0026bull;\u003c/span\u003e\n \u003cspan
121
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
122
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:46 UTC\u003c/span\u003e\n \u003ch2
123
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
124
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
125
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
126
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
127
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
128
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
129
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
130
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
131
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
132
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
133
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
134
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
135
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
136
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
137
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
138
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
139
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
140
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
141
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f0404e127fed\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
142
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
143
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
144
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
145
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
146
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
147
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
148
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
149
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
150
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
151
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
152
+ 22 Feb 2022 17:29:46 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
153
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
154
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Tex9t0%2F2wYBW2ZbxI2QBVthW1TJdiBTXFlhtREuxiLe81YU6FEWip8orPypl%2F%2BGj6nVG7M4HN%2Bd6Y3zwzcLCD3Jlo3tnDXoQmevzoISMfxojnxM4DDYo3bpLuIeeXg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f0404e127fed-IAD"],"alt-svc":["h3=\":443\";
155
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:46-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:46-03:00","status":"failed","bank_billet_account_id":null,"content_type":"application/json","webhook_id":53,"event_code":"import.processed","resource_owner_id":1278},{"id":724187,"uid":"d9287026-19bd-48a0-b183-22240aaa338f","url":"http://requestb.in/1gsu9nc1","duration":24,"request_headers":{"X-BoletoSimples-Event":"bank_billet_remittance.created","X-Hub-Signature":"sha1=899d75ea6dda54cce656dcc2093801484b3cc92d","X-BoletoSimples-Delivery-Id":"d9287026-19bd-48a0-b183-22240aaa338f","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
156
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":433976,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472528,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
157
+ de Título","created_at":"2022-02-22T14:27:02-03:00"},"event_code":"bank_billet_remittance.created","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:46-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
158
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
159
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
160
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
161
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
162
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
163
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
164
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
165
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
166
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
167
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
168
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
169
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
170
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
171
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
172
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
173
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
174
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
175
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
176
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
177
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
178
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
179
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
180
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
181
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
182
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
183
+ lg:leading-relaxed\"\u003eRay ID: 6e19f0403e9081f1 \u0026bull;\u003c/span\u003e\n \u003cspan
184
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
185
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:46 UTC\u003c/span\u003e\n \u003ch2
186
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
187
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
188
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
189
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
190
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
191
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
192
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
193
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
194
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
195
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
196
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
197
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
198
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
199
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
200
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
201
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
202
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
203
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
204
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f0403e9081f1\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
205
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
206
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
207
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
208
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
209
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
210
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
211
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
212
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
213
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
214
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
215
+ 22 Feb 2022 17:29:46 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
216
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
217
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Mdq4MmJELAJPsV1XeLnRZ4VRU21QSSIW%2FAAVAT2z8piXFDXdY3jKGg9Zy6ZaevrdEa0rH9Ch92nk87A0WUKjy52eQs9xi5DKerdiPi29jnfiLjrtZ4dnBdjgYAJm%2Bw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f0403e9081f1-IAD"],"alt-svc":["h3=\":443\";
218
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:46-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:46-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"bank_billet_remittance.created","resource_owner_id":433976},{"id":724186,"uid":"e8218d3e-fa91-418a-b146-46514ff68ea6","url":"http://requestb.in/1gsu9nc1","duration":18,"request_headers":{"X-BoletoSimples-Event":"import.processed","X-Hub-Signature":"sha1=66c39dd0800fb059d88e7d026fb4ea83fb496502","X-BoletoSimples-Delivery-Id":"e8218d3e-fa91-418a-b146-46514ff68ea6","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
219
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":1277,"created_rows":0,"enqueued_at":null,"started_at":"2022-02-22
220
+ 14:27:22 -0300","finished_at":"2022-02-22 14:27:22 -0300","processed_at":null,"failed_to_create_rows":0,"failed_to_update_rows":0,"import_errors":"ERR
221
+ max number of clients reached","processed_rows":0,"total_rows":null,"updated_rows":0,"source_file_name":"customer_subscriptions.csv","source_file_size":239,"status":"fatal_error","created_via_api":true},"changes":{"status":["started","fatal_error"],"import_errors":[null,"ERR
222
+ max number of clients reached"],"updated_at":["2022-02-22 14:27:22 -0300","2022-02-22
223
+ 14:27:22 -0300"],"finished_at":[null,"2022-02-22 14:27:22 -0300"]},"event_code":"import.processed","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:46-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
224
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
225
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
226
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
227
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
228
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
229
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
230
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
231
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
232
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
233
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
234
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
235
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
236
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
237
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
238
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
239
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
240
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
241
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
242
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
243
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
244
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
245
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
246
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
247
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
248
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
249
+ lg:leading-relaxed\"\u003eRay ID: 6e19f0401be059df \u0026bull;\u003c/span\u003e\n \u003cspan
250
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
251
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:46 UTC\u003c/span\u003e\n \u003ch2
252
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
253
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
254
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
255
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
256
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
257
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
258
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
259
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
260
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
261
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
262
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
263
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
264
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
265
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
266
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
267
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
268
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
269
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
270
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f0401be059df\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
271
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
272
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
273
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
274
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
275
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
276
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
277
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
278
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
279
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
280
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
281
+ 22 Feb 2022 17:29:46 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
282
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
283
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=tHu%2FqTXAZ4Olexzl6jBH68AQRHl%2Bs7w668fF%2FF1SsLqTsSJMLaUnTT95nZiwzFKDPhFoSSBCDStUfoPCRBq0R1a1PU8KAILqLCSwzFyH9teew9mtFEGTii7r0dK1KA%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f0401be059df-IAD"],"alt-svc":["h3=\":443\";
284
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:46-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:46-03:00","status":"failed","bank_billet_account_id":null,"content_type":"application/json","webhook_id":53,"event_code":"import.processed","resource_owner_id":1277},{"id":724185,"uid":"c4d464be-8954-4770-9efb-992e5e48c997","url":"http://requestb.in/1gsu9nc1","duration":20,"request_headers":{"X-BoletoSimples-Event":"installment.generated","X-Hub-Signature":"sha1=1bffc11225280ad7908011dfc9391964c89363cf","X-BoletoSimples-Delivery-Id":"c4d464be-8954-4770-9efb-992e5e48c997","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
285
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":15264,"amount":1120.4,"cycle":"monthly","start_at":"2022-09-15","end_at":"2022-11-15","instructions":null,"customer_id":93340,"description":"Hospedagem","created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","customer_person_name":"Joao
286
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
287
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
288
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
289
+ de Janeiro","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"total":3,"bank_billet_account_id":659,"status":"generated","fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"days_for_discount":null,"discount_value":null,"discount_percentage":null,"bank_billet_layout_id":null,"url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_ids":[472526,472528,472527],"bank_billets":[{"id":472526,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
290
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
291
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
292
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
293
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rdvrov","formats":{"default":"https://sandbox.bole.to/3/rdvrov","png":"https://sandbox.bole.to/3/rdvrov.png","pdf":"https://sandbox.bole.to/3/rdvrov.pdf","boleto_hibrido":"https://sandbox.bole.to/3/rdvrov/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/rdvrov/boleto_pix","barcode":"https://sandbox.bole.to/3/rdvrov/barcode","envelope":"https://sandbox.bole.to/3/rdvrov/envelope","letter":"https://sandbox.bole.to/3/rdvrov/letter","line":"https://sandbox.bole.to/3/rdvrov/line","recibo":"https://sandbox.bole.to/3/rdvrov/recibo","carne":"https://sandbox.bole.to/3/rdvrov/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
294
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
295
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
296
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000082-0","processed_our_number_raw":"140000000000000820","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
297
+ 20000.100048 00000.008235 3 91090000112040","our_number":"000000000000082","customer_subscription_id":null,"installment_total":3,"installment_number":1,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10493910900001120401233220000100040000000823","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/rdvrov","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null},{"id":472528,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
298
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
299
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
300
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
301
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/yqrngb","formats":{"default":"https://sandbox.bole.to/3/yqrngb","png":"https://sandbox.bole.to/3/yqrngb.png","pdf":"https://sandbox.bole.to/3/yqrngb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/yqrngb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/yqrngb/boleto_pix","barcode":"https://sandbox.bole.to/3/yqrngb/barcode","envelope":"https://sandbox.bole.to/3/yqrngb/envelope","letter":"https://sandbox.bole.to/3/yqrngb/letter","line":"https://sandbox.bole.to/3/yqrngb/line","recibo":"https://sandbox.bole.to/3/yqrngb/recibo","carne":"https://sandbox.bole.to/3/yqrngb/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
302
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
303
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
304
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000084-7","processed_our_number_raw":"140000000000000847","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
305
+ 20000.100048 00000.008409 1 91710000112040","our_number":"000000000000084","customer_subscription_id":null,"installment_total":3,"installment_number":3,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/yqrngb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10491917100001120401233220000100040000000840","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/yqrngb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null},{"id":472527,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
306
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
307
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
308
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
309
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mvzyld","formats":{"default":"https://sandbox.bole.to/3/mvzyld","png":"https://sandbox.bole.to/3/mvzyld.png","pdf":"https://sandbox.bole.to/3/mvzyld.pdf","boleto_hibrido":"https://sandbox.bole.to/3/mvzyld/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/mvzyld/boleto_pix","barcode":"https://sandbox.bole.to/3/mvzyld/barcode","envelope":"https://sandbox.bole.to/3/mvzyld/envelope","letter":"https://sandbox.bole.to/3/mvzyld/letter","line":"https://sandbox.bole.to/3/mvzyld/line","recibo":"https://sandbox.bole.to/3/mvzyld/recibo","carne":"https://sandbox.bole.to/3/mvzyld/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
310
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
311
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
312
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000083-9","processed_our_number_raw":"140000000000000839","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
313
+ 20000.100048 00000.008318 9 91410000112040","our_number":"000000000000083","customer_subscription_id":null,"installment_total":3,"installment_number":2,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/mvzyld/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10499914100001120401233220000100040000000831","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/mvzyld","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null}],"notes":null,"payment_count":1,"tags":[],"tag_list":null,"prevent_registration":false,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_revoke":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"guarantor_name":null,"guarantor_cnpj_cpf":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"document_number":null,"document_date":null,"document_type":"02"},"changes":{"status":["processed","generated"],"updated_at":["2022-02-22
314
+ 14:27:02 -0300","2022-02-22 14:27:02 -0300"]},"event_code":"installment.generated","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:46-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
315
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
316
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
317
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
318
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
319
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
320
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
321
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
322
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
323
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
324
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
325
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
326
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
327
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
328
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
329
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
330
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
331
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
332
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
333
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
334
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
335
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
336
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
337
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
338
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
339
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
340
+ lg:leading-relaxed\"\u003eRay ID: 6e19f03efa895af3 \u0026bull;\u003c/span\u003e\n \u003cspan
341
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
342
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:46 UTC\u003c/span\u003e\n \u003ch2
343
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
344
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
345
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
346
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
347
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
348
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
349
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
350
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
351
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
352
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
353
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
354
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
355
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
356
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
357
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
358
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
359
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
360
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
361
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f03efa895af3\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
362
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
363
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
364
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
365
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
366
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
367
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
368
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
369
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
370
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
371
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
372
+ 22 Feb 2022 17:29:46 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
373
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
374
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=LPKd8N8hVxiiz02b4giLjBcTncXLeeo14il%2Fy6pTKoJwHCAEUqZeYccnxagZDlsjgVM839czYTelPzN5mVluHL3oMrqCPdktpzqsNqvQdy01jBLq6EdFEOPZFRRI9w%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f03efa895af3-IAD"],"alt-svc":["h3=\":443\";
375
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:46-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:46-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"installment.generated","resource_owner_id":15264},{"id":724184,"uid":"51f5ced3-6245-4bc5-a2e7-d251e1e020a8","url":"http://requestb.in/1gsu9nc1","duration":19,"request_headers":{"X-BoletoSimples-Event":"bank_billet_remittance.created","X-Hub-Signature":"sha1=efade02d88674f7c919ae9f41950625c51807a10","X-BoletoSimples-Delivery-Id":"51f5ced3-6245-4bc5-a2e7-d251e1e020a8","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
376
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":433975,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472526,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
377
+ de Título","created_at":"2022-02-22T14:27:02-03:00"},"event_code":"bank_billet_remittance.created","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:45-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
378
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
379
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
380
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
381
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
382
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
383
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
384
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
385
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
386
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
387
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
388
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
389
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
390
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
391
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
392
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
393
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
394
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
395
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
396
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
397
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
398
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
399
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
400
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
401
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
402
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
403
+ lg:leading-relaxed\"\u003eRay ID: 6e19f03e4bc357ca \u0026bull;\u003c/span\u003e\n \u003cspan
404
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
405
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:45 UTC\u003c/span\u003e\n \u003ch2
406
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
407
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
408
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
409
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
410
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
411
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
412
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
413
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
414
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
415
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
416
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
417
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
418
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
419
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
420
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
421
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
422
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
423
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
424
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f03e4bc357ca\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
425
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
426
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
427
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
428
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
429
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
430
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
431
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
432
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
433
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
434
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
435
+ 22 Feb 2022 17:29:45 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
436
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
437
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=rFUAKylewBRMrfP2mMHGEmN18SUZLFzHMaqLVBBrPXg15MmVXioXFGDef1d3kUmKT7Gx56GcWo5bsdjdUcF1Vnhjmj21u%2FBQHxQs85XGk9T0Bq0PGAJT4lhHVzJOaw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f03e4bc357ca-IAD"],"alt-svc":["h3=\":443\";
438
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:45-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:45-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"bank_billet_remittance.created","resource_owner_id":433975},{"id":724183,"uid":"cfe1ad4f-99bf-425d-8e5a-d78550503745","url":"http://requestb.in/1gsu9nc1","duration":92,"request_headers":{"X-BoletoSimples-Event":"installment.created","X-Hub-Signature":"sha1=84d5e9d443f9d8ad7b110e184b74ce25e364e2e4","X-BoletoSimples-Delivery-Id":"cfe1ad4f-99bf-425d-8e5a-d78550503745","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
439
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":15264,"amount":1120.4,"cycle":"monthly","start_at":"2022-09-15","end_at":"2022-11-15","instructions":null,"customer_id":93340,"description":"Hospedagem","created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","customer_person_name":"Joao
440
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
441
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
442
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
443
+ de Janeiro","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"total":3,"bank_billet_account_id":659,"status":"processed","fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"days_for_discount":null,"discount_value":null,"discount_percentage":null,"bank_billet_layout_id":null,"url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_ids":[472526,472527,472528],"bank_billets":[{"id":472526,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
444
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
445
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
446
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
447
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rdvrov","formats":{"default":"https://sandbox.bole.to/3/rdvrov","png":"https://sandbox.bole.to/3/rdvrov.png","pdf":"https://sandbox.bole.to/3/rdvrov.pdf","boleto_hibrido":"https://sandbox.bole.to/3/rdvrov/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/rdvrov/boleto_pix","barcode":"https://sandbox.bole.to/3/rdvrov/barcode","envelope":"https://sandbox.bole.to/3/rdvrov/envelope","letter":"https://sandbox.bole.to/3/rdvrov/letter","line":"https://sandbox.bole.to/3/rdvrov/line","recibo":"https://sandbox.bole.to/3/rdvrov/recibo","carne":"https://sandbox.bole.to/3/rdvrov/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
448
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
449
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
450
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000082-0","processed_our_number_raw":"140000000000000820","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
451
+ 20000.100048 00000.008235 3 91090000112040","our_number":"000000000000082","customer_subscription_id":null,"installment_total":3,"installment_number":1,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:01-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10493910900001120401233220000100040000000823","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/rdvrov","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null},{"id":472527,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
452
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
453
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
454
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
455
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mvzyld","formats":{"default":"https://sandbox.bole.to/3/mvzyld","png":"https://sandbox.bole.to/3/mvzyld.png","pdf":"https://sandbox.bole.to/3/mvzyld.pdf","boleto_hibrido":"https://sandbox.bole.to/3/mvzyld/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/mvzyld/boleto_pix","barcode":"https://sandbox.bole.to/3/mvzyld/barcode","envelope":"https://sandbox.bole.to/3/mvzyld/envelope","letter":"https://sandbox.bole.to/3/mvzyld/letter","line":"https://sandbox.bole.to/3/mvzyld/line","recibo":"https://sandbox.bole.to/3/mvzyld/recibo","carne":"https://sandbox.bole.to/3/mvzyld/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
456
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
457
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
458
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000083-9","processed_our_number_raw":"140000000000000839","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
459
+ 20000.100048 00000.008318 9 91410000112040","our_number":"000000000000083","customer_subscription_id":null,"installment_total":3,"installment_number":2,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/mvzyld/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:01-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10499914100001120401233220000100040000000831","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/mvzyld","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null},{"id":472528,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
460
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
461
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
462
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
463
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/yqrngb","formats":{"default":"https://sandbox.bole.to/3/yqrngb","png":"https://sandbox.bole.to/3/yqrngb.png","pdf":"https://sandbox.bole.to/3/yqrngb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/yqrngb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/yqrngb/boleto_pix","barcode":"https://sandbox.bole.to/3/yqrngb/barcode","envelope":"https://sandbox.bole.to/3/yqrngb/envelope","letter":"https://sandbox.bole.to/3/yqrngb/letter","line":"https://sandbox.bole.to/3/yqrngb/line","recibo":"https://sandbox.bole.to/3/yqrngb/recibo","carne":"https://sandbox.bole.to/3/yqrngb/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
464
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
465
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
466
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000084-7","processed_our_number_raw":"140000000000000847","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
467
+ 20000.100048 00000.008409 1 91710000112040","our_number":"000000000000084","customer_subscription_id":null,"installment_total":3,"installment_number":3,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/yqrngb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:01-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10491917100001120401233220000100040000000840","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/yqrngb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null}],"notes":null,"payment_count":1,"tags":[],"tag_list":null,"prevent_registration":false,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_revoke":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"guarantor_name":null,"guarantor_cnpj_cpf":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"document_number":null,"document_date":null,"document_type":"02"},"event_code":"installment.created","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:45-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
468
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
469
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
470
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
471
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
472
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
473
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
474
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
475
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
476
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
477
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
478
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
479
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
480
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
481
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
482
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
483
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
484
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
485
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
486
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
487
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
488
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
489
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
490
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
491
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
492
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
493
+ lg:leading-relaxed\"\u003eRay ID: 6e19f03ee80e6f9b \u0026bull;\u003c/span\u003e\n \u003cspan
494
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
495
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:46 UTC\u003c/span\u003e\n \u003ch2
496
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
497
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
498
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
499
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
500
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
501
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
502
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
503
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
504
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
505
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
506
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
507
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
508
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
509
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
510
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
511
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
512
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
513
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
514
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f03ee80e6f9b\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
515
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
516
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
517
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
518
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
519
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
520
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
521
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
522
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
523
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
524
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
525
+ 22 Feb 2022 17:29:46 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
526
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
527
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=JsYU54dZPffwrINiXzdaEno3iHMBeNRhK7vy531GhCx%2Figugiz%2FGb8IpMRakhs6tcSi9yI5kz9sltWCyA7Whf%2FdTX1QRUcqwQsELwEm8fgL5ni08XyYrRCDXzS3FUg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f03ee80e6f9b-IAD"],"alt-svc":["h3=\":443\";
528
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:45-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:46-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"installment.created","resource_owner_id":15264},{"id":724182,"uid":"d07f887a-1d07-4769-afb3-aa795adbe1ed","url":"http://requestb.in/1gsu9nc1","duration":26,"request_headers":{"X-BoletoSimples-Event":"bank_billet_remittance.created","X-Hub-Signature":"sha1=8474ac8ed2262164aa04a80885dc5a4da84b1258","X-BoletoSimples-Delivery-Id":"d07f887a-1d07-4769-afb3-aa795adbe1ed","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
529
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":433974,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472527,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
530
+ de Título","created_at":"2022-02-22T14:27:02-03:00"},"event_code":"bank_billet_remittance.created","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:45-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
531
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
532
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
533
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
534
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
535
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
536
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
537
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
538
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
539
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
540
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
541
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
542
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
543
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
544
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
545
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
546
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
547
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
548
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
549
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
550
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
551
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
552
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
553
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
554
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
555
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
556
+ lg:leading-relaxed\"\u003eRay ID: 6e19f03dfa296fa3 \u0026bull;\u003c/span\u003e\n \u003cspan
557
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
558
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:45 UTC\u003c/span\u003e\n \u003ch2
559
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
560
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
561
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
562
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
563
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
564
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
565
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
566
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
567
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
568
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
569
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
570
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
571
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
572
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
573
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
574
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
575
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
576
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
577
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f03dfa296fa3\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
578
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
579
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
580
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
581
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
582
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
583
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
584
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
585
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
586
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
587
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
588
+ 22 Feb 2022 17:29:45 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
589
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
590
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=MlaB%2FcP4%2BNep9YTSlfn2v8zHDDVoL1hjYvp%2BmKHYK0RJmqIhtWeo%2FZmWrzLLivea2vj3JoN2T%2FR%2BTMIaHNu3BzmQZQ5f81%2BH1%2FP3aTN%2FTwijmbWaQ09N9QdZTf5E6g%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f03dfa296fa3-IAD"],"alt-svc":["h3=\":443\";
591
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:45-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:45-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"bank_billet_remittance.created","resource_owner_id":433974},{"id":724181,"uid":"f58e035d-e08d-4e14-8c9c-626b170ce97d","url":"http://requestb.in/1gsu9nc1","duration":26,"request_headers":{"X-BoletoSimples-Event":"installment.processed","X-Hub-Signature":"sha1=47479de830e049e106a85b3178dc5a9a13c1b00f","X-BoletoSimples-Delivery-Id":"f58e035d-e08d-4e14-8c9c-626b170ce97d","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
592
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":15264,"amount":1120.4,"cycle":"monthly","start_at":"2022-09-15","end_at":"2022-11-15","instructions":null,"customer_id":93340,"description":"Hospedagem","created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","customer_person_name":"Joao
593
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
594
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
595
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
596
+ de Janeiro","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"total":3,"bank_billet_account_id":659,"status":"processed","fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"days_for_discount":null,"discount_value":null,"discount_percentage":null,"bank_billet_layout_id":null,"url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_ids":[472526,472527,472528],"bank_billets":[{"id":472526,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
597
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
598
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
599
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
600
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rdvrov","formats":{"default":"https://sandbox.bole.to/3/rdvrov","png":"https://sandbox.bole.to/3/rdvrov.png","pdf":"https://sandbox.bole.to/3/rdvrov.pdf","boleto_hibrido":"https://sandbox.bole.to/3/rdvrov/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/rdvrov/boleto_pix","barcode":"https://sandbox.bole.to/3/rdvrov/barcode","envelope":"https://sandbox.bole.to/3/rdvrov/envelope","letter":"https://sandbox.bole.to/3/rdvrov/letter","line":"https://sandbox.bole.to/3/rdvrov/line","recibo":"https://sandbox.bole.to/3/rdvrov/recibo","carne":"https://sandbox.bole.to/3/rdvrov/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
601
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
602
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
603
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000082-0","processed_our_number_raw":"140000000000000820","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
604
+ 20000.100048 00000.008235 3 91090000112040","our_number":"000000000000082","customer_subscription_id":null,"installment_total":3,"installment_number":1,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:01-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10493910900001120401233220000100040000000823","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/rdvrov","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null},{"id":472527,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
605
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
606
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
607
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
608
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mvzyld","formats":{"default":"https://sandbox.bole.to/3/mvzyld","png":"https://sandbox.bole.to/3/mvzyld.png","pdf":"https://sandbox.bole.to/3/mvzyld.pdf","boleto_hibrido":"https://sandbox.bole.to/3/mvzyld/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/mvzyld/boleto_pix","barcode":"https://sandbox.bole.to/3/mvzyld/barcode","envelope":"https://sandbox.bole.to/3/mvzyld/envelope","letter":"https://sandbox.bole.to/3/mvzyld/letter","line":"https://sandbox.bole.to/3/mvzyld/line","recibo":"https://sandbox.bole.to/3/mvzyld/recibo","carne":"https://sandbox.bole.to/3/mvzyld/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
609
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
610
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
611
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000083-9","processed_our_number_raw":"140000000000000839","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
612
+ 20000.100048 00000.008318 9 91410000112040","our_number":"000000000000083","customer_subscription_id":null,"installment_total":3,"installment_number":2,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/mvzyld/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:01-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10499914100001120401233220000100040000000831","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/mvzyld","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null},{"id":472528,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
613
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
614
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
615
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
616
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/yqrngb","formats":{"default":"https://sandbox.bole.to/3/yqrngb","png":"https://sandbox.bole.to/3/yqrngb.png","pdf":"https://sandbox.bole.to/3/yqrngb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/yqrngb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/yqrngb/boleto_pix","barcode":"https://sandbox.bole.to/3/yqrngb/barcode","envelope":"https://sandbox.bole.to/3/yqrngb/envelope","letter":"https://sandbox.bole.to/3/yqrngb/letter","line":"https://sandbox.bole.to/3/yqrngb/line","recibo":"https://sandbox.bole.to/3/yqrngb/recibo","carne":"https://sandbox.bole.to/3/yqrngb/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
617
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
618
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
619
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000084-7","processed_our_number_raw":"140000000000000847","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
620
+ 20000.100048 00000.008409 1 91710000112040","our_number":"000000000000084","customer_subscription_id":null,"installment_total":3,"installment_number":3,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/yqrngb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:01-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10491917100001120401233220000100040000000840","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/yqrngb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null}],"notes":null,"payment_count":1,"tags":[],"tag_list":null,"prevent_registration":false,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_revoke":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"guarantor_name":null,"guarantor_cnpj_cpf":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"document_number":null,"document_date":null,"document_type":"02"},"changes":{"status":["created","processed"],"updated_at":["2022-02-22
621
+ 14:27:01 -0300","2022-02-22 14:27:02 -0300"]},"event_code":"installment.processed","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:45-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
622
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
623
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
624
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
625
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
626
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
627
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
628
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
629
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
630
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
631
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
632
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
633
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
634
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
635
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
636
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
637
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
638
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
639
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
640
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
641
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
642
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
643
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
644
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
645
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
646
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
647
+ lg:leading-relaxed\"\u003eRay ID: 6e19f03dc840818f \u0026bull;\u003c/span\u003e\n \u003cspan
648
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
649
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:45 UTC\u003c/span\u003e\n \u003ch2
650
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
651
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
652
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
653
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
654
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
655
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
656
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
657
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
658
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
659
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
660
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
661
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
662
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
663
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
664
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
665
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
666
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
667
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
668
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f03dc840818f\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
669
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
670
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
671
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
672
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
673
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
674
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
675
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
676
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
677
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
678
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
679
+ 22 Feb 2022 17:29:45 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
680
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
681
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=rvZXIPT4UugDbOHMY59jEkfiBQZtP%2F21DZBaQqRCRQ1rYRdSjYCHme%2F9cclvgJr1lkyhbWTWVhtXoWPSAnVmgR2aMvcO5lFTWxed20QSiHPhhZ8YztG%2FuhZ3bayB6w%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f03dc840818f-IAD"],"alt-svc":["h3=\":443\";
682
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:45-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:45-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"installment.processed","resource_owner_id":15264},{"id":724180,"uid":"507939d1-2604-4045-94c0-6d33ea912798","url":"http://requestb.in/1gsu9nc1","duration":17,"request_headers":{"X-BoletoSimples-Event":"bank_billet_remittance.created","X-Hub-Signature":"sha1=32985e8b67ea12fe91ecfe6c478ecb01bc9ba081","X-BoletoSimples-Delivery-Id":"507939d1-2604-4045-94c0-6d33ea912798","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
683
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":433973,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472525,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
684
+ de Título","created_at":"2022-02-22T14:26:58-03:00"},"event_code":"bank_billet_remittance.created","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:45-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
685
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
686
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
687
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
688
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
689
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
690
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
691
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
692
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
693
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
694
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
695
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
696
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
697
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
698
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
699
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
700
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
701
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
702
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
703
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
704
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
705
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
706
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
707
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
708
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
709
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
710
+ lg:leading-relaxed\"\u003eRay ID: 6e19f03dab3f8233 \u0026bull;\u003c/span\u003e\n \u003cspan
711
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
712
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:45 UTC\u003c/span\u003e\n \u003ch2
713
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
714
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
715
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
716
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
717
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
718
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
719
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
720
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
721
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
722
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
723
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
724
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
725
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
726
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
727
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
728
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
729
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
730
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
731
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f03dab3f8233\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
732
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
733
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
734
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
735
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
736
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
737
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
738
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
739
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
740
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
741
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
742
+ 22 Feb 2022 17:29:45 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
743
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
744
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=uR4J%2FEbkMkMsuy18utZ39ZgwLs%2BJ17L3sFlB14s0DqYyMH2ysfRJZZecuhqtNVzPXhcEDdg3pxOY%2FkowY6%2FPhGrSgnmU%2FLdjuMVBiErvv3P2GuYvC7xeNGaP0uITpg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f03dab3f8233-IAD"],"alt-svc":["h3=\":443\";
745
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:45-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:45-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"bank_billet_remittance.created","resource_owner_id":433973},{"id":724179,"uid":"58e4aeba-6746-483e-939f-226031180b48","url":"http://requestb.in/1gsu9nc1","duration":22,"request_headers":{"X-BoletoSimples-Event":"customer_subscription.updated","X-Hub-Signature":"sha1=9a842ab35a18aae5780eb569c3158cd36c01f685","X-BoletoSimples-Delivery-Id":"58e4aeba-6746-483e-939f-226031180b48","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
746
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":3200,"amount":1120.4,"cycle":"monthly","next_billing":"2022-04-22","end_at":null,"instructions":null,"customer_id":93340,"customer_person_name":"Joao
747
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
748
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
749
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
750
+ de Janeiro","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"description":"Hospedagem","created_at":"2022-02-22T14:26:57-03:00","updated_at":"2022-02-22T14:26:58-03:00","created_via_api":true,"days_in_advance":7,"bank_billet_account_id":659,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"days_for_discount":null,"discount_value":null,"discount_percentage":null,"email":null,"bank_billet_layout_id":null,"bank_billet_ids":[472525],"notes":null,"payment_count":1,"tags":[],"tag_list":null,"prevent_registration":false,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_revoke":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"guarantor_name":null,"guarantor_cnpj_cpf":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null},"changes":{"next_billing":["2022-03-22","2022-04-22"],"updated_at":["2022-02-22
751
+ 14:26:57 -0300","2022-02-22 14:26:58 -0300"]},"event_code":"customer_subscription.updated","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:45-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
752
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
753
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
754
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
755
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
756
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
757
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
758
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
759
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
760
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
761
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
762
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
763
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
764
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
765
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
766
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
767
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
768
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
769
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
770
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
771
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
772
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
773
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
774
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
775
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
776
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
777
+ lg:leading-relaxed\"\u003eRay ID: 6e19f03d6eec5a22 \u0026bull;\u003c/span\u003e\n \u003cspan
778
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
779
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:45 UTC\u003c/span\u003e\n \u003ch2
780
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
781
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
782
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
783
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
784
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
785
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
786
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
787
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
788
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
789
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
790
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
791
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
792
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
793
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
794
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
795
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
796
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
797
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
798
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f03d6eec5a22\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
799
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
800
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
801
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
802
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
803
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
804
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
805
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
806
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
807
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
808
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
809
+ 22 Feb 2022 17:29:45 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
810
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
811
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=XlzKkH%2FeeU0E8LhaYtFfiYdR%2B1ZzaJwqUTyb6cqgcLm%2BVDxWbn2zv7xbRJPf7cek%2FfMlQ6I3fMmRCIyYkbpvf7BuHJ0dItKarT6odiObszQpeZFrKpwmK5GMaBb8Yg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f03d6eec5a22-IAD"],"alt-svc":["h3=\":443\";
812
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:45-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:45-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"customer_subscription.updated","resource_owner_id":3200},{"id":724178,"uid":"bc5587d6-2469-447a-a80a-00a15ab39e23","url":"http://requestb.in/1gsu9nc1","duration":39,"request_headers":{"X-BoletoSimples-Event":"customer_subscription.updated","X-Hub-Signature":"sha1=74e43bdbf395f248ecaed9cac02d4c699733f4b5","X-BoletoSimples-Delivery-Id":"bc5587d6-2469-447a-a80a-00a15ab39e23","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
813
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":3200,"amount":1120.4,"cycle":"monthly","next_billing":"2022-03-22","end_at":null,"instructions":null,"customer_id":93340,"customer_person_name":"Joao
814
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
815
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
816
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
817
+ de Janeiro","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"description":"Hospedagem","created_at":"2022-02-22T14:26:57-03:00","updated_at":"2022-02-22T14:26:57-03:00","created_via_api":true,"days_in_advance":7,"bank_billet_account_id":659,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"days_for_discount":null,"discount_value":null,"discount_percentage":null,"email":null,"bank_billet_layout_id":null,"bank_billet_ids":[],"notes":null,"payment_count":1,"tags":[],"tag_list":null,"prevent_registration":false,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_revoke":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"guarantor_name":null,"guarantor_cnpj_cpf":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null},"changes":{"customer_id":[null,93340],"updated_at":["2022-02-22
818
+ 14:26:57 -0300","2022-02-22 14:26:57 -0300"]},"event_code":"customer_subscription.updated","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:45-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
819
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
820
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
821
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
822
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
823
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
824
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
825
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
826
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
827
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
828
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
829
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
830
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
831
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
832
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
833
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
834
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
835
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
836
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
837
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
838
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
839
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
840
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
841
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
842
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
843
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
844
+ lg:leading-relaxed\"\u003eRay ID: 6e19f03d3d3c8244 \u0026bull;\u003c/span\u003e\n \u003cspan
845
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
846
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:45 UTC\u003c/span\u003e\n \u003ch2
847
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
848
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
849
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
850
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
851
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
852
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
853
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
854
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
855
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
856
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
857
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
858
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
859
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
860
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
861
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
862
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
863
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
864
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
865
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f03d3d3c8244\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
866
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
867
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
868
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
869
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
870
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
871
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
872
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
873
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
874
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
875
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
876
+ 22 Feb 2022 17:29:45 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
877
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
878
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=g7jU%2B1rDA01aCVfomo1N%2F%2BM8jf1LaxjY%2F7UaRCdgqdUYAibBW8c0O8lcAX2p3%2BCHPcGf4tGZwMofuCf5Teh1hJ4s%2BYKSh88L5BpP5R5cfGWeEBwFHQ9xuLuXvzSwjg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f03d3d3c8244-IAD"],"alt-svc":["h3=\":443\";
879
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:45-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:45-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"customer_subscription.updated","resource_owner_id":3200},{"id":724177,"uid":"9d47e031-6da3-483a-bead-4e054597a342","url":"http://requestb.in/1gsu9nc1","duration":23,"request_headers":{"X-BoletoSimples-Event":"customer.created","X-Hub-Signature":"sha1=644afad73ee370af2126e04ccdf224cbd51bfed6","X-BoletoSimples-Delivery-Id":"9d47e031-6da3-483a-bead-4e054597a342","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
880
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":93340,"city_name":"Rio
881
+ de Janeiro","person_name":"Joao da Silva","nickname":null,"address":"Rua quinhentos","address_complement":"Sala
882
+ 4","address_number":"111","mobile_number":null,"cnpj_cpf":"18.033.842/0001-05","email":"cliente@example.com","neighborhood":"Sao
883
+ Francisco","phone_number":"2112123434","zipcode":"12312123","mobile_local_code":null,"notes":null,"state":"RJ","created_via_api":true,"email_cc":null,"contact_person":null,"truncated_address":"Rua
884
+ quinhentos, 111","external_code":null,"tags":[],"tag_list":null,"custom_data":null},"event_code":"customer.created","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:45-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
885
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
886
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
887
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
888
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
889
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
890
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
891
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
892
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
893
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
894
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
895
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
896
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
897
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
898
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
899
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
900
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
901
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
902
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
903
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
904
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
905
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
906
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
907
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
908
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
909
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
910
+ lg:leading-relaxed\"\u003eRay ID: 6e19f03cfcf9c17a \u0026bull;\u003c/span\u003e\n \u003cspan
911
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
912
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:45 UTC\u003c/span\u003e\n \u003ch2
913
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
914
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
915
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
916
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
917
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
918
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
919
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
920
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
921
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
922
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
923
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
924
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
925
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
926
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
927
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
928
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
929
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
930
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
931
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f03cfcf9c17a\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
932
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
933
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
934
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
935
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
936
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
937
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
938
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
939
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
940
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
941
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
942
+ 22 Feb 2022 17:29:45 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
943
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
944
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Lr14rxs9748fG2aQg8wt7nfk%2FnH2rrteYnsaj5gijMS4NFmYKvvG7SfDfA%2Ba5lyu3ne%2BpJ089ZaonQwNGZ%2F2z7AeSsL2dqaZwkD3oqplmOJLrS6iSNUzWZvHKjGjUw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f03cfcf9c17a-IAD"],"alt-svc":["h3=\":443\";
945
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:45-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:45-03:00","status":"failed","bank_billet_account_id":null,"content_type":"application/json","webhook_id":53,"event_code":"customer.created","resource_owner_id":93340},{"id":724176,"uid":"d064c702-4792-4fa0-af49-bb37d41049e2","url":"http://requestb.in/1gsu9nc1","duration":25,"request_headers":{"X-BoletoSimples-Event":"import.created","X-Hub-Signature":"sha1=359d3e15fde40d81c2bf6a8f89c5875da3a28b2c","X-BoletoSimples-Delivery-Id":"d064c702-4792-4fa0-af49-bb37d41049e2","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
946
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":1278,"created_rows":0,"enqueued_at":null,"started_at":null,"finished_at":null,"processed_at":null,"failed_to_create_rows":0,"failed_to_update_rows":0,"import_errors":null,"processed_rows":0,"total_rows":null,"updated_rows":0,"source_file_name":"customers.csv","source_file_size":190,"status":"pending","created_via_api":true},"event_code":"import.created","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:45-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
947
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
948
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
949
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
950
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
951
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
952
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
953
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
954
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
955
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
956
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
957
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
958
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
959
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
960
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
961
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
962
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
963
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
964
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
965
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
966
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
967
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
968
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
969
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
970
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
971
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
972
+ lg:leading-relaxed\"\u003eRay ID: 6e19f03ce96657dc \u0026bull;\u003c/span\u003e\n \u003cspan
973
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
974
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:45 UTC\u003c/span\u003e\n \u003ch2
975
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
976
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
977
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
978
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
979
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
980
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
981
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
982
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
983
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
984
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
985
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
986
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
987
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
988
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
989
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
990
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
991
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
992
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
993
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f03ce96657dc\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
994
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
995
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
996
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
997
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
998
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
999
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
1000
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
1001
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
1002
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
1003
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
1004
+ 22 Feb 2022 17:29:45 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
1005
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
1006
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=2h6uKs6n%2B%2BnKhyN59WsjUYlfXBfFwmN8esuBdX7vGkMr27sWocjuRs9eqNh2E7bH5nUGQnzkewRWT0jJzU5pghDdfs8pl%2F4speHpAQs12%2FG%2BN1GzqYHczsDcop%2FIAg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f03ce96657dc-IAD"],"alt-svc":["h3=\":443\";
1007
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:45-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:45-03:00","status":"failed","bank_billet_account_id":null,"content_type":"application/json","webhook_id":53,"event_code":"import.created","resource_owner_id":1278},{"id":724175,"uid":"045dd974-126d-43db-90b1-1bcb789bf381","url":"http://requestb.in/1gsu9nc1","duration":39,"request_headers":{"X-BoletoSimples-Event":"import.created","X-Hub-Signature":"sha1=d5a613b44ccc05641d6a93c5d50a7fbad9dc64fc","X-BoletoSimples-Delivery-Id":"045dd974-126d-43db-90b1-1bcb789bf381","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
1008
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":1277,"created_rows":0,"enqueued_at":null,"started_at":null,"finished_at":null,"processed_at":null,"failed_to_create_rows":0,"failed_to_update_rows":0,"import_errors":null,"processed_rows":0,"total_rows":null,"updated_rows":0,"source_file_name":"customer_subscriptions.csv","source_file_size":239,"status":"pending","created_via_api":true},"event_code":"import.created","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:45-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
1009
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
1010
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
1011
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1012
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1013
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
1014
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
1015
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
1016
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
1017
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
1018
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
1019
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
1020
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
1021
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
1022
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
1023
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
1024
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
1025
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
1026
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
1027
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
1028
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
1029
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
1030
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
1031
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
1032
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
1033
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1034
+ lg:leading-relaxed\"\u003eRay ID: 6e19f03c7afd576d \u0026bull;\u003c/span\u003e\n \u003cspan
1035
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1036
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:45 UTC\u003c/span\u003e\n \u003ch2
1037
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
1038
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
1039
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
1040
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
1041
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
1042
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
1043
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
1044
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
1045
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
1046
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1047
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
1048
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1049
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
1050
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
1051
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
1052
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
1053
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
1054
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
1055
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f03c7afd576d\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
1056
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
1057
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
1058
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
1059
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
1060
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
1061
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
1062
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
1063
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
1064
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
1065
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
1066
+ 22 Feb 2022 17:29:45 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
1067
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
1068
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=tqHFwyIZqPGhIGhmqAzj9dfgT%2BK5%2FsS%2Fnz6XkZI9TF%2BC8qAVBwYX9exAkAwchjgnCxWGSdNbhwVDQAHC2EHbiAq9aNilmgBKps9BQNPliv8Doju%2BytpB44FZsvlMqQ%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f03c7afd576d-IAD"],"alt-svc":["h3=\":443\";
1069
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:45-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:45-03:00","status":"failed","bank_billet_account_id":null,"content_type":"application/json","webhook_id":53,"event_code":"import.created","resource_owner_id":1277},{"id":724174,"uid":"8f7164f3-f16b-4ce1-b68e-350fe68c6c89","url":"http://requestb.in/1gsu9nc1","duration":18,"request_headers":{"X-BoletoSimples-Event":"account.updated","X-Hub-Signature":"sha1=d6738a10f61a2bb7d71e13b947181efeeaeab44f","X-BoletoSimples-Delivery-Id":"8f7164f3-f16b-4ce1-b68e-350fe68c6c89","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
1070
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":8,"email":"kivanio@boletosimples.com.br","account_type":"individual","gender":"Masculino","cpf":"000.233.771-19","address_street_name":"Rua
1071
+ Quatro","address_state":"MT","address_neighborhood":"CPA III","address_postal_code":"78058330","address_number":"9","address_complement":null,"phone_number":"6581214248","first_name":"Kivanio","middle_name":"Pereira","last_name":"Barbosa","date_of_birth":"1983-01-20","business_category":null,"business_subcategory":null,"business_website":null,"business_name":null,"business_legal_name":null,"business_type":null,"business_cnpj":null,"address_city_name":"Cuiabá","full_name":"Kivanio
1072
+ Pereira Barbosa","login_url":"https://sandbox.boletosimples.com.br/welcome?email=kivanio%40boletosimples.com.br","checkout_url":"http://dev.checkout.kobana.com.br:5002/#boletosimples;f0c936c6a6090f5b19419fe2f96ffdc5","mother_name":"Maria","father_name":"José","account_level":1,"billing_email":null,"configuration":null,"simple_opting":false,"rate_limits":{"get":{"limits":{"hour":100}},"post":{"limits":{"hour":18000}}},"subscription":null},"changes":{"bank_billet_accounts_count":[3,4],"updated_at":["2020-03-26
1073
+ 14:38:04 -0300","2022-02-22 14:26:46 -0300"]},"event_code":"account.updated","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:45-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
1074
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
1075
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
1076
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1077
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1078
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
1079
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
1080
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
1081
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
1082
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
1083
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
1084
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
1085
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
1086
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
1087
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
1088
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
1089
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
1090
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
1091
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
1092
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
1093
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
1094
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
1095
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
1096
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
1097
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
1098
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1099
+ lg:leading-relaxed\"\u003eRay ID: 6e19f03c4d4c5b53 \u0026bull;\u003c/span\u003e\n \u003cspan
1100
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1101
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:45 UTC\u003c/span\u003e\n \u003ch2
1102
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
1103
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
1104
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
1105
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
1106
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
1107
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
1108
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
1109
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
1110
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
1111
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1112
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
1113
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1114
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
1115
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
1116
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
1117
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
1118
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
1119
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
1120
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f03c4d4c5b53\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
1121
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
1122
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
1123
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
1124
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
1125
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
1126
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
1127
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
1128
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
1129
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
1130
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
1131
+ 22 Feb 2022 17:29:45 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
1132
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
1133
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=9cnQKmwEAw7afdyW1N1zc5SxpiTYISHl7ZS9dueCSAA4YVWE6MpRhzoEzEx97we%2BS85Ts9KPx2YmBSwdeXKsmLA7ZOdZ6sOgoiyi38Tnx1Ey8CScLKcHB%2F7A9lx8ww%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f03c4d4c5b53-IAD"],"alt-svc":["h3=\":443\";
1134
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:45-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:45-03:00","status":"failed","bank_billet_account_id":null,"content_type":"application/json","webhook_id":53,"event_code":"account.updated","resource_owner_id":8},{"id":724173,"uid":"61b8af5a-ba9e-4794-95c2-075e005d6708","url":"http://requestb.in/1gsu9nc1","duration":34,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=2e4dd4b0e50414a3cdb5526d6dffd51b34739ecb","X-BoletoSimples-Delivery-Id":"61b8af5a-ba9e-4794-95c2-075e005d6708","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
1135
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472528,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
1136
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1137
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1138
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1139
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/yqrngb","formats":{"default":"https://sandbox.bole.to/3/yqrngb","png":"https://sandbox.bole.to/3/yqrngb.png","pdf":"https://sandbox.bole.to/3/yqrngb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/yqrngb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/yqrngb/boleto_pix","barcode":"https://sandbox.bole.to/3/yqrngb/barcode","envelope":"https://sandbox.bole.to/3/yqrngb/envelope","letter":"https://sandbox.bole.to/3/yqrngb/letter","line":"https://sandbox.bole.to/3/yqrngb/line","recibo":"https://sandbox.bole.to/3/yqrngb/recibo","carne":"https://sandbox.bole.to/3/yqrngb/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
1140
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
1141
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1142
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000084-7","processed_our_number_raw":"140000000000000847","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
1143
+ 20000.100048 00000.008409 1 91710000112040","our_number":"000000000000084","customer_subscription_id":null,"installment_total":3,"installment_number":3,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/yqrngb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10491917100001120401233220000100040000000840","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/yqrngb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433976,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472528,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
1144
+ de Título","created_at":"2022-02-22T14:27:02-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"event_code":"bank_billet.generated","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:45-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
1145
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
1146
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
1147
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1148
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1149
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
1150
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
1151
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
1152
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
1153
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
1154
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
1155
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
1156
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
1157
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
1158
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
1159
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
1160
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
1161
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
1162
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
1163
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
1164
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
1165
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
1166
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
1167
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
1168
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
1169
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1170
+ lg:leading-relaxed\"\u003eRay ID: 6e19f03c4c38c17a \u0026bull;\u003c/span\u003e\n \u003cspan
1171
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1172
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:45 UTC\u003c/span\u003e\n \u003ch2
1173
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
1174
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
1175
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
1176
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
1177
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
1178
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
1179
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
1180
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
1181
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
1182
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1183
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
1184
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1185
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
1186
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
1187
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
1188
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
1189
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
1190
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
1191
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f03c4c38c17a\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
1192
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
1193
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
1194
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
1195
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
1196
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
1197
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
1198
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
1199
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
1200
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
1201
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
1202
+ 22 Feb 2022 17:29:45 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
1203
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
1204
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=v3hVkHC%2BSiJkTT9%2FTLrRU9G3JgTP6Dc4WwoU1zvvfXwW5hWJwIfeFkn5qIE86zs38fE34NFrBwfNx3RMKra%2FPKghqjtdu3HUGEvuPZEmKe%2B5ITRF76JOBikNiWICcA%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f03c4c38c17a-IAD"],"alt-svc":["h3=\":443\";
1205
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:45-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:45-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"bank_billet.generated","resource_owner_id":472528},{"id":724172,"uid":"4fa6ad71-068e-4280-a834-23d6141e5ffb","url":"http://requestb.in/1gsu9nc1","duration":23,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=bf60c776e6a639b6f2df5fbc339969dd2cb5bf30","X-BoletoSimples-Delivery-Id":"4fa6ad71-068e-4280-a834-23d6141e5ffb","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
1206
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472526,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
1207
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1208
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1209
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1210
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rdvrov","formats":{"default":"https://sandbox.bole.to/3/rdvrov","png":"https://sandbox.bole.to/3/rdvrov.png","pdf":"https://sandbox.bole.to/3/rdvrov.pdf","boleto_hibrido":"https://sandbox.bole.to/3/rdvrov/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/rdvrov/boleto_pix","barcode":"https://sandbox.bole.to/3/rdvrov/barcode","envelope":"https://sandbox.bole.to/3/rdvrov/envelope","letter":"https://sandbox.bole.to/3/rdvrov/letter","line":"https://sandbox.bole.to/3/rdvrov/line","recibo":"https://sandbox.bole.to/3/rdvrov/recibo","carne":"https://sandbox.bole.to/3/rdvrov/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
1211
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
1212
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1213
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000082-0","processed_our_number_raw":"140000000000000820","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
1214
+ 20000.100048 00000.008235 3 91090000112040","our_number":"000000000000082","customer_subscription_id":null,"installment_total":3,"installment_number":1,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10493910900001120401233220000100040000000823","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/rdvrov","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433975,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472526,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
1215
+ de Título","created_at":"2022-02-22T14:27:02-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"event_code":"bank_billet.generated","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:45-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
1216
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
1217
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
1218
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1219
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1220
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
1221
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
1222
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
1223
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
1224
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
1225
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
1226
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
1227
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
1228
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
1229
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
1230
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
1231
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
1232
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
1233
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
1234
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
1235
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
1236
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
1237
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
1238
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
1239
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
1240
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1241
+ lg:leading-relaxed\"\u003eRay ID: 6e19f03af99c59d9 \u0026bull;\u003c/span\u003e\n \u003cspan
1242
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1243
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:45 UTC\u003c/span\u003e\n \u003ch2
1244
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
1245
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
1246
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
1247
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
1248
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
1249
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
1250
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
1251
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
1252
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
1253
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1254
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
1255
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1256
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
1257
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
1258
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
1259
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
1260
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
1261
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
1262
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f03af99c59d9\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
1263
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
1264
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
1265
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
1266
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
1267
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
1268
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
1269
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
1270
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
1271
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
1272
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
1273
+ 22 Feb 2022 17:29:45 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
1274
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
1275
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=2x1AnbSweowBC0b5RTaLlSW1LZGzsRAKPcEa66AP2JStZye0rtOT5BJbyaV30o6uZIVdwYVE2aLBadhHwUCv46Bd62t4XcaM01RUO5bPi%2FiHHXc4OSiWTAQQQ4MtkA%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f03af99c59d9-IAD"],"alt-svc":["h3=\":443\";
1276
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:45-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:45-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"bank_billet.generated","resource_owner_id":472526},{"id":724171,"uid":"14f21516-9b24-456f-8e02-baeaa45f7b8f","url":"https://iagro.herokuapp.com/callbacks/boletosimples","duration":38,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=39b248eae0f3933b35a1ff8ccba20708664a13d9","X-BoletoSimples-Delivery-Id":"14f21516-9b24-456f-8e02-baeaa45f7b8f","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
1277
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472528,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
1278
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1279
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1280
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1281
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/yqrngb","formats":{"default":"https://sandbox.bole.to/3/yqrngb","png":"https://sandbox.bole.to/3/yqrngb.png","pdf":"https://sandbox.bole.to/3/yqrngb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/yqrngb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/yqrngb/boleto_pix","barcode":"https://sandbox.bole.to/3/yqrngb/barcode","envelope":"https://sandbox.bole.to/3/yqrngb/envelope","letter":"https://sandbox.bole.to/3/yqrngb/letter","line":"https://sandbox.bole.to/3/yqrngb/line","recibo":"https://sandbox.bole.to/3/yqrngb/recibo","carne":"https://sandbox.bole.to/3/yqrngb/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
1282
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
1283
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1284
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000084-7","processed_our_number_raw":"140000000000000847","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
1285
+ 20000.100048 00000.008409 1 91710000112040","our_number":"000000000000084","customer_subscription_id":null,"installment_total":3,"installment_number":3,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/yqrngb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10491917100001120401233220000100040000000840","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/yqrngb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433976,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472528,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
1286
+ de Título","created_at":"2022-02-22T14:27:02-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"event_code":"bank_billet.generated","webhook":{"id":1941,"url":"https://iagro.herokuapp.com/callbacks/boletosimples","first_try":"2022-02-22T14:29:45-03:00"}},"request_error":null,"response_body":null,"response_code":204,"response_headers":{"server":["Cowboy"],"date":["Tue,
1287
+ 22 Feb 2022 17:29:45 GMT"],"content-length":["0"],"connection":["close"],"x-frame-options":["DENY"],"x-xss-protection":["1;
1288
+ mode=block"],"x-content-type-options":["nosniff"],"x-download-options":["noopen"],"x-permitted-cross-domain-policies":["none"],"referrer-policy":["strict-origin-when-cross-origin"],"cache-control":["no-cache"],"x-request-id":["4f6a4d06-6964-4b76-90e1-e210227246a2"],"x-runtime":["0.012248"],"via":["1.1
1289
+ vegur"]},"response_message":"No Content","delivered_at":"2022-02-22T14:29:45-03:00","first_try":"2022-02-22T14:29:45-03:00","fails_count":0,"failed_at":null,"status":"delivered","bank_billet_account_id":659,"content_type":"application/json","webhook_id":1941,"event_code":"bank_billet.generated","resource_owner_id":472528},{"id":724170,"uid":"827802ae-53ea-4ad7-87ee-182d5366b516","url":"https://iagro.herokuapp.com/callbacks/boletosimples","duration":118,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=b838cf176987df55d6efba04ab5cedf3793af82e","X-BoletoSimples-Delivery-Id":"827802ae-53ea-4ad7-87ee-182d5366b516","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
1290
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472526,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
1291
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1292
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1293
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1294
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rdvrov","formats":{"default":"https://sandbox.bole.to/3/rdvrov","png":"https://sandbox.bole.to/3/rdvrov.png","pdf":"https://sandbox.bole.to/3/rdvrov.pdf","boleto_hibrido":"https://sandbox.bole.to/3/rdvrov/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/rdvrov/boleto_pix","barcode":"https://sandbox.bole.to/3/rdvrov/barcode","envelope":"https://sandbox.bole.to/3/rdvrov/envelope","letter":"https://sandbox.bole.to/3/rdvrov/letter","line":"https://sandbox.bole.to/3/rdvrov/line","recibo":"https://sandbox.bole.to/3/rdvrov/recibo","carne":"https://sandbox.bole.to/3/rdvrov/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
1295
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
1296
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1297
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000082-0","processed_our_number_raw":"140000000000000820","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
1298
+ 20000.100048 00000.008235 3 91090000112040","our_number":"000000000000082","customer_subscription_id":null,"installment_total":3,"installment_number":1,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10493910900001120401233220000100040000000823","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/rdvrov","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433975,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472526,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
1299
+ de Título","created_at":"2022-02-22T14:27:02-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"event_code":"bank_billet.generated","webhook":{"id":1941,"url":"https://iagro.herokuapp.com/callbacks/boletosimples","first_try":"2022-02-22T14:29:45-03:00"}},"request_error":null,"response_body":null,"response_code":204,"response_headers":{"server":["Cowboy"],"date":["Tue,
1300
+ 22 Feb 2022 17:29:44 GMT"],"content-length":["0"],"connection":["close"],"x-frame-options":["DENY"],"x-xss-protection":["1;
1301
+ mode=block"],"x-content-type-options":["nosniff"],"x-download-options":["noopen"],"x-permitted-cross-domain-policies":["none"],"referrer-policy":["strict-origin-when-cross-origin"],"cache-control":["no-cache"],"x-request-id":["007c2d06-fcd1-49a5-bbed-0593b4f2b5d8"],"x-runtime":["0.089117"],"via":["1.1
1302
+ vegur"]},"response_message":"No Content","delivered_at":"2022-02-22T14:29:45-03:00","first_try":"2022-02-22T14:29:45-03:00","fails_count":0,"failed_at":null,"status":"delivered","bank_billet_account_id":659,"content_type":"application/json","webhook_id":1941,"event_code":"bank_billet.generated","resource_owner_id":472526},{"id":724169,"uid":"4dbe455e-c1e9-426e-bdcc-28d99fb2084b","url":"http://requestb.in/1gsu9nc1","duration":27,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=3e0d30676aaa25d171e65f84e82f79a19628b71d","X-BoletoSimples-Delivery-Id":"4dbe455e-c1e9-426e-bdcc-28d99fb2084b","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
1303
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472527,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
1304
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1305
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1306
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1307
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mvzyld","formats":{"default":"https://sandbox.bole.to/3/mvzyld","png":"https://sandbox.bole.to/3/mvzyld.png","pdf":"https://sandbox.bole.to/3/mvzyld.pdf","boleto_hibrido":"https://sandbox.bole.to/3/mvzyld/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/mvzyld/boleto_pix","barcode":"https://sandbox.bole.to/3/mvzyld/barcode","envelope":"https://sandbox.bole.to/3/mvzyld/envelope","letter":"https://sandbox.bole.to/3/mvzyld/letter","line":"https://sandbox.bole.to/3/mvzyld/line","recibo":"https://sandbox.bole.to/3/mvzyld/recibo","carne":"https://sandbox.bole.to/3/mvzyld/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
1308
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
1309
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1310
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000083-9","processed_our_number_raw":"140000000000000839","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
1311
+ 20000.100048 00000.008318 9 91410000112040","our_number":"000000000000083","customer_subscription_id":null,"installment_total":3,"installment_number":2,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/mvzyld/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10499914100001120401233220000100040000000831","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/mvzyld","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433974,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472527,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
1312
+ de Título","created_at":"2022-02-22T14:27:02-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"event_code":"bank_billet.generated","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:45-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
1313
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
1314
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
1315
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1316
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1317
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
1318
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
1319
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
1320
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
1321
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
1322
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
1323
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
1324
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
1325
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
1326
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
1327
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
1328
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
1329
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
1330
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
1331
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
1332
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
1333
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
1334
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
1335
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
1336
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
1337
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1338
+ lg:leading-relaxed\"\u003eRay ID: 6e19f03a6bc96fe5 \u0026bull;\u003c/span\u003e\n \u003cspan
1339
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1340
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:45 UTC\u003c/span\u003e\n \u003ch2
1341
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
1342
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
1343
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
1344
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
1345
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
1346
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
1347
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
1348
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
1349
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
1350
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1351
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
1352
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1353
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
1354
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
1355
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
1356
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
1357
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
1358
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
1359
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f03a6bc96fe5\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
1360
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
1361
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
1362
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
1363
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
1364
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
1365
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
1366
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
1367
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
1368
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
1369
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
1370
+ 22 Feb 2022 17:29:45 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
1371
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
1372
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=f2q5E7pMK%2BZXfdELAIrbchS8fmAHZyEsvu3BHSjDYY4ybQf8C8wlrUYMaIBs%2Fvi5iWVMuXnWcJ%2BNWdmhsZML8l2BjDL9Y1%2Fjtg%2BRXG8ykB4fTYcyzs8qG8%2BCPOInLw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f03a6bc96fe5-IAD"],"alt-svc":["h3=\":443\";
1373
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:45-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:45-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"bank_billet.generated","resource_owner_id":472527},{"id":724168,"uid":"cdeab23c-8b7b-48c9-9fe5-251b9a6ffe8d","url":"https://iagro.herokuapp.com/callbacks/boletosimples","duration":55,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=3b6fa9619e5a06e2598265d7285e9f01ec71b8ed","X-BoletoSimples-Delivery-Id":"cdeab23c-8b7b-48c9-9fe5-251b9a6ffe8d","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
1374
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472527,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
1375
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1376
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1377
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1378
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mvzyld","formats":{"default":"https://sandbox.bole.to/3/mvzyld","png":"https://sandbox.bole.to/3/mvzyld.png","pdf":"https://sandbox.bole.to/3/mvzyld.pdf","boleto_hibrido":"https://sandbox.bole.to/3/mvzyld/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/mvzyld/boleto_pix","barcode":"https://sandbox.bole.to/3/mvzyld/barcode","envelope":"https://sandbox.bole.to/3/mvzyld/envelope","letter":"https://sandbox.bole.to/3/mvzyld/letter","line":"https://sandbox.bole.to/3/mvzyld/line","recibo":"https://sandbox.bole.to/3/mvzyld/recibo","carne":"https://sandbox.bole.to/3/mvzyld/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
1379
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
1380
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1381
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000083-9","processed_our_number_raw":"140000000000000839","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
1382
+ 20000.100048 00000.008318 9 91410000112040","our_number":"000000000000083","customer_subscription_id":null,"installment_total":3,"installment_number":2,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/mvzyld/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10499914100001120401233220000100040000000831","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/mvzyld","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433974,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472527,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
1383
+ de Título","created_at":"2022-02-22T14:27:02-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"event_code":"bank_billet.generated","webhook":{"id":1941,"url":"https://iagro.herokuapp.com/callbacks/boletosimples","first_try":"2022-02-22T14:29:45-03:00"}},"request_error":null,"response_body":null,"response_code":204,"response_headers":{"server":["Cowboy"],"date":["Tue,
1384
+ 22 Feb 2022 17:29:44 GMT"],"content-length":["0"],"connection":["close"],"x-frame-options":["DENY"],"x-xss-protection":["1;
1385
+ mode=block"],"x-content-type-options":["nosniff"],"x-download-options":["noopen"],"x-permitted-cross-domain-policies":["none"],"referrer-policy":["strict-origin-when-cross-origin"],"cache-control":["no-cache"],"x-request-id":["ee6579e6-e282-403f-9bd7-cb654bcc3a23"],"x-runtime":["0.011603"],"via":["1.1
1386
+ vegur"]},"response_message":"No Content","delivered_at":"2022-02-22T14:29:45-03:00","first_try":"2022-02-22T14:29:45-03:00","fails_count":0,"failed_at":null,"status":"delivered","bank_billet_account_id":659,"content_type":"application/json","webhook_id":1941,"event_code":"bank_billet.generated","resource_owner_id":472527},{"id":724167,"uid":"63145c7e-0b01-4ec7-beff-5748c19d3259","url":"http://requestb.in/1gsu9nc1","duration":31,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=b715db23b6fbbd0babb8ea5c609124ddd0908cf1","X-BoletoSimples-Delivery-Id":"63145c7e-0b01-4ec7-beff-5748c19d3259","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
1387
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472528,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
1388
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1389
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1390
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1391
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/yqrngb","formats":{"default":"https://sandbox.bole.to/3/yqrngb","png":"https://sandbox.bole.to/3/yqrngb.png","pdf":"https://sandbox.bole.to/3/yqrngb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/yqrngb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/yqrngb/boleto_pix","barcode":"https://sandbox.bole.to/3/yqrngb/barcode","envelope":"https://sandbox.bole.to/3/yqrngb/envelope","letter":"https://sandbox.bole.to/3/yqrngb/letter","line":"https://sandbox.bole.to/3/yqrngb/line","recibo":"https://sandbox.bole.to/3/yqrngb/recibo","carne":"https://sandbox.bole.to/3/yqrngb/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
1392
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
1393
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1394
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000084-7","processed_our_number_raw":"140000000000000847","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
1395
+ 20000.100048 00000.008409 1 91710000112040","our_number":"000000000000084","customer_subscription_id":null,"installment_total":3,"installment_number":3,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/yqrngb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10491917100001120401233220000100040000000840","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/yqrngb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433976,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472528,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
1396
+ de Título","created_at":"2022-02-22T14:27:02-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"event_code":"bank_billet.generated","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:44-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
1397
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
1398
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
1399
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1400
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1401
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
1402
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
1403
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
1404
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
1405
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
1406
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
1407
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
1408
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
1409
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
1410
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
1411
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
1412
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
1413
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
1414
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
1415
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
1416
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
1417
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
1418
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
1419
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
1420
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
1421
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1422
+ lg:leading-relaxed\"\u003eRay ID: 6e19f037e989c1c0 \u0026bull;\u003c/span\u003e\n \u003cspan
1423
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1424
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:44 UTC\u003c/span\u003e\n \u003ch2
1425
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
1426
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
1427
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
1428
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
1429
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
1430
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
1431
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
1432
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
1433
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
1434
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1435
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
1436
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1437
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
1438
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
1439
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
1440
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
1441
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
1442
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
1443
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f037e989c1c0\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
1444
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
1445
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
1446
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
1447
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
1448
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
1449
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
1450
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
1451
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
1452
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
1453
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
1454
+ 22 Feb 2022 17:29:44 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
1455
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
1456
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=dHX0Q63UXDqvDozGWrhtqVS3ZUH5MmPFBAxaALoN02yI%2BXcH9uv6BLSe84jwH8rb39pEefxMlglBbsE5L2dS9ZKovT%2BiywWpjHSqL%2BeY9jQ%2ByhcZjopbH2ju%2B1Za%2BA%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f037e989c1c0-IAD"],"alt-svc":["h3=\":443\";
1457
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:44-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:44-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"bank_billet.generated","resource_owner_id":472528},{"id":724166,"uid":"97c534fa-d0ec-448b-aebe-6ca052e295f3","url":"http://requestb.in/1gsu9nc1","duration":18,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=3e0d30676aaa25d171e65f84e82f79a19628b71d","X-BoletoSimples-Delivery-Id":"97c534fa-d0ec-448b-aebe-6ca052e295f3","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
1458
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472527,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
1459
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1460
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1461
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1462
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mvzyld","formats":{"default":"https://sandbox.bole.to/3/mvzyld","png":"https://sandbox.bole.to/3/mvzyld.png","pdf":"https://sandbox.bole.to/3/mvzyld.pdf","boleto_hibrido":"https://sandbox.bole.to/3/mvzyld/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/mvzyld/boleto_pix","barcode":"https://sandbox.bole.to/3/mvzyld/barcode","envelope":"https://sandbox.bole.to/3/mvzyld/envelope","letter":"https://sandbox.bole.to/3/mvzyld/letter","line":"https://sandbox.bole.to/3/mvzyld/line","recibo":"https://sandbox.bole.to/3/mvzyld/recibo","carne":"https://sandbox.bole.to/3/mvzyld/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
1463
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
1464
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1465
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000083-9","processed_our_number_raw":"140000000000000839","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
1466
+ 20000.100048 00000.008318 9 91410000112040","our_number":"000000000000083","customer_subscription_id":null,"installment_total":3,"installment_number":2,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/mvzyld/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10499914100001120401233220000100040000000831","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/mvzyld","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433974,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472527,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
1467
+ de Título","created_at":"2022-02-22T14:27:02-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"event_code":"bank_billet.generated","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:45-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
1468
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
1469
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
1470
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1471
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1472
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
1473
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
1474
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
1475
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
1476
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
1477
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
1478
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
1479
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
1480
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
1481
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
1482
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
1483
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
1484
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
1485
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
1486
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
1487
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
1488
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
1489
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
1490
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
1491
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
1492
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1493
+ lg:leading-relaxed\"\u003eRay ID: 6e19f039c80581c3 \u0026bull;\u003c/span\u003e\n \u003cspan
1494
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1495
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:45 UTC\u003c/span\u003e\n \u003ch2
1496
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
1497
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
1498
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
1499
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
1500
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
1501
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
1502
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
1503
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
1504
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
1505
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1506
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
1507
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1508
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
1509
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
1510
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
1511
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
1512
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
1513
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
1514
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f039c80581c3\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
1515
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
1516
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
1517
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
1518
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
1519
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
1520
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
1521
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
1522
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
1523
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
1524
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
1525
+ 22 Feb 2022 17:29:45 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
1526
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
1527
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=TzoksoP%2FV0SgrIfQftIDLFHwW%2FGlbLanugBmwyn0%2F7dB%2Bk%2B%2FC167FXM5GD7F3qW3GYlseQmDKcNBN0FWEEociSBopwEsUJUJEnrEv8MXplDYGBc3SK2lF7APeoOtTg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f039c80581c3-IAD"],"alt-svc":["h3=\":443\";
1528
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:45-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:45-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"bank_billet.generated","resource_owner_id":472527},{"id":724165,"uid":"e293708b-1d2c-43a6-891d-3a2973fb7c19","url":"http://requestb.in/1gsu9nc1","duration":35,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=bf60c776e6a639b6f2df5fbc339969dd2cb5bf30","X-BoletoSimples-Delivery-Id":"e293708b-1d2c-43a6-891d-3a2973fb7c19","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
1529
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472526,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
1530
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1531
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1532
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1533
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rdvrov","formats":{"default":"https://sandbox.bole.to/3/rdvrov","png":"https://sandbox.bole.to/3/rdvrov.png","pdf":"https://sandbox.bole.to/3/rdvrov.pdf","boleto_hibrido":"https://sandbox.bole.to/3/rdvrov/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/rdvrov/boleto_pix","barcode":"https://sandbox.bole.to/3/rdvrov/barcode","envelope":"https://sandbox.bole.to/3/rdvrov/envelope","letter":"https://sandbox.bole.to/3/rdvrov/letter","line":"https://sandbox.bole.to/3/rdvrov/line","recibo":"https://sandbox.bole.to/3/rdvrov/recibo","carne":"https://sandbox.bole.to/3/rdvrov/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
1534
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
1535
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1536
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000082-0","processed_our_number_raw":"140000000000000820","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
1537
+ 20000.100048 00000.008235 3 91090000112040","our_number":"000000000000082","customer_subscription_id":null,"installment_total":3,"installment_number":1,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10493910900001120401233220000100040000000823","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/rdvrov","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433975,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472526,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
1538
+ de Título","created_at":"2022-02-22T14:27:02-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"event_code":"bank_billet.generated","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:45-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
1539
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
1540
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
1541
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1542
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1543
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
1544
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
1545
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
1546
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
1547
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
1548
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
1549
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
1550
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
1551
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
1552
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
1553
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
1554
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
1555
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
1556
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
1557
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
1558
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
1559
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
1560
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
1561
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
1562
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
1563
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1564
+ lg:leading-relaxed\"\u003eRay ID: 6e19f0390b798017 \u0026bull;\u003c/span\u003e\n \u003cspan
1565
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1566
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:45 UTC\u003c/span\u003e\n \u003ch2
1567
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
1568
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
1569
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
1570
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
1571
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
1572
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
1573
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
1574
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
1575
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
1576
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1577
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
1578
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1579
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
1580
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
1581
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
1582
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
1583
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
1584
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
1585
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f0390b798017\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
1586
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
1587
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
1588
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
1589
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
1590
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
1591
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
1592
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
1593
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
1594
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
1595
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
1596
+ 22 Feb 2022 17:29:45 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
1597
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
1598
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=H191Sn5j4g3vpqj0Q4y0e32abD8Cf%2F7HAmJIBpkR0PC8uUZL6fwljzOVQwtMdrULlgHe8wCf4HD8QWgUcnWWxLw%2FTSrRl4Wd5GmzYPBCV68uvcp5NIdalGU2A0W%2BUA%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f0390b798017-IAD"],"alt-svc":["h3=\":443\";
1599
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:45-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:45-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"bank_billet.generated","resource_owner_id":472526},{"id":724164,"uid":"8a58fa77-a1c3-41a9-a87b-649dd4e61cc6","url":"https://iagro.herokuapp.com/callbacks/boletosimples","duration":48,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=867a8f835ccb43fd420700d96be67a481d5fc063","X-BoletoSimples-Delivery-Id":"8a58fa77-a1c3-41a9-a87b-649dd4e61cc6","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
1600
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472528,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
1601
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1602
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1603
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1604
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/yqrngb","formats":{"default":"https://sandbox.bole.to/3/yqrngb","png":"https://sandbox.bole.to/3/yqrngb.png","pdf":"https://sandbox.bole.to/3/yqrngb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/yqrngb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/yqrngb/boleto_pix","barcode":"https://sandbox.bole.to/3/yqrngb/barcode","envelope":"https://sandbox.bole.to/3/yqrngb/envelope","letter":"https://sandbox.bole.to/3/yqrngb/letter","line":"https://sandbox.bole.to/3/yqrngb/line","recibo":"https://sandbox.bole.to/3/yqrngb/recibo","carne":"https://sandbox.bole.to/3/yqrngb/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
1605
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
1606
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1607
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000084-7","processed_our_number_raw":"140000000000000847","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
1608
+ 20000.100048 00000.008409 1 91710000112040","our_number":"000000000000084","customer_subscription_id":null,"installment_total":3,"installment_number":3,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/yqrngb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10491917100001120401233220000100040000000840","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/yqrngb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433976,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472528,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
1609
+ de Título","created_at":"2022-02-22T14:27:02-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"event_code":"bank_billet.generated","webhook":{"id":1941,"url":"https://iagro.herokuapp.com/callbacks/boletosimples","first_try":"2022-02-22T14:29:44-03:00"}},"request_error":null,"response_body":null,"response_code":204,"response_headers":{"server":["Cowboy"],"date":["Tue,
1610
+ 22 Feb 2022 17:29:44 GMT"],"content-length":["0"],"connection":["close"],"x-frame-options":["DENY"],"x-xss-protection":["1;
1611
+ mode=block"],"x-content-type-options":["nosniff"],"x-download-options":["noopen"],"x-permitted-cross-domain-policies":["none"],"referrer-policy":["strict-origin-when-cross-origin"],"cache-control":["no-cache"],"x-request-id":["332c8e40-94aa-409b-8d89-a75406bbfb37"],"x-runtime":["0.009873"],"via":["1.1
1612
+ vegur"]},"response_message":"No Content","delivered_at":"2022-02-22T14:29:44-03:00","first_try":"2022-02-22T14:29:44-03:00","fails_count":0,"failed_at":null,"status":"delivered","bank_billet_account_id":659,"content_type":"application/json","webhook_id":1941,"event_code":"bank_billet.generated","resource_owner_id":472528},{"id":724163,"uid":"cf5bd6f3-e8ec-41cf-b913-f2445ead2dc5","url":"https://iagro.herokuapp.com/callbacks/boletosimples","duration":54,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=1eb3fcd2e5b2293c299e7dadc29ab75689f76562","X-BoletoSimples-Delivery-Id":"cf5bd6f3-e8ec-41cf-b913-f2445ead2dc5","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
1613
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472526,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
1614
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1615
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1616
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1617
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rdvrov","formats":{"default":"https://sandbox.bole.to/3/rdvrov","png":"https://sandbox.bole.to/3/rdvrov.png","pdf":"https://sandbox.bole.to/3/rdvrov.pdf","boleto_hibrido":"https://sandbox.bole.to/3/rdvrov/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/rdvrov/boleto_pix","barcode":"https://sandbox.bole.to/3/rdvrov/barcode","envelope":"https://sandbox.bole.to/3/rdvrov/envelope","letter":"https://sandbox.bole.to/3/rdvrov/letter","line":"https://sandbox.bole.to/3/rdvrov/line","recibo":"https://sandbox.bole.to/3/rdvrov/recibo","carne":"https://sandbox.bole.to/3/rdvrov/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
1618
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
1619
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1620
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000082-0","processed_our_number_raw":"140000000000000820","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
1621
+ 20000.100048 00000.008235 3 91090000112040","our_number":"000000000000082","customer_subscription_id":null,"installment_total":3,"installment_number":1,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10493910900001120401233220000100040000000823","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/rdvrov","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433975,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472526,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
1622
+ de Título","created_at":"2022-02-22T14:27:02-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"event_code":"bank_billet.generated","webhook":{"id":1941,"url":"https://iagro.herokuapp.com/callbacks/boletosimples","first_try":"2022-02-22T14:29:44-03:00"}},"request_error":null,"response_body":null,"response_code":204,"response_headers":{"server":["Cowboy"],"date":["Tue,
1623
+ 22 Feb 2022 17:29:44 GMT"],"content-length":["0"],"connection":["close"],"x-frame-options":["DENY"],"x-xss-protection":["1;
1624
+ mode=block"],"x-content-type-options":["nosniff"],"x-download-options":["noopen"],"x-permitted-cross-domain-policies":["none"],"referrer-policy":["strict-origin-when-cross-origin"],"cache-control":["no-cache"],"x-request-id":["1e56bd6d-6e66-4146-af0e-5e1cbcec9aff"],"x-runtime":["0.012857"],"via":["1.1
1625
+ vegur"]},"response_message":"No Content","delivered_at":"2022-02-22T14:29:45-03:00","first_try":"2022-02-22T14:29:44-03:00","fails_count":0,"failed_at":null,"status":"delivered","bank_billet_account_id":659,"content_type":"application/json","webhook_id":1941,"event_code":"bank_billet.generated","resource_owner_id":472526},{"id":724162,"uid":"59bd46d2-ed41-4485-8ab6-f8cac196bdae","url":"https://iagro.herokuapp.com/callbacks/boletosimples","duration":56,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=3b6fa9619e5a06e2598265d7285e9f01ec71b8ed","X-BoletoSimples-Delivery-Id":"59bd46d2-ed41-4485-8ab6-f8cac196bdae","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
1626
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472527,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
1627
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1628
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1629
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1630
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mvzyld","formats":{"default":"https://sandbox.bole.to/3/mvzyld","png":"https://sandbox.bole.to/3/mvzyld.png","pdf":"https://sandbox.bole.to/3/mvzyld.pdf","boleto_hibrido":"https://sandbox.bole.to/3/mvzyld/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/mvzyld/boleto_pix","barcode":"https://sandbox.bole.to/3/mvzyld/barcode","envelope":"https://sandbox.bole.to/3/mvzyld/envelope","letter":"https://sandbox.bole.to/3/mvzyld/letter","line":"https://sandbox.bole.to/3/mvzyld/line","recibo":"https://sandbox.bole.to/3/mvzyld/recibo","carne":"https://sandbox.bole.to/3/mvzyld/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
1631
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
1632
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1633
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000083-9","processed_our_number_raw":"140000000000000839","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
1634
+ 20000.100048 00000.008318 9 91410000112040","our_number":"000000000000083","customer_subscription_id":null,"installment_total":3,"installment_number":2,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/mvzyld/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10499914100001120401233220000100040000000831","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/mvzyld","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433974,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472527,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
1635
+ de Título","created_at":"2022-02-22T14:27:02-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"event_code":"bank_billet.generated","webhook":{"id":1941,"url":"https://iagro.herokuapp.com/callbacks/boletosimples","first_try":"2022-02-22T14:29:45-03:00"}},"request_error":null,"response_body":null,"response_code":204,"response_headers":{"server":["Cowboy"],"date":["Tue,
1636
+ 22 Feb 2022 17:29:45 GMT"],"content-length":["0"],"connection":["close"],"x-frame-options":["DENY"],"x-xss-protection":["1;
1637
+ mode=block"],"x-content-type-options":["nosniff"],"x-download-options":["noopen"],"x-permitted-cross-domain-policies":["none"],"referrer-policy":["strict-origin-when-cross-origin"],"cache-control":["no-cache"],"x-request-id":["884c6bd3-edc0-492c-ad0e-452a89c22006"],"x-runtime":["0.009902"],"via":["1.1
1638
+ vegur"]},"response_message":"No Content","delivered_at":"2022-02-22T14:29:45-03:00","first_try":"2022-02-22T14:29:45-03:00","fails_count":0,"failed_at":null,"status":"delivered","bank_billet_account_id":659,"content_type":"application/json","webhook_id":1941,"event_code":"bank_billet.generated","resource_owner_id":472527},{"id":724161,"uid":"a5da1fa5-5aa0-4c40-934d-eec6b9d138fd","url":"http://requestb.in/1gsu9nc1","duration":13,"request_headers":{"X-BoletoSimples-Event":"bank_billet_account.created","X-Hub-Signature":"sha1=b00214e8340a1edb9dbfb6dded650760cee18a36","X-BoletoSimples-Delivery-Id":"a5da1fa5-5aa0-4c40-934d-eec6b9d138fd","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
1639
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":4363,"bank_contract_slug":"sicoob-02","next_our_number":1,"agency_number":"4327","agency_digit":"3","account_number":"00003666","account_digit":"8","extra1":"1234567","extra1_digit":null,"extra2":null,"extra2_digit":null,"extra3":null,"beneficiary_name":"XPTO
1640
+ S.A.","beneficiary_cnpj_cpf":"22.622.867/0001-11","beneficiary_address":"Rua
1641
+ S, Moema, São Paulo, SP, 04524030","name":"Bancoob/Sicoob 02 CC: 00003666-8
1642
+ 1234567","status":"pending","bank_contract":{"bank":{"code":"sicoob","name":"Bancoob/Sicoob","number":"756"},"slug":"sicoob-02","code":"2","sufix":"02","variation":null,"name":"1/02
1643
+ - Simples Sem Registro"},"integration":false,"created_via_api":true,"homologated_at":null,"next_remittance_number":1,"configuration":null,"default":false,"custom_name":"Bancoob/Sicoob
1644
+ 02 CC: 3666-8 1234567","kind":"cnab400","beneficiary_address_street":"Rua
1645
+ S","beneficiary_address_street_number":null,"beneficiary_address_complement":null,"beneficiary_address_city":"São
1646
+ Paulo","beneficiary_address_neighborhood":"Moema","beneficiary_address_state":"SP","beneficiary_address_zipcode":"04524030","allow_expiration_on_weekends":false},"event_code":"bank_billet_account.created","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:44-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
1647
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
1648
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
1649
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1650
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1651
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
1652
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
1653
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
1654
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
1655
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
1656
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
1657
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
1658
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
1659
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
1660
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
1661
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
1662
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
1663
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
1664
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
1665
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
1666
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
1667
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
1668
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
1669
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
1670
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
1671
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1672
+ lg:leading-relaxed\"\u003eRay ID: 6e19f0370bf7820f \u0026bull;\u003c/span\u003e\n \u003cspan
1673
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1674
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:44 UTC\u003c/span\u003e\n \u003ch2
1675
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
1676
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
1677
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
1678
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
1679
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
1680
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
1681
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
1682
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
1683
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
1684
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1685
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
1686
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1687
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
1688
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
1689
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
1690
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
1691
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
1692
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
1693
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f0370bf7820f\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
1694
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
1695
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
1696
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
1697
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
1698
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
1699
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
1700
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
1701
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
1702
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
1703
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
1704
+ 22 Feb 2022 17:29:44 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
1705
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
1706
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=VSovMsBKLbSOOUxUucUvEw7ewdGzTJj%2BT063uNisJimgWeDESHEvD1Hlp7Fa1tqQkMjZzPRdqpt1p7RTk0VFsJJ0vP1s4Gj2Y6bIR7KKqd0ckG%2BCpOVp95eSwSFvTw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f0370bf7820f-IAD"],"alt-svc":["h3=\":443\";
1707
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:44-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:44-03:00","status":"failed","bank_billet_account_id":null,"content_type":"application/json","webhook_id":53,"event_code":"bank_billet_account.created","resource_owner_id":4363},{"id":724160,"uid":"036533d4-55e8-4f9a-a412-485ed817d8a4","url":"http://requestb.in/1gsu9nc1","duration":52,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=80c75d4758a74594080a43b06da33552961437eb","X-BoletoSimples-Delivery-Id":"036533d4-55e8-4f9a-a412-485ed817d8a4","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
1708
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472528,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
1709
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1710
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1711
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1712
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/yqrngb","formats":{"default":"https://sandbox.bole.to/3/yqrngb","png":"https://sandbox.bole.to/3/yqrngb.png","pdf":"https://sandbox.bole.to/3/yqrngb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/yqrngb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/yqrngb/boleto_pix","barcode":"https://sandbox.bole.to/3/yqrngb/barcode","envelope":"https://sandbox.bole.to/3/yqrngb/envelope","letter":"https://sandbox.bole.to/3/yqrngb/letter","line":"https://sandbox.bole.to/3/yqrngb/line","recibo":"https://sandbox.bole.to/3/yqrngb/recibo","carne":"https://sandbox.bole.to/3/yqrngb/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
1713
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
1714
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1715
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000084-7","processed_our_number_raw":"140000000000000847","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
1716
+ 20000.100048 00000.008409 1 91710000112040","our_number":"000000000000084","customer_subscription_id":null,"installment_total":3,"installment_number":3,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/yqrngb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10491917100001120401233220000100040000000840","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/yqrngb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"changes":{"status":["generating","opened"],"updated_at":["2022-02-22
1717
+ 14:27:01 -0300","2022-02-22 14:27:02 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:44-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
1718
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
1719
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
1720
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1721
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1722
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
1723
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
1724
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
1725
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
1726
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
1727
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
1728
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
1729
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
1730
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
1731
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
1732
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
1733
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
1734
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
1735
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
1736
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
1737
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
1738
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
1739
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
1740
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
1741
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
1742
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1743
+ lg:leading-relaxed\"\u003eRay ID: 6e19f0364e47cf44 \u0026bull;\u003c/span\u003e\n \u003cspan
1744
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1745
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:44 UTC\u003c/span\u003e\n \u003ch2
1746
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
1747
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
1748
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
1749
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
1750
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
1751
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
1752
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
1753
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
1754
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
1755
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1756
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
1757
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1758
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
1759
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
1760
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
1761
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
1762
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
1763
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
1764
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f0364e47cf44\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
1765
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
1766
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
1767
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
1768
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
1769
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
1770
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
1771
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
1772
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
1773
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
1774
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
1775
+ 22 Feb 2022 17:29:44 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
1776
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
1777
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=InZ8vx6ja9xKwttKfHTKgzRgwDNvpckg0Jz7G3ZTElS%2BCxpZScQNxprugdvgit9dPzCXRjPdr81aQRqlroE0IghZvgwK7t2SXB2S2kpbFkRbSMBdE7PuviUPGSaEIg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f0364e47cf44-IAD"],"alt-svc":["h3=\":443\";
1778
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:44-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:44-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"bank_billet.updated","resource_owner_id":472528},{"id":724159,"uid":"a7f44611-3dc3-42ce-a1c6-25f653eea10e","url":"http://requestb.in/1gsu9nc1","duration":26,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=477dae7e5595fd624a746d762ebafd19e906c545","X-BoletoSimples-Delivery-Id":"a7f44611-3dc3-42ce-a1c6-25f653eea10e","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
1779
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472526,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
1780
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1781
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1782
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1783
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rdvrov","formats":{"default":"https://sandbox.bole.to/3/rdvrov","png":"https://sandbox.bole.to/3/rdvrov.png","pdf":"https://sandbox.bole.to/3/rdvrov.pdf","boleto_hibrido":"https://sandbox.bole.to/3/rdvrov/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/rdvrov/boleto_pix","barcode":"https://sandbox.bole.to/3/rdvrov/barcode","envelope":"https://sandbox.bole.to/3/rdvrov/envelope","letter":"https://sandbox.bole.to/3/rdvrov/letter","line":"https://sandbox.bole.to/3/rdvrov/line","recibo":"https://sandbox.bole.to/3/rdvrov/recibo","carne":"https://sandbox.bole.to/3/rdvrov/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
1784
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
1785
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1786
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000082-0","processed_our_number_raw":"140000000000000820","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
1787
+ 20000.100048 00000.008235 3 91090000112040","our_number":"000000000000082","customer_subscription_id":null,"installment_total":3,"installment_number":1,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10493910900001120401233220000100040000000823","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/rdvrov","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"changes":{"status":["generating","opened"],"updated_at":["2022-02-22
1788
+ 14:27:01 -0300","2022-02-22 14:27:02 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:44-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
1789
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
1790
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
1791
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1792
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1793
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
1794
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
1795
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
1796
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
1797
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
1798
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
1799
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
1800
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
1801
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
1802
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
1803
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
1804
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
1805
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
1806
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
1807
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
1808
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
1809
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
1810
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
1811
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
1812
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
1813
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1814
+ lg:leading-relaxed\"\u003eRay ID: 6e19f0355bfa57b5 \u0026bull;\u003c/span\u003e\n \u003cspan
1815
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1816
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:44 UTC\u003c/span\u003e\n \u003ch2
1817
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
1818
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
1819
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
1820
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
1821
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
1822
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
1823
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
1824
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
1825
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
1826
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1827
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
1828
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1829
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
1830
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
1831
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
1832
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
1833
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
1834
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
1835
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f0355bfa57b5\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
1836
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
1837
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
1838
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
1839
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
1840
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
1841
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
1842
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
1843
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
1844
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
1845
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
1846
+ 22 Feb 2022 17:29:44 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
1847
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
1848
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=TtsoQbGRCcBA3ybXFYhd1lbaCEfh%2FVY2isnz%2FnzXM6NOcFDXaKNXtj%2BugZ6Wy9EJ1gpv4zzuZFicNZVPW%2FXiHim1xsCminG9dUO3VzacllPF1rjDF6aCinhPiI9LHw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f0355bfa57b5-IAD"],"alt-svc":["h3=\":443\";
1849
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:44-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:44-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"bank_billet.updated","resource_owner_id":472526},{"id":724158,"uid":"3e55d545-38da-478e-9b26-d52f7e2b85f6","url":"https://iagro.herokuapp.com/callbacks/boletosimples","duration":47,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=ce050cdf532204a6b828e5b63a727d44fb21d6d8","X-BoletoSimples-Delivery-Id":"3e55d545-38da-478e-9b26-d52f7e2b85f6","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
1850
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472528,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
1851
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1852
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1853
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1854
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/yqrngb","formats":{"default":"https://sandbox.bole.to/3/yqrngb","png":"https://sandbox.bole.to/3/yqrngb.png","pdf":"https://sandbox.bole.to/3/yqrngb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/yqrngb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/yqrngb/boleto_pix","barcode":"https://sandbox.bole.to/3/yqrngb/barcode","envelope":"https://sandbox.bole.to/3/yqrngb/envelope","letter":"https://sandbox.bole.to/3/yqrngb/letter","line":"https://sandbox.bole.to/3/yqrngb/line","recibo":"https://sandbox.bole.to/3/yqrngb/recibo","carne":"https://sandbox.bole.to/3/yqrngb/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
1855
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
1856
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1857
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000084-7","processed_our_number_raw":"140000000000000847","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
1858
+ 20000.100048 00000.008409 1 91710000112040","our_number":"000000000000084","customer_subscription_id":null,"installment_total":3,"installment_number":3,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/yqrngb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10491917100001120401233220000100040000000840","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/yqrngb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"changes":{"status":["generating","opened"],"updated_at":["2022-02-22
1859
+ 14:27:01 -0300","2022-02-22 14:27:02 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":1941,"url":"https://iagro.herokuapp.com/callbacks/boletosimples","first_try":"2022-02-22T14:29:44-03:00"}},"request_error":null,"response_body":"","response_code":422,"response_headers":{"server":["Cowboy"],"date":["Tue,
1860
+ 22 Feb 2022 17:29:44 GMT"],"connection":["close"],"x-frame-options":["DENY"],"x-xss-protection":["1;
1861
+ mode=block"],"x-content-type-options":["nosniff"],"x-download-options":["noopen"],"x-permitted-cross-domain-policies":["none"],"referrer-policy":["strict-origin-when-cross-origin"],"content-type":["text/html"],"cache-control":["no-cache"],"x-request-id":["aab98644-00e1-4b2a-97cf-8322a55a56c6"],"x-runtime":["0.010745"],"transfer-encoding":["chunked"],"via":["1.1
1862
+ vegur"]},"response_message":"Unprocessable Entity","delivered_at":null,"first_try":"2022-02-22T14:29:44-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:44-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":1941,"event_code":"bank_billet.updated","resource_owner_id":472528},{"id":724157,"uid":"06769286-d1db-4976-8de3-7a152b429286","url":"https://iagro.herokuapp.com/callbacks/boletosimples","duration":48,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=1f3ae484716f3083d56f7e84715afc49187a97f6","X-BoletoSimples-Delivery-Id":"06769286-d1db-4976-8de3-7a152b429286","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
1863
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472526,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
1864
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1865
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1866
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1867
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rdvrov","formats":{"default":"https://sandbox.bole.to/3/rdvrov","png":"https://sandbox.bole.to/3/rdvrov.png","pdf":"https://sandbox.bole.to/3/rdvrov.pdf","boleto_hibrido":"https://sandbox.bole.to/3/rdvrov/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/rdvrov/boleto_pix","barcode":"https://sandbox.bole.to/3/rdvrov/barcode","envelope":"https://sandbox.bole.to/3/rdvrov/envelope","letter":"https://sandbox.bole.to/3/rdvrov/letter","line":"https://sandbox.bole.to/3/rdvrov/line","recibo":"https://sandbox.bole.to/3/rdvrov/recibo","carne":"https://sandbox.bole.to/3/rdvrov/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
1868
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
1869
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1870
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000082-0","processed_our_number_raw":"140000000000000820","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
1871
+ 20000.100048 00000.008235 3 91090000112040","our_number":"000000000000082","customer_subscription_id":null,"installment_total":3,"installment_number":1,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10493910900001120401233220000100040000000823","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/rdvrov","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"changes":{"status":["generating","opened"],"updated_at":["2022-02-22
1872
+ 14:27:01 -0300","2022-02-22 14:27:02 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":1941,"url":"https://iagro.herokuapp.com/callbacks/boletosimples","first_try":"2022-02-22T14:29:44-03:00"}},"request_error":null,"response_body":"","response_code":422,"response_headers":{"server":["Cowboy"],"date":["Tue,
1873
+ 22 Feb 2022 17:29:44 GMT"],"connection":["close"],"x-frame-options":["DENY"],"x-xss-protection":["1;
1874
+ mode=block"],"x-content-type-options":["nosniff"],"x-download-options":["noopen"],"x-permitted-cross-domain-policies":["none"],"referrer-policy":["strict-origin-when-cross-origin"],"content-type":["text/html"],"cache-control":["no-cache"],"x-request-id":["9d381604-2ebd-4b36-86ea-1a0936a90f12"],"x-runtime":["0.009069"],"transfer-encoding":["chunked"],"via":["1.1
1875
+ vegur"]},"response_message":"Unprocessable Entity","delivered_at":null,"first_try":"2022-02-22T14:29:44-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:44-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":1941,"event_code":"bank_billet.updated","resource_owner_id":472526},{"id":724156,"uid":"506c635a-8f11-4a80-a604-6570ae483d89","url":"http://requestb.in/1gsu9nc1","duration":25,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=ce43ea9cc61d4ed9eef45cf577ab39b91b9da3b3","X-BoletoSimples-Delivery-Id":"506c635a-8f11-4a80-a604-6570ae483d89","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
1876
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472527,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
1877
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1878
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1879
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1880
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mvzyld","formats":{"default":"https://sandbox.bole.to/3/mvzyld","png":"https://sandbox.bole.to/3/mvzyld.png","pdf":"https://sandbox.bole.to/3/mvzyld.pdf","boleto_hibrido":"https://sandbox.bole.to/3/mvzyld/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/mvzyld/boleto_pix","barcode":"https://sandbox.bole.to/3/mvzyld/barcode","envelope":"https://sandbox.bole.to/3/mvzyld/envelope","letter":"https://sandbox.bole.to/3/mvzyld/letter","line":"https://sandbox.bole.to/3/mvzyld/line","recibo":"https://sandbox.bole.to/3/mvzyld/recibo","carne":"https://sandbox.bole.to/3/mvzyld/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
1881
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
1882
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1883
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000083-9","processed_our_number_raw":"140000000000000839","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
1884
+ 20000.100048 00000.008318 9 91410000112040","our_number":"000000000000083","customer_subscription_id":null,"installment_total":3,"installment_number":2,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/mvzyld/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10499914100001120401233220000100040000000831","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/mvzyld","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"changes":{"status":["generating","opened"],"updated_at":["2022-02-22
1885
+ 14:27:01 -0300","2022-02-22 14:27:02 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:44-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
1886
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
1887
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
1888
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1889
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1890
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
1891
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
1892
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
1893
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
1894
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
1895
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
1896
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
1897
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
1898
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
1899
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
1900
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
1901
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
1902
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
1903
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
1904
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
1905
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
1906
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
1907
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
1908
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
1909
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
1910
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1911
+ lg:leading-relaxed\"\u003eRay ID: 6e19f03429195b05 \u0026bull;\u003c/span\u003e\n \u003cspan
1912
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1913
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:44 UTC\u003c/span\u003e\n \u003ch2
1914
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
1915
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
1916
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
1917
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
1918
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
1919
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
1920
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
1921
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
1922
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
1923
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1924
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
1925
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
1926
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
1927
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
1928
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
1929
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
1930
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
1931
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
1932
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f03429195b05\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
1933
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
1934
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
1935
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
1936
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
1937
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
1938
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
1939
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
1940
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
1941
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
1942
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
1943
+ 22 Feb 2022 17:29:44 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
1944
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
1945
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=9vOhZFNVlTGlhe2ODCPmBiShZgs7GT3qlvwNvvt%2FF0PidyYNvLpGieD3%2BsMsXlQynGactIyLbR3qgFjs9Clwr6SkdnV7XZ3vlA%2FCkRQyZ7BtZH5LosRdO3eeVUBfxw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f03429195b05-IAD"],"alt-svc":["h3=\":443\";
1946
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:44-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:44-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"bank_billet.updated","resource_owner_id":472527},{"id":724155,"uid":"7d9a284f-f0e9-413f-bf81-52c4aea34ace","url":"https://iagro.herokuapp.com/callbacks/boletosimples","duration":38,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=17eefa3dcc182eb47655ffbbf71e1de806bc5af3","X-BoletoSimples-Delivery-Id":"7d9a284f-f0e9-413f-bf81-52c4aea34ace","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
1947
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472527,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
1948
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1949
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1950
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1951
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mvzyld","formats":{"default":"https://sandbox.bole.to/3/mvzyld","png":"https://sandbox.bole.to/3/mvzyld.png","pdf":"https://sandbox.bole.to/3/mvzyld.pdf","boleto_hibrido":"https://sandbox.bole.to/3/mvzyld/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/mvzyld/boleto_pix","barcode":"https://sandbox.bole.to/3/mvzyld/barcode","envelope":"https://sandbox.bole.to/3/mvzyld/envelope","letter":"https://sandbox.bole.to/3/mvzyld/letter","line":"https://sandbox.bole.to/3/mvzyld/line","recibo":"https://sandbox.bole.to/3/mvzyld/recibo","carne":"https://sandbox.bole.to/3/mvzyld/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
1952
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
1953
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1954
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000083-9","processed_our_number_raw":"140000000000000839","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
1955
+ 20000.100048 00000.008318 9 91410000112040","our_number":"000000000000083","customer_subscription_id":null,"installment_total":3,"installment_number":2,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/mvzyld/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10499914100001120401233220000100040000000831","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/mvzyld","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"changes":{"status":["generating","opened"],"updated_at":["2022-02-22
1956
+ 14:27:01 -0300","2022-02-22 14:27:02 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":1941,"url":"https://iagro.herokuapp.com/callbacks/boletosimples","first_try":"2022-02-22T14:29:44-03:00"}},"request_error":null,"response_body":"","response_code":422,"response_headers":{"server":["Cowboy"],"date":["Tue,
1957
+ 22 Feb 2022 17:29:43 GMT"],"connection":["close"],"x-frame-options":["DENY"],"x-xss-protection":["1;
1958
+ mode=block"],"x-content-type-options":["nosniff"],"x-download-options":["noopen"],"x-permitted-cross-domain-policies":["none"],"referrer-policy":["strict-origin-when-cross-origin"],"content-type":["text/html"],"cache-control":["no-cache"],"x-request-id":["db3a1ff1-f10b-432c-9553-a6a2b9dc2cad"],"x-runtime":["0.012752"],"transfer-encoding":["chunked"],"via":["1.1
1959
+ vegur"]},"response_message":"Unprocessable Entity","delivered_at":null,"first_try":"2022-02-22T14:29:44-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:44-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":1941,"event_code":"bank_billet.updated","resource_owner_id":472527},{"id":724154,"uid":"87ea29fd-b78f-494a-893e-45cfad7a2409","url":"http://requestb.in/1gsu9nc1","duration":17,"request_headers":{"X-BoletoSimples-Event":"bank_billet_discharge.created","X-Hub-Signature":"sha1=4e376b0bc17e38f130981798e8557a1688cd700e","X-BoletoSimples-Delivery-Id":"87ea29fd-b78f-494a-893e-45cfad7a2409","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
1960
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":21254,"occurrence":"10","date_of_occurrence":"2020-03-20","discharge_id":3321,"bank_billet_id":null,"occurrence_error":"00","line_parsed":{"cnpj_cpf":"78796613000141","agency_number":"6519","account_number":"90009999","conta_cobranca":"90009999","control_number":"","our_number":"0495853","processed_our_number_raw":"04958535","event_type":"10","paid_at":"2020-03-20","document_number":"495853","error_code":"00","banco_recebedor":"033","agencia_recebedora":"1651","bank_rate":"30","iof":"0","value_rebate":"0","discount":"0","paid_amount":"0","billet_fine":"0","other_credit":"0","credit_at":"2020-03-20","credit_amount":"0"},"line_raw":{"line_raw":"1027879661300014165199000999990009999 04958535 510200320495853 0495853500 12111900000000300350331651901000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
1961
+ N 200320 SOLUCOES DIGITAIS L 00000000000000000000000000000000000000000C 325000002"},"processed_at":"2022-02-22T14:26:40-03:00","occurrence_detail":"Título
1962
+ Baixado Conforme Instrução Ou Por Título Protestado 11 = Em Ser","occurrence_error_detail":null,"our_occurrence":"2074","bank_billet_account_id":null,"bank_number":"033","created_at":"2022-02-22T14:26:40-03:00","kind":"400"},"event_code":"bank_billet_discharge.created","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:44-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
1963
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
1964
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
1965
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1966
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
1967
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
1968
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
1969
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
1970
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
1971
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
1972
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
1973
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
1974
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
1975
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
1976
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
1977
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
1978
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
1979
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
1980
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
1981
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
1982
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
1983
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
1984
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
1985
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
1986
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
1987
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1988
+ lg:leading-relaxed\"\u003eRay ID: 6e19f033cb806fd7 \u0026bull;\u003c/span\u003e\n \u003cspan
1989
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
1990
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:44 UTC\u003c/span\u003e\n \u003ch2
1991
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
1992
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
1993
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
1994
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
1995
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
1996
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
1997
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
1998
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
1999
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
2000
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
2001
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
2002
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
2003
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
2004
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
2005
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
2006
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
2007
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
2008
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
2009
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f033cb806fd7\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
2010
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
2011
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
2012
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
2013
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
2014
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
2015
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
2016
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
2017
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
2018
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
2019
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
2020
+ 22 Feb 2022 17:29:44 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
2021
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
2022
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=IM2DBwN0p01B%2Fe21h7wZMJlSdo3vUvqHNYwX4wldtfUANJgfIS%2BoTWwitEQ%2FfMU9zUyu5zcmOk3t6N4sT5J8NsmJO3oPfRQt%2FzO%2FskCH8EUsQLU4IvESV2jcmTfuCA%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f033cb806fd7-IAD"],"alt-svc":["h3=\":443\";
2023
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:44-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:44-03:00","status":"failed","bank_billet_account_id":null,"content_type":"application/json","webhook_id":53,"event_code":"bank_billet_discharge.created","resource_owner_id":21254},{"id":724153,"uid":"0c7c6791-7a1c-4e52-a772-1ae3efb475cf","url":"http://requestb.in/1gsu9nc1","duration":16,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=855f520b40f01ff33340d281d9f5b665f82ea4dd","X-BoletoSimples-Delivery-Id":"0c7c6791-7a1c-4e52-a772-1ae3efb475cf","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
2024
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472528,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
2025
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
2026
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
2027
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
2028
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/yqrngb","formats":{"default":"https://sandbox.bole.to/3/yqrngb","png":"https://sandbox.bole.to/3/yqrngb.png","pdf":"https://sandbox.bole.to/3/yqrngb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/yqrngb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/yqrngb/boleto_pix","barcode":"https://sandbox.bole.to/3/yqrngb/barcode","envelope":"https://sandbox.bole.to/3/yqrngb/envelope","letter":"https://sandbox.bole.to/3/yqrngb/letter","line":"https://sandbox.bole.to/3/yqrngb/line","recibo":"https://sandbox.bole.to/3/yqrngb/recibo","carne":"https://sandbox.bole.to/3/yqrngb/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
2029
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
2030
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
2031
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000084-7","processed_our_number_raw":"140000000000000847","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
2032
+ 20000.100048 00000.008409 1 91710000112040","our_number":"000000000000084","customer_subscription_id":null,"installment_total":3,"installment_number":3,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/yqrngb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:01-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10491917100001120401233220000100040000000840","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/yqrngb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:44-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
2033
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
2034
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
2035
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
2036
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
2037
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
2038
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
2039
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
2040
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
2041
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
2042
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
2043
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
2044
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
2045
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
2046
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
2047
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
2048
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
2049
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
2050
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
2051
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
2052
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
2053
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
2054
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
2055
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
2056
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
2057
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
2058
+ lg:leading-relaxed\"\u003eRay ID: 6e19f0337b4c57ca \u0026bull;\u003c/span\u003e\n \u003cspan
2059
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
2060
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:44 UTC\u003c/span\u003e\n \u003ch2
2061
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
2062
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
2063
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
2064
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
2065
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
2066
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
2067
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
2068
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
2069
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
2070
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
2071
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
2072
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
2073
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
2074
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
2075
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
2076
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
2077
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
2078
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
2079
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f0337b4c57ca\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
2080
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
2081
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
2082
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
2083
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
2084
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
2085
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
2086
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
2087
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
2088
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
2089
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
2090
+ 22 Feb 2022 17:29:44 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
2091
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
2092
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=0%2FenHrzMK5Gm7gTZNZ53LunIm54OFcza%2B5WlrKGlRoceR7NmhgG6QZ4u1FPoBIS7sIPxtyCjmlPQSliFGwgwyzsLoUH82958EW9ENYlhmjdLAjccgj9LwA3Aikp%2Fjw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f0337b4c57ca-IAD"],"alt-svc":["h3=\":443\";
2093
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:44-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:44-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"bank_billet.created","resource_owner_id":472528},{"id":724152,"uid":"c434b5be-29b1-46fb-be24-0e3da80fca2a","url":"https://iagro.herokuapp.com/callbacks/boletosimples","duration":65,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=86e9b82becaf983d5218439b6ca474fce642f918","X-BoletoSimples-Delivery-Id":"c434b5be-29b1-46fb-be24-0e3da80fca2a","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
2094
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472528,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
2095
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
2096
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
2097
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
2098
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/yqrngb","formats":{"default":"https://sandbox.bole.to/3/yqrngb","png":"https://sandbox.bole.to/3/yqrngb.png","pdf":"https://sandbox.bole.to/3/yqrngb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/yqrngb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/yqrngb/boleto_pix","barcode":"https://sandbox.bole.to/3/yqrngb/barcode","envelope":"https://sandbox.bole.to/3/yqrngb/envelope","letter":"https://sandbox.bole.to/3/yqrngb/letter","line":"https://sandbox.bole.to/3/yqrngb/line","recibo":"https://sandbox.bole.to/3/yqrngb/recibo","carne":"https://sandbox.bole.to/3/yqrngb/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
2099
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
2100
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
2101
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000084-7","processed_our_number_raw":"140000000000000847","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
2102
+ 20000.100048 00000.008409 1 91710000112040","our_number":"000000000000084","customer_subscription_id":null,"installment_total":3,"installment_number":3,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/yqrngb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:01-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10491917100001120401233220000100040000000840","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/yqrngb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":1941,"url":"https://iagro.herokuapp.com/callbacks/boletosimples","first_try":"2022-02-22T14:29:44-03:00"}},"request_error":null,"response_body":"","response_code":422,"response_headers":{"server":["Cowboy"],"date":["Tue,
2103
+ 22 Feb 2022 17:29:43 GMT"],"connection":["close"],"x-frame-options":["DENY"],"x-xss-protection":["1;
2104
+ mode=block"],"x-content-type-options":["nosniff"],"x-download-options":["noopen"],"x-permitted-cross-domain-policies":["none"],"referrer-policy":["strict-origin-when-cross-origin"],"content-type":["text/html"],"cache-control":["no-cache"],"x-request-id":["bc5521e2-1dc9-4b9b-868f-7a3588540000"],"x-runtime":["0.008751"],"transfer-encoding":["chunked"],"via":["1.1
2105
+ vegur"]},"response_message":"Unprocessable Entity","delivered_at":null,"first_try":"2022-02-22T14:29:44-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:44-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":1941,"event_code":"bank_billet.created","resource_owner_id":472528},{"id":724151,"uid":"82e07b8f-b879-4ca0-a4a3-366adfc1a798","url":"http://requestb.in/1gsu9nc1","duration":16,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=1488b636b02782d014a891499e1c9348b58fd875","X-BoletoSimples-Delivery-Id":"82e07b8f-b879-4ca0-a4a3-366adfc1a798","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
2106
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472526,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
2107
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
2108
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
2109
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
2110
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rdvrov","formats":{"default":"https://sandbox.bole.to/3/rdvrov","png":"https://sandbox.bole.to/3/rdvrov.png","pdf":"https://sandbox.bole.to/3/rdvrov.pdf","boleto_hibrido":"https://sandbox.bole.to/3/rdvrov/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/rdvrov/boleto_pix","barcode":"https://sandbox.bole.to/3/rdvrov/barcode","envelope":"https://sandbox.bole.to/3/rdvrov/envelope","letter":"https://sandbox.bole.to/3/rdvrov/letter","line":"https://sandbox.bole.to/3/rdvrov/line","recibo":"https://sandbox.bole.to/3/rdvrov/recibo","carne":"https://sandbox.bole.to/3/rdvrov/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
2111
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
2112
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
2113
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000082-0","processed_our_number_raw":"140000000000000820","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
2114
+ 20000.100048 00000.008235 3 91090000112040","our_number":"000000000000082","customer_subscription_id":null,"installment_total":3,"installment_number":1,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:01-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10493910900001120401233220000100040000000823","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/rdvrov","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:44-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
2115
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
2116
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
2117
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
2118
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
2119
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
2120
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
2121
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
2122
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
2123
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
2124
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
2125
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
2126
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
2127
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
2128
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
2129
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
2130
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
2131
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
2132
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
2133
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
2134
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
2135
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
2136
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
2137
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
2138
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
2139
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
2140
+ lg:leading-relaxed\"\u003eRay ID: 6e19f0329c1f3805 \u0026bull;\u003c/span\u003e\n \u003cspan
2141
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
2142
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:44 UTC\u003c/span\u003e\n \u003ch2
2143
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
2144
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
2145
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
2146
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
2147
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
2148
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
2149
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
2150
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
2151
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
2152
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
2153
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
2154
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
2155
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
2156
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
2157
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
2158
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
2159
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
2160
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
2161
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f0329c1f3805\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
2162
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
2163
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
2164
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
2165
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
2166
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
2167
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
2168
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
2169
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
2170
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
2171
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
2172
+ 22 Feb 2022 17:29:44 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
2173
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
2174
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=JPe6Mhk0TaVFzFLawXLxop0keVvuw9wq5BB869G2wUqbtO1AiQyjGPo8BnbyBukx%2BzMHdUyeAJAbXyk9%2BeO38nlcRG9vvrz7yhToifjfE5O2J3Xy8wiTBz%2FroMdntg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f0329c1f3805-IAD"],"alt-svc":["h3=\":443\";
2175
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:44-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:44-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"bank_billet.created","resource_owner_id":472526},{"id":724150,"uid":"38886e3e-08cd-4582-a4d8-2a5306b94ab8","url":"https://iagro.herokuapp.com/callbacks/boletosimples","duration":41,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=542a1d72af7a5ec3feba501779fb4ae55b28d6a9","X-BoletoSimples-Delivery-Id":"38886e3e-08cd-4582-a4d8-2a5306b94ab8","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
2176
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472526,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
2177
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
2178
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
2179
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
2180
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rdvrov","formats":{"default":"https://sandbox.bole.to/3/rdvrov","png":"https://sandbox.bole.to/3/rdvrov.png","pdf":"https://sandbox.bole.to/3/rdvrov.pdf","boleto_hibrido":"https://sandbox.bole.to/3/rdvrov/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/rdvrov/boleto_pix","barcode":"https://sandbox.bole.to/3/rdvrov/barcode","envelope":"https://sandbox.bole.to/3/rdvrov/envelope","letter":"https://sandbox.bole.to/3/rdvrov/letter","line":"https://sandbox.bole.to/3/rdvrov/line","recibo":"https://sandbox.bole.to/3/rdvrov/recibo","carne":"https://sandbox.bole.to/3/rdvrov/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
2181
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
2182
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
2183
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000082-0","processed_our_number_raw":"140000000000000820","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
2184
+ 20000.100048 00000.008235 3 91090000112040","our_number":"000000000000082","customer_subscription_id":null,"installment_total":3,"installment_number":1,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:01-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10493910900001120401233220000100040000000823","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/rdvrov","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":1941,"url":"https://iagro.herokuapp.com/callbacks/boletosimples","first_try":"2022-02-22T14:29:43-03:00"}},"request_error":null,"response_body":"","response_code":422,"response_headers":{"server":["Cowboy"],"date":["Tue,
2185
+ 22 Feb 2022 17:29:43 GMT"],"connection":["close"],"x-frame-options":["DENY"],"x-xss-protection":["1;
2186
+ mode=block"],"x-content-type-options":["nosniff"],"x-download-options":["noopen"],"x-permitted-cross-domain-policies":["none"],"referrer-policy":["strict-origin-when-cross-origin"],"content-type":["text/html"],"cache-control":["no-cache"],"x-request-id":["1d46ddf4-d2c4-44d5-9c41-17a6bb4c4e91"],"x-runtime":["0.008408"],"transfer-encoding":["chunked"],"via":["1.1
2187
+ vegur"]},"response_message":"Unprocessable Entity","delivered_at":null,"first_try":"2022-02-22T14:29:43-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:44-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":1941,"event_code":"bank_billet.created","resource_owner_id":472526},{"id":724149,"uid":"55777ad6-e09e-4b87-b079-14493706f496","url":"http://requestb.in/1gsu9nc1","duration":18,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=38b0d9d4c735ec3ea1a80e79443b623437b28d13","X-BoletoSimples-Delivery-Id":"55777ad6-e09e-4b87-b079-14493706f496","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
2188
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472527,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
2189
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
2190
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
2191
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
2192
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mvzyld","formats":{"default":"https://sandbox.bole.to/3/mvzyld","png":"https://sandbox.bole.to/3/mvzyld.png","pdf":"https://sandbox.bole.to/3/mvzyld.pdf","boleto_hibrido":"https://sandbox.bole.to/3/mvzyld/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/mvzyld/boleto_pix","barcode":"https://sandbox.bole.to/3/mvzyld/barcode","envelope":"https://sandbox.bole.to/3/mvzyld/envelope","letter":"https://sandbox.bole.to/3/mvzyld/letter","line":"https://sandbox.bole.to/3/mvzyld/line","recibo":"https://sandbox.bole.to/3/mvzyld/recibo","carne":"https://sandbox.bole.to/3/mvzyld/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
2193
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
2194
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
2195
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000083-9","processed_our_number_raw":"140000000000000839","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
2196
+ 20000.100048 00000.008318 9 91410000112040","our_number":"000000000000083","customer_subscription_id":null,"installment_total":3,"installment_number":2,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/mvzyld/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:01-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10499914100001120401233220000100040000000831","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/mvzyld","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:43-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
2197
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
2198
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
2199
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
2200
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
2201
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
2202
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
2203
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
2204
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
2205
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
2206
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
2207
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
2208
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
2209
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
2210
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
2211
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
2212
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
2213
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
2214
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
2215
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
2216
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
2217
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
2218
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
2219
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
2220
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
2221
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
2222
+ lg:leading-relaxed\"\u003eRay ID: 6e19f030cab4596e \u0026bull;\u003c/span\u003e\n \u003cspan
2223
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
2224
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:43 UTC\u003c/span\u003e\n \u003ch2
2225
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
2226
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
2227
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
2228
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
2229
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
2230
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
2231
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
2232
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
2233
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
2234
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
2235
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
2236
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
2237
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
2238
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
2239
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
2240
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
2241
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
2242
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
2243
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f030cab4596e\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
2244
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
2245
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
2246
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
2247
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
2248
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
2249
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
2250
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
2251
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
2252
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
2253
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
2254
+ 22 Feb 2022 17:29:43 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
2255
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
2256
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ET6fjL%2BNDqN2KiGY2yQQjshInh%2BmTaAg3bJEdyfbimDl4i5gXu%2FKEEQgeIe3LNM0uhpfO7jswdBhNx2gaDvm7k%2BD33DX78uKcUE8nglFcbhvhBZu4fT%2B9nSsVZTj7g%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f030cab4596e-IAD"],"alt-svc":["h3=\":443\";
2257
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:43-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:43-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"bank_billet.created","resource_owner_id":472527},{"id":724148,"uid":"a732d25c-b133-4d2c-912d-15812def22c2","url":"https://iagro.herokuapp.com/callbacks/boletosimples","duration":10213,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=1dd01663e511ff14adb76adee16827b0b4bed58b","X-BoletoSimples-Delivery-Id":"a732d25c-b133-4d2c-912d-15812def22c2","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
2258
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472527,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
2259
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
2260
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
2261
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
2262
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mvzyld","formats":{"default":"https://sandbox.bole.to/3/mvzyld","png":"https://sandbox.bole.to/3/mvzyld.png","pdf":"https://sandbox.bole.to/3/mvzyld.pdf","boleto_hibrido":"https://sandbox.bole.to/3/mvzyld/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/mvzyld/boleto_pix","barcode":"https://sandbox.bole.to/3/mvzyld/barcode","envelope":"https://sandbox.bole.to/3/mvzyld/envelope","letter":"https://sandbox.bole.to/3/mvzyld/letter","line":"https://sandbox.bole.to/3/mvzyld/line","recibo":"https://sandbox.bole.to/3/mvzyld/recibo","carne":"https://sandbox.bole.to/3/mvzyld/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
2263
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
2264
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
2265
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000083-9","processed_our_number_raw":"140000000000000839","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
2266
+ 20000.100048 00000.008318 9 91410000112040","our_number":"000000000000083","customer_subscription_id":null,"installment_total":3,"installment_number":2,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/mvzyld/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:01-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10499914100001120401233220000100040000000831","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/mvzyld","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":1941,"url":"https://iagro.herokuapp.com/callbacks/boletosimples","first_try":"2022-02-22T14:29:33-03:00"}},"request_error":null,"response_body":"","response_code":422,"response_headers":{"server":["Cowboy"],"date":["Tue,
2267
+ 22 Feb 2022 17:29:43 GMT"],"connection":["close"],"x-frame-options":["DENY"],"x-xss-protection":["1;
2268
+ mode=block"],"x-content-type-options":["nosniff"],"x-download-options":["noopen"],"x-permitted-cross-domain-policies":["none"],"referrer-policy":["strict-origin-when-cross-origin"],"content-type":["text/html"],"cache-control":["no-cache"],"x-request-id":["7809b51d-2b8a-41d8-8e59-80745987b7db"],"x-runtime":["0.135289"],"transfer-encoding":["chunked"],"via":["1.1
2269
+ vegur"]},"response_message":"Unprocessable Entity","delivered_at":null,"first_try":"2022-02-22T14:29:33-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:43-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":1941,"event_code":"bank_billet.created","resource_owner_id":472527},{"id":724147,"uid":"2db04010-cabb-4e41-8203-8b4fa946e4bc","url":"http://requestb.in/1gsu9nc1","duration":18,"request_headers":{"X-BoletoSimples-Event":"discharge.created","X-Hub-Signature":"sha1=9065ec6f19407a24108c09cb994303f2ed165616","X-BoletoSimples-Delivery-Id":"2db04010-cabb-4e41-8203-8b4fa946e4bc","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
2270
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":3321,"filename":"discharge.RET","processed_at":null,"created_via_api":true,"status":"unprocessed","bank_billet_account_id":null,"created_via_integration":null,"bank_billet_discharges":[]},"event_code":"discharge.created","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:33-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
2271
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
2272
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
2273
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
2274
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
2275
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
2276
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
2277
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
2278
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
2279
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
2280
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
2281
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
2282
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
2283
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
2284
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
2285
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
2286
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
2287
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
2288
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
2289
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
2290
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
2291
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
2292
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
2293
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
2294
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
2295
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
2296
+ lg:leading-relaxed\"\u003eRay ID: 6e19efef7ae58018 \u0026bull;\u003c/span\u003e\n \u003cspan
2297
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
2298
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:33 UTC\u003c/span\u003e\n \u003ch2
2299
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
2300
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
2301
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
2302
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
2303
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
2304
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
2305
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
2306
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
2307
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
2308
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
2309
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
2310
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
2311
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
2312
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
2313
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
2314
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
2315
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
2316
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
2317
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19efef7ae58018\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
2318
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
2319
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
2320
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
2321
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
2322
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
2323
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
2324
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
2325
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
2326
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
2327
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
2328
+ 22 Feb 2022 17:29:33 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
2329
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
2330
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=rGn7xTvpRHvONJYp%2BCwOgZa2GgXgZAoKfYuFXXSF1mNpaJe3emr%2B0yRWXds9XJ1hEdhcnHdC4ERcFxCF6u%2BN0i17P88pHY4yxpwh6%2FPvw9r4sN3hR8WxuQfHJb88iQ%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19efef7ae58018-IAD"],"alt-svc":["h3=\":443\";
2331
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:33-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:33-03:00","status":"failed","bank_billet_account_id":null,"content_type":"application/json","webhook_id":53,"event_code":"discharge.created","resource_owner_id":3321},{"id":724146,"uid":"bf531134-19a2-4150-b1b1-566b627489b8","url":"http://requestb.in/1gsu9nc1","duration":14,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=e4f868b049a715fee6af1082f086f6184b594ef0","X-BoletoSimples-Delivery-Id":"bf531134-19a2-4150-b1b1-566b627489b8","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
2332
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472525,"expire_at":"2022-03-22","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
2333
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
2334
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
2335
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
2336
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/zgmjoq","formats":{"default":"https://sandbox.bole.to/3/zgmjoq","png":"https://sandbox.bole.to/3/zgmjoq.png","pdf":"https://sandbox.bole.to/3/zgmjoq.pdf","boleto_hibrido":"https://sandbox.bole.to/3/zgmjoq/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/zgmjoq/boleto_pix","barcode":"https://sandbox.bole.to/3/zgmjoq/barcode","envelope":"https://sandbox.bole.to/3/zgmjoq/envelope","letter":"https://sandbox.bole.to/3/zgmjoq/letter","line":"https://sandbox.bole.to/3/zgmjoq/line","recibo":"https://sandbox.bole.to/3/zgmjoq/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
2337
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
2338
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
2339
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000081-2","processed_our_number_raw":"140000000000000812","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
2340
+ 20000.100048 00000.008151 4 89320000112040","our_number":"000000000000081","customer_subscription_id":3200,"installment_total":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2022-02-22T14:26:58-03:00","updated_at":"2022-02-22T14:26:58-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10494893200001120401233220000100040000000815","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:26:58-03:00","shorten_url":"https://sandbox.bole.to/3/zgmjoq","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433973,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472525,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
2341
+ de Título","created_at":"2022-02-22T14:26:58-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"event_code":"bank_billet.generated","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:43-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
2342
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
2343
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
2344
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
2345
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
2346
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
2347
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
2348
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
2349
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
2350
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
2351
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
2352
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
2353
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
2354
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
2355
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
2356
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
2357
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
2358
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
2359
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
2360
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
2361
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
2362
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
2363
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
2364
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
2365
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
2366
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
2367
+ lg:leading-relaxed\"\u003eRay ID: 6e19f0312dd26fb9 \u0026bull;\u003c/span\u003e\n \u003cspan
2368
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
2369
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:43 UTC\u003c/span\u003e\n \u003ch2
2370
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
2371
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
2372
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
2373
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
2374
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
2375
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
2376
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
2377
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
2378
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
2379
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
2380
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
2381
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
2382
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
2383
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
2384
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
2385
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
2386
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
2387
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
2388
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19f0312dd26fb9\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
2389
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
2390
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
2391
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
2392
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
2393
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
2394
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
2395
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
2396
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
2397
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
2398
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
2399
+ 22 Feb 2022 17:29:43 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
2400
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
2401
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=xvZ9rWRW2Oy2MiA%2F3OzklS%2BJxa3kkSe4KIYfZuwmNb8ixB0uXrkiiYImg2kHwIck%2BSuxwasLQ1gkAZtpQHw9NCPOE8JkQn1AtCKU4PsWbY6thk309Qp2Ox9CHB%2FB5A%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19f0312dd26fb9-IAD"],"alt-svc":["h3=\":443\";
2402
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:43-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:43-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"bank_billet.generated","resource_owner_id":472525},{"id":724145,"uid":"1eb1d9b9-58b5-40cb-b02f-5af32f036e42","url":"https://iagro.herokuapp.com/callbacks/boletosimples","duration":111,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=a1fb5cb1b49d0f906f2eec8b416e9f7ab8a4bf69","X-BoletoSimples-Delivery-Id":"1eb1d9b9-58b5-40cb-b02f-5af32f036e42","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
2403
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472525,"expire_at":"2022-03-22","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
2404
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
2405
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
2406
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
2407
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/zgmjoq","formats":{"default":"https://sandbox.bole.to/3/zgmjoq","png":"https://sandbox.bole.to/3/zgmjoq.png","pdf":"https://sandbox.bole.to/3/zgmjoq.pdf","boleto_hibrido":"https://sandbox.bole.to/3/zgmjoq/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/zgmjoq/boleto_pix","barcode":"https://sandbox.bole.to/3/zgmjoq/barcode","envelope":"https://sandbox.bole.to/3/zgmjoq/envelope","letter":"https://sandbox.bole.to/3/zgmjoq/letter","line":"https://sandbox.bole.to/3/zgmjoq/line","recibo":"https://sandbox.bole.to/3/zgmjoq/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
2408
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
2409
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
2410
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000081-2","processed_our_number_raw":"140000000000000812","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
2411
+ 20000.100048 00000.008151 4 89320000112040","our_number":"000000000000081","customer_subscription_id":3200,"installment_total":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2022-02-22T14:26:58-03:00","updated_at":"2022-02-22T14:26:58-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10494893200001120401233220000100040000000815","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:26:58-03:00","shorten_url":"https://sandbox.bole.to/3/zgmjoq","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433973,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472525,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
2412
+ de Título","created_at":"2022-02-22T14:26:58-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"event_code":"bank_billet.generated","webhook":{"id":1941,"url":"https://iagro.herokuapp.com/callbacks/boletosimples","first_try":"2022-02-22T14:29:43-03:00"}},"request_error":null,"response_body":null,"response_code":204,"response_headers":{"server":["Cowboy"],"date":["Tue,
2413
+ 22 Feb 2022 17:29:42 GMT"],"content-length":["0"],"connection":["close"],"x-frame-options":["DENY"],"x-xss-protection":["1;
2414
+ mode=block"],"x-content-type-options":["nosniff"],"x-download-options":["noopen"],"x-permitted-cross-domain-policies":["none"],"referrer-policy":["strict-origin-when-cross-origin"],"cache-control":["no-cache"],"x-request-id":["f9a0f8b1-585b-420d-9718-dcd776bdeefc"],"x-runtime":["0.086394"],"via":["1.1
2415
+ vegur"]},"response_message":"No Content","delivered_at":"2022-02-22T14:29:43-03:00","first_try":"2022-02-22T14:29:43-03:00","fails_count":0,"failed_at":null,"status":"delivered","bank_billet_account_id":659,"content_type":"application/json","webhook_id":1941,"event_code":"bank_billet.generated","resource_owner_id":472525},{"id":724144,"uid":"cbbb30a4-9d8a-45f5-943e-517675b80be6","url":"http://requestb.in/1gsu9nc1","duration":22,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=325ff8a2bef71796a73ad9fb3ffb404180e9f889","X-BoletoSimples-Delivery-Id":"cbbb30a4-9d8a-45f5-943e-517675b80be6","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
2416
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472525,"expire_at":"2022-03-22","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
2417
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
2418
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
2419
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
2420
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/zgmjoq","formats":{"default":"https://sandbox.bole.to/3/zgmjoq","png":"https://sandbox.bole.to/3/zgmjoq.png","pdf":"https://sandbox.bole.to/3/zgmjoq.pdf","boleto_hibrido":"https://sandbox.bole.to/3/zgmjoq/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/zgmjoq/boleto_pix","barcode":"https://sandbox.bole.to/3/zgmjoq/barcode","envelope":"https://sandbox.bole.to/3/zgmjoq/envelope","letter":"https://sandbox.bole.to/3/zgmjoq/letter","line":"https://sandbox.bole.to/3/zgmjoq/line","recibo":"https://sandbox.bole.to/3/zgmjoq/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
2421
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
2422
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
2423
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000081-2","processed_our_number_raw":"140000000000000812","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
2424
+ 20000.100048 00000.008151 4 89320000112040","our_number":"000000000000081","customer_subscription_id":3200,"installment_total":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2022-02-22T14:26:58-03:00","updated_at":"2022-02-22T14:26:58-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10494893200001120401233220000100040000000815","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:26:58-03:00","shorten_url":"https://sandbox.bole.to/3/zgmjoq","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"changes":{"status":["generating","opened"],"updated_at":["2022-02-22
2425
+ 14:26:58 -0300","2022-02-22 14:26:58 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:33-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
2426
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
2427
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
2428
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
2429
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
2430
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
2431
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
2432
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
2433
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
2434
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
2435
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
2436
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
2437
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
2438
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
2439
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
2440
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
2441
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
2442
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
2443
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
2444
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
2445
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
2446
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
2447
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
2448
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
2449
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
2450
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
2451
+ lg:leading-relaxed\"\u003eRay ID: 6e19efeefb0781c3 \u0026bull;\u003c/span\u003e\n \u003cspan
2452
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
2453
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:33 UTC\u003c/span\u003e\n \u003ch2
2454
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
2455
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
2456
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
2457
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
2458
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
2459
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
2460
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
2461
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
2462
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
2463
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
2464
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
2465
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
2466
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
2467
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
2468
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
2469
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
2470
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
2471
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
2472
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19efeefb0781c3\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
2473
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
2474
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
2475
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
2476
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
2477
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
2478
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
2479
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
2480
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
2481
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
2482
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
2483
+ 22 Feb 2022 17:29:33 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
2484
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
2485
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=uiphaeVkfRaH8ZNijWm9aEcAAeZKUlPeAjtpELhNtt8q%2BuNgUs1e%2FGZntCHa4X%2FB4xxZcLG5cyvfNlUlusgUoURl1bWGcWbiZf6hq8uaD8%2Bd5RJlZg2%2BedZrKh7URw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19efeefb0781c3-IAD"],"alt-svc":["h3=\":443\";
2486
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:33-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:33-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"bank_billet.updated","resource_owner_id":472525},{"id":724143,"uid":"2fe48e4b-adff-45c3-b952-4c921c62b38d","url":"http://requestb.in/1gsu9nc1","duration":228,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=d58e22fe69c69f1d380e0146e04d9fa7ca796299","X-BoletoSimples-Delivery-Id":"2fe48e4b-adff-45c3-b952-4c921c62b38d","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
2487
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472525,"expire_at":"2022-03-22","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
2488
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
2489
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
2490
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
2491
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/zgmjoq","formats":{"default":"https://sandbox.bole.to/3/zgmjoq","png":"https://sandbox.bole.to/3/zgmjoq.png","pdf":"https://sandbox.bole.to/3/zgmjoq.pdf","boleto_hibrido":"https://sandbox.bole.to/3/zgmjoq/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/zgmjoq/boleto_pix","barcode":"https://sandbox.bole.to/3/zgmjoq/barcode","envelope":"https://sandbox.bole.to/3/zgmjoq/envelope","letter":"https://sandbox.bole.to/3/zgmjoq/letter","line":"https://sandbox.bole.to/3/zgmjoq/line","recibo":"https://sandbox.bole.to/3/zgmjoq/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
2492
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
2493
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
2494
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000081-2","processed_our_number_raw":"140000000000000812","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
2495
+ 20000.100048 00000.008151 4 89320000112040","our_number":"000000000000081","customer_subscription_id":3200,"installment_total":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2022-02-22T14:26:58-03:00","updated_at":"2022-02-22T14:26:58-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10494893200001120401233220000100040000000815","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:26:58-03:00","shorten_url":"https://sandbox.bole.to/3/zgmjoq","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:32-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
2496
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
2497
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
2498
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
2499
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
2500
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
2501
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
2502
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
2503
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
2504
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
2505
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
2506
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
2507
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
2508
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
2509
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
2510
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
2511
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
2512
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
2513
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
2514
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
2515
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
2516
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
2517
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
2518
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
2519
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
2520
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
2521
+ lg:leading-relaxed\"\u003eRay ID: 6e19efedafd78227 \u0026bull;\u003c/span\u003e\n \u003cspan
2522
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
2523
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:33 UTC\u003c/span\u003e\n \u003ch2
2524
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
2525
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
2526
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
2527
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
2528
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
2529
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
2530
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
2531
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
2532
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
2533
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
2534
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
2535
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
2536
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
2537
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
2538
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
2539
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
2540
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
2541
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
2542
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19efedafd78227\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
2543
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
2544
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
2545
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
2546
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
2547
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
2548
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
2549
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
2550
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
2551
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
2552
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
2553
+ 22 Feb 2022 17:29:33 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
2554
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
2555
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ip56xpiJWfXGUQ%2B%2Biih0YLQOHByH06JLyzk6K0TfnIpDUPbcAiu7YPJu%2BS516qmT4Gsrfk3Kfq5oE1f4RQrdgzDJ9O%2FgpO4Npqpvnw5%2FLg7GGMbXl1E8Kusulp9mUg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19efedafd78227-IAD"],"alt-svc":["h3=\":443\";
2556
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:32-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:33-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":53,"event_code":"bank_billet.created","resource_owner_id":472525},{"id":724142,"uid":"591044c1-5ec8-4bb9-a8c2-28278d70aee7","url":"https://iagro.herokuapp.com/callbacks/boletosimples","duration":10385,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=3d0cefe64dee93fbd670693cc96fad844ecf1cf5","X-BoletoSimples-Delivery-Id":"591044c1-5ec8-4bb9-a8c2-28278d70aee7","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
2557
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472525,"expire_at":"2022-03-22","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
2558
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
2559
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
2560
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
2561
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/zgmjoq","formats":{"default":"https://sandbox.bole.to/3/zgmjoq","png":"https://sandbox.bole.to/3/zgmjoq.png","pdf":"https://sandbox.bole.to/3/zgmjoq.pdf","boleto_hibrido":"https://sandbox.bole.to/3/zgmjoq/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/zgmjoq/boleto_pix","barcode":"https://sandbox.bole.to/3/zgmjoq/barcode","envelope":"https://sandbox.bole.to/3/zgmjoq/envelope","letter":"https://sandbox.bole.to/3/zgmjoq/letter","line":"https://sandbox.bole.to/3/zgmjoq/line","recibo":"https://sandbox.bole.to/3/zgmjoq/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
2562
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
2563
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
2564
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000081-2","processed_our_number_raw":"140000000000000812","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
2565
+ 20000.100048 00000.008151 4 89320000112040","our_number":"000000000000081","customer_subscription_id":3200,"installment_total":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2022-02-22T14:26:58-03:00","updated_at":"2022-02-22T14:26:58-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10494893200001120401233220000100040000000815","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:26:58-03:00","shorten_url":"https://sandbox.bole.to/3/zgmjoq","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"changes":{"status":["generating","opened"],"updated_at":["2022-02-22
2566
+ 14:26:58 -0300","2022-02-22 14:26:58 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":1941,"url":"https://iagro.herokuapp.com/callbacks/boletosimples","first_try":"2022-02-22T14:29:33-03:00"}},"request_error":null,"response_body":"","response_code":422,"response_headers":{"server":["Cowboy"],"date":["Tue,
2567
+ 22 Feb 2022 17:29:43 GMT"],"connection":["close"],"x-frame-options":["DENY"],"x-xss-protection":["1;
2568
+ mode=block"],"x-content-type-options":["nosniff"],"x-download-options":["noopen"],"x-permitted-cross-domain-policies":["none"],"referrer-policy":["strict-origin-when-cross-origin"],"content-type":["text/html"],"cache-control":["no-cache"],"x-request-id":["651a5533-24f8-448b-9cc2-736b11447dec"],"x-runtime":["0.182988"],"transfer-encoding":["chunked"],"via":["1.1
2569
+ vegur"]},"response_message":"Unprocessable Entity","delivered_at":null,"first_try":"2022-02-22T14:29:33-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:43-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":1941,"event_code":"bank_billet.updated","resource_owner_id":472525},{"id":724141,"uid":"ed6707ce-d4c8-4454-a847-ebac990e5781","url":"https://iagro.herokuapp.com/callbacks/boletosimples","duration":12575,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=60bcbe6e4385ab7d4e7e5e6baba9b17626c4d2e3","X-BoletoSimples-Delivery-Id":"ed6707ce-d4c8-4454-a847-ebac990e5781","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
2570
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":472525,"expire_at":"2022-03-22","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
2571
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
2572
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
2573
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
2574
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/zgmjoq","formats":{"default":"https://sandbox.bole.to/3/zgmjoq","png":"https://sandbox.bole.to/3/zgmjoq.png","pdf":"https://sandbox.bole.to/3/zgmjoq.pdf","boleto_hibrido":"https://sandbox.bole.to/3/zgmjoq/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/zgmjoq/boleto_pix","barcode":"https://sandbox.bole.to/3/zgmjoq/barcode","envelope":"https://sandbox.bole.to/3/zgmjoq/envelope","letter":"https://sandbox.bole.to/3/zgmjoq/letter","line":"https://sandbox.bole.to/3/zgmjoq/line","recibo":"https://sandbox.bole.to/3/zgmjoq/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
2575
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
2576
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
2577
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000081-2","processed_our_number_raw":"140000000000000812","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
2578
+ 20000.100048 00000.008151 4 89320000112040","our_number":"000000000000081","customer_subscription_id":3200,"installment_total":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2022-02-22T14:26:58-03:00","updated_at":"2022-02-22T14:26:58-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10494893200001120401233220000100040000000815","registered_at":null,"prevent_registration":false,"customer_id":93340,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:26:58-03:00","shorten_url":"https://sandbox.bole.to/3/zgmjoq","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":1941,"url":"https://iagro.herokuapp.com/callbacks/boletosimples","first_try":"2022-02-22T14:29:32-03:00"}},"request_error":null,"response_body":"","response_code":422,"response_headers":{"server":["Cowboy"],"date":["Tue,
2579
+ 22 Feb 2022 17:29:44 GMT"],"connection":["close"],"x-frame-options":["DENY"],"x-xss-protection":["1;
2580
+ mode=block"],"x-content-type-options":["nosniff"],"x-download-options":["noopen"],"x-permitted-cross-domain-policies":["none"],"referrer-policy":["strict-origin-when-cross-origin"],"content-type":["text/html"],"cache-control":["no-cache"],"x-request-id":["547a4638-b3e4-42b2-9384-e03c5c62dc5a"],"x-runtime":["0.011542"],"transfer-encoding":["chunked"],"via":["1.1
2581
+ vegur"]},"response_message":"Unprocessable Entity","delivered_at":null,"first_try":"2022-02-22T14:29:32-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:45-03:00","status":"failed","bank_billet_account_id":659,"content_type":"application/json","webhook_id":1941,"event_code":"bank_billet.created","resource_owner_id":472525},{"id":724140,"uid":"a7eb16b6-190c-4c5e-9780-dcdb2ac9dcc7","url":"http://requestb.in/1gsu9nc1","duration":208,"request_headers":{"X-BoletoSimples-Event":"customer.created","X-Hub-Signature":"sha1=726cc36df84492a56106cbe0aeac6fe974addee0","X-BoletoSimples-Delivery-Id":"a7eb16b6-190c-4c5e-9780-dcdb2ac9dcc7","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
2582
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":93339,"city_name":"Rio
2583
+ de Janeiro","person_name":"Maria José","nickname":null,"address":"Rua quinhentos","address_complement":"Sala
2584
+ 4","address_number":"111","mobile_number":null,"cnpj_cpf":"54.872.822/0001-91","email":"cliente@example.com","neighborhood":"bairro","phone_number":"2112123434","zipcode":"12312123","mobile_local_code":null,"notes":null,"state":"RJ","created_via_api":true,"email_cc":null,"contact_person":null,"truncated_address":"Rua
2585
+ quinhentos, 111","external_code":null,"tags":[],"tag_list":null,"custom_data":null},"event_code":"customer.created","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:29:32-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
2586
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
2587
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
2588
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
2589
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
2590
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
2591
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
2592
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
2593
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
2594
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
2595
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
2596
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
2597
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
2598
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
2599
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
2600
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
2601
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
2602
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
2603
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
2604
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
2605
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
2606
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
2607
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
2608
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
2609
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
2610
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
2611
+ lg:leading-relaxed\"\u003eRay ID: 6e19efedaf6157d0 \u0026bull;\u003c/span\u003e\n \u003cspan
2612
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
2613
+ lg:leading-relaxed\"\u003e2022-02-22 17:29:33 UTC\u003c/span\u003e\n \u003ch2
2614
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
2615
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
2616
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
2617
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
2618
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
2619
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
2620
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
2621
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
2622
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
2623
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
2624
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
2625
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
2626
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
2627
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
2628
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
2629
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
2630
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
2631
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
2632
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19efedaf6157d0\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
2633
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
2634
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
2635
+ 3.80.117.224\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
2636
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
2637
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
2638
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
2639
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
2640
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
2641
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
2642
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
2643
+ 22 Feb 2022 17:29:33 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
2644
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
2645
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2FLy%2FrF1uB%2FhM2R8wSm0RIunBH9OKdwHWxt610efvzeFO4BMlCHRdzGUvl%2B5zBGKdhyUmXJbKJF6WfFnmS38dfnvYLvgvpoHD9jSOqTISbcL6I4Fi5493Y2qDAVipMQ%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19efedaf6157d0-IAD"],"alt-svc":["h3=\":443\";
2646
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:29:32-03:00","fails_count":1,"failed_at":"2022-02-22T14:29:33-03:00","status":"failed","bank_billet_account_id":null,"content_type":"application/json","webhook_id":53,"event_code":"customer.created","resource_owner_id":93339},{"id":724139,"uid":"f4535da3-b2d1-4d8c-b4b5-fd6e08373bd5","url":"http://requestb.in/1gsu9nc1","duration":22,"request_headers":{"X-BoletoSimples-Event":"user.updated","X-Hub-Signature":"sha1=651521e1eb0c65970a25405ffc017a0036cbdff1","X-BoletoSimples-Delivery-Id":"f4535da3-b2d1-4d8c-b4b5-fd6e08373bd5","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
2647
+ (sandbox)","Content-Type":"application/json"},"request_payload":{"object":{"id":8,"email":"kivanio@boletosimples.com.br","first_name":"Kivanio","middle_name":"Pereira","last_name":"Barbosa","full_name":"Kivanio
2648
+ Pereira Barbosa","login_url":"https://sandbox.boletosimples.com.br/welcome?email=kivanio%40boletosimples.com.br"},"changes":{"updated_at":["2022-02-21
2649
+ 12:37:46 -0300","2022-02-22 14:22:28 -0300"],"sign_in_count":[365,366],"current_sign_in_at":["2022-02-21
2650
+ 12:37:46 -0300","2022-02-22 14:22:28 -0300"],"last_sign_in_at":["2022-02-18
2651
+ 09:33:18 -0300","2022-02-21 12:37:46 -0300"],"current_sign_in_ip":["64.252.66.124","64.252.69.80"],"last_sign_in_ip":["64.252.66.143","64.252.66.124"]},"event_code":"user.updated","webhook":{"id":53,"url":"http://requestb.in/1gsu9nc1","first_try":"2022-02-22T14:24:17-03:00"}},"request_error":null,"response_body":"\u003c!DOCTYPE
2652
+ html\u003e\n\u003c!--[if lt IE 7]\u003e \u003chtml class=\"no-js ie6 oldie\"
2653
+ lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if IE 7]\u003e \u003chtml
2654
+ class=\"no-js ie7 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
2655
+ IE 8]\u003e \u003chtml class=\"no-js ie8 oldie\" lang=\"en-US\"\u003e \u003c![endif]--\u003e\n\u003c!--[if
2656
+ gt IE 8]\u003e\u003c!--\u003e \u003chtml class=\"no-js\" lang=\"en-US\"\u003e
2657
+ \u003c!--\u003c![endif]--\u003e\n\u003chead\u003e\n\u003ctitle\u003eAccess
2658
+ denied | requestb.in used Cloudflare to restrict access\u003c/title\u003e\n\u003cmeta
2659
+ charset=\"UTF-8\" /\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html;
2660
+ charset=UTF-8\" /\u003e\n\u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=1\"
2661
+ /\u003e\n\u003cmeta name=\"robots\" content=\"noindex, nofollow\" /\u003e\n\u003cmeta
2662
+ name=\"viewport\" content=\"width=device-width,initial-scale=1\" /\u003e\n\u003clink
2663
+ rel=\"stylesheet\" id=\"cf_styles-css\" href=\"/cdn-cgi/styles/main.css\"
2664
+ type=\"text/css\" media=\"screen,projection\" /\u003e\n\n\n\u003cscript type=\"text/javascript\"\u003e\n(function(){if(document.addEventListener\u0026\u0026window.XMLHttpRequest\u0026\u0026JSON\u0026\u0026JSON.stringify){var
2665
+ e=function(a){var c=document.getElementById(\"error-feedback-survey\"),d=document.getElementById(\"error-feedback-success\"),b=new
2666
+ XMLHttpRequest;a={event:\"feedback clicked\",properties:{errorCode:1020,helpful:a,version:1}};b.open(\"POST\",\"https://sparrow.cloudflare.com/api/v1/event\");b.setRequestHeader(\"Content-Type\",\"application/json\");b.setRequestHeader(\"Sparrow-Source-Key\",\"c771f0e4b54944bebf4261d44bd79a1e\");\nb.send(JSON.stringify(a));c.classList.add(\"feedback-hidden\");d.classList.remove(\"feedback-hidden\")};document.addEventListener(\"DOMContentLoaded\",function(){var
2667
+ a=document.getElementById(\"error-feedback\"),c=document.getElementById(\"feedback-button-yes\"),d=document.getElementById(\"feedback-button-no\");\"classList\"in
2668
+ a\u0026\u0026(a.classList.remove(\"feedback-hidden\"),c.addEventListener(\"click\",function(){e(!0)}),d.addEventListener(\"click\",function(){e(!1)}))})}})();\n\u003c/script\u003e\n\n\u003cscript
2669
+ defer src=\"https://api.radar.cloudflare.com/beacon.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n \u003cdiv
2670
+ id=\"cf-wrapper\"\u003e\n \u003cdiv class=\"cf-alert cf-alert-error cf-cookie-error
2671
+ hidden\" id=\"cookie-alert\" data-translate=\"enable_cookies\"\u003ePlease
2672
+ enable cookies.\u003c/div\u003e\n \u003cdiv id=\"cf-error-details\" class=\"p-0\"\u003e\n \u003cheader
2673
+ class=\"mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased\"\u003e\n \u003ch1
2674
+ class=\"inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl
2675
+ text-black-dark leading-tight\"\u003e\n \u003cspan data-translate=\"error\"\u003eError\u003c/span\u003e\n \u003cspan\u003e1020\u003c/span\u003e\n \u003c/h1\u003e\n \u003cspan
2676
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
2677
+ lg:leading-relaxed\"\u003eRay ID: 6e19e83a5980cef0 \u0026bull;\u003c/span\u003e\n \u003cspan
2678
+ class=\"inline-block md:block heading-ray-id font-mono text-15 lg:text-sm
2679
+ lg:leading-relaxed\"\u003e2022-02-22 17:24:17 UTC\u003c/span\u003e\n \u003ch2
2680
+ class=\"text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light\"\u003eAccess
2681
+ denied\u003c/h2\u003e\n \u003c/header\u003e\n\n \u003csection class=\"w-240
2682
+ lg:w-full mx-auto mb-8 lg:px-8\"\u003e\n \u003cdiv id=\"what-happened-section\"
2683
+ class=\"w-1/2 md:w-full\"\u003e\n \u003ch2 class=\"text-3xl leading-tight
2684
+ font-normal mb-4 text-black-dark antialiased\" data-translate=\"what_happened\"\u003eWhat
2685
+ happened?\u003c/h2\u003e\n \u003cp\u003eThis website is using a
2686
+ security service to protect itself from online attacks.\u003c/p\u003e\n \n \u003c/div\u003e\n\n \n \u003c/section\u003e\n\n \n \u003cdiv
2687
+ class=\"feedback-hidden py-8 text-center\" id=\"error-feedback\"\u003e\n \u003cdiv
2688
+ id=\"error-feedback-survey\"\u003e\n Was this page helpful?\n \u003cbutton
2689
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
2690
+ rounded\" id=\"feedback-button-yes\" type=\"button\"\u003eYes\u003c/button\u003e\n \u003cbutton
2691
+ class=\"border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2
2692
+ rounded\" id=\"feedback-button-no\" type=\"button\"\u003eNo\u003c/button\u003e\n \u003c/div\u003e\n \u003cdiv
2693
+ class=\"feedback-success feedback-hidden\" id=\"error-feedback-success\"\u003e\n Thank
2694
+ you for your feedback!\n \u003c/div\u003e\n \u003c/div\u003e\n \n\n \u003cdiv
2695
+ class=\"cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto
2696
+ text-center sm:text-left border-solid border-0 border-t border-gray-300\"\u003e\n \u003cp
2697
+ class=\"text-13\"\u003e\n \u003cspan class=\"cf-footer-item sm:block sm:mb-1\"\u003eCloudflare
2698
+ Ray ID: \u003cstrong class=\"font-semibold\"\u003e6e19e83a5980cef0\u003c/strong\u003e\u003c/span\u003e\n \u003cspan
2699
+ class=\"cf-footer-separator sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan
2700
+ class=\"cf-footer-item sm:block sm:mb-1\"\u003e\u003cspan\u003eYour IP\u003c/span\u003e:
2701
+ 44.202.126.168\u003c/span\u003e\n \u003cspan class=\"cf-footer-separator
2702
+ sm:hidden\"\u003e\u0026bull;\u003c/span\u003e\n \u003cspan class=\"cf-footer-item
2703
+ sm:block sm:mb-1\"\u003e\u003cspan\u003ePerformance \u0026amp; security by\u003c/span\u003e
2704
+ \u003ca rel=\"noopener noreferrer\" href=\"https://www.cloudflare.com/5xx-error-landing\"
2705
+ id=\"brand_link\" target=\"_blank\"\u003eCloudflare\u003c/a\u003e\u003c/span\u003e\n \n \u003c/p\u003e\n\u003c/div\u003e\u003c!--
2706
+ /.error-footer --\u003e\n\n\n \u003c/div\u003e\u003c!-- /#cf-error-details
2707
+ --\u003e\n \u003c/div\u003e\u003c!-- /#cf-wrapper --\u003e\n\n \u003cscript
2708
+ type=\"text/javascript\"\u003e\n window._cf_translation = {};\n \n \n\u003c/script\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":403,"response_headers":{"date":["Tue,
2709
+ 22 Feb 2022 17:24:17 GMT"],"content-type":["text/html; charset=UTF-8"],"transfer-encoding":["chunked"],"connection":["close"],"x-frame-options":["SAMEORIGIN"],"referrer-policy":["same-origin"],"cache-control":["private,
2710
+ max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0"],"expires":["Thu,
2711
+ 01 Jan 1970 00:00:01 GMT"],"report-to":["{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=s4CPIlhiD72Hji%2FRmVK6Fxu3SSudNGe5J%2F2ex8BplA4oX%2FUlbomMRgcxvgvQxWuZJTO8679RTp3L%2BhI2UOujvJSS%2FAOxnfMeoFC97y5ljbG2b5wWPXAv81VjKfmadA%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"],"nel":["{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"],"vary":["Accept-Encoding"],"server":["cloudflare"],"cf-ray":["6e19e83a5980cef0-IAD"],"alt-svc":["h3=\":443\";
2712
+ ma=86400, h3-29=\":443\"; ma=86400"]},"response_message":"Forbidden","delivered_at":null,"first_try":"2022-02-22T14:24:17-03:00","fails_count":1,"failed_at":"2022-02-22T14:24:17-03:00","status":"failed","bank_billet_account_id":null,"content_type":"application/json","webhook_id":53,"event_code":"user.updated","resource_owner_id":8}]'
2713
+ recorded_at: Tue, 22 Feb 2022 17:30:36 GMT
2714
+ recorded_with: VCR 6.0.0