description
stringlengths
0
8.24k
regex
stringlengths
1
26.3k
text
stringlengths
0
2.47M
title
stringlengths
1
150
created_at
stringlengths
24
24
var .*?Scope.*?=[\s\S]*?{([\s\S]*?)};[\s\S]*?var .*?Directive.*?=[\s\S]*?{([\s\S]*?)};[\s\S]*?encModule.directive\(['"](.*?)['"][\s\S]*
//------------------------------------------------------------------ // PrivacyAgreementDialogDirective.js // Copyright 2013 AppliedMinds, Inc. //------------------------------------------------------------------ "use strict"; //------------------------------------------------------------------ // Map of attributes to be copied into the scope. var privacyAgreementDialogScope = { }; //------------------------------------------------------------------ // Configuration of the privacyAgreementDialog directive. var privacyAgreementDialogDirective = { 'restrict' : 'E', 'transclude' : true, 'scope' : privacyAgreementDialogScope, 'controller' : 'PrivacyAgreementDialogCtrl', 'templateUrl' : 'encirca/common/privacyAgreementDialog/PrivacyAgreementDialog.html', 'replace' : true }; //------------------------------------------------------------------ // Create the directive. encModule.directive('privacyAgreementDialog', enc.func.returns(privacyAgreementDialogDirective));
replace directive with iife
2015-07-15T20:26:50.000Z
needs to be modified for use in python by this code example note use of {3 } and additional parenthesis around the import re nigeRegex = re.compile(r'((\d{3}-)?\d{3}-\d{4}(,)?){3}') nigeRegex.search('My numbers are 415-555-1234,555-4242,212-555-0000')
(\d{3}-)?\d{3}-\d{4}(,)?
My numbers are 415-555-1234,555-4242,212-555-0000
https://regex101.com/r/edPG4P/1
2019-07-28T10:09:34.000Z
http://(.*)\.eleveo.com/auth(/)?
http://jahody.eleveo.com/auth
eleveo
2019-06-19T19:50:21.000Z
https://docs.asciidoctor.org/asciidoc/latest/text/subscript-and-superscript/
(?m)(~(?!~)(.*?)~(?!~))
"`Well the H~2~O formula written on their whiteboard could be part of a shopping list, but I don't think the local bodega sells E=mc^2^,`" Lazarus replied.
AsciiDoc Subscript
2022-10-07T11:29:18.000Z
After this validation, you can safely put string to System.Double.Parse and System.Single.Parse functions.
^[\+\-]?((\d+)|(\d+\.\d+)|(\.\d+)|(\d+\.))(e[\+\-]?\d+)?$
-123
Validate floating-point value string for .NET System.Double and System.Single.
2017-07-12T11:46:25.000Z
1234567 -> mathces 1 and 4. 1234567.999 -> matches 1 and 4. so you can format it to 1,234,567.999 easily JavaScript: var numberString = "123456789.000"; numberString.replace(/(\d)(?=(\d{3})+(?!\d))/g, "$1,"); or numberString.replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1,");
(\d)(?=(\d{3})+(?!\d))
0123456789.033
find digits in float for formatting delimiter position
2015-12-16T15:52:38.000Z
Filtrar inicio da string por BRN ou 201
(^BRN|^201)
BRN 201
Filtrar inicio string
2015-06-09T14:24:29.000Z
1-100
^([0-9]|[1-9][0-9]|100)$
1 0 0.1 100 1 25.0
1-100
2022-12-12T09:56:52.000Z
([a-zA-Z0-9]*?)[_.-]*([a-zA-Z0-9]*?)\.(com|co\.uk|org|net)\b
email.apple.com hsn.com alerts.comcast.net
Vendor extraction from sender domain
2018-07-06T19:00:03.000Z
^\d{5}\-\d{5}\-\d{3,12}$
12345-12345-123
bank account number
2017-11-02T13:58:51.000Z
This UK postcode regex will match all variants of postcode formats including inner London postcodes (eg SW1A), with optional space (both AL11XP and AL1 1XP are valid) It will reject any postcode that does not specify a valid postcode area. Each part of the postcode is also captured into a capture group as follows: group 1: POSTCODE AREA group 2: POSTCODE DISTRICT group 3: POSTCODE SECTOR group 4: POSTCODE UNIT
^(A[BL]|B[ABDFHLNRSTX]?|C[ABFHMORTVW]|D[ADEGHLNTY]|E[CHNX]?|F[KY]|G[LUY]?|H[ADGPRSUX]|I[GMPV]|JE|K[ATWY]|L[ADELNSU]?|M[EKL]?|N[EGNPRW]?|O[LX]|P[AEHLOR]|R[GHM]|S[AEGKLMNOPRSTWY]?|T[ADFNQRSW]|UB|W[ACDFNRSV]?|YO|ZE)(\d[\dA-Z]?) ?(\d)([A-Z]{2})$
S4 1XL B40 9PL GU1 1SB NG17 7TS SW1A3BX
Better version of UK postcode
2018-09-21T07:39:11.000Z
to validate phone number
^(?:(?:\(?(?:00|\+)([1-4]\d\d|[1-9]\d?)\)?)?[\-\.\ \\\/]?)?((?:\(?\d{1,}\)?[\-\.\ \\\/]?){0,})(?:[\-\.\ \\\/]?(?:#|ext\.?|extension|x)[\-\.\ \\\/]?(\d+))?$
+84000044131
Validate Phone number
2023-03-06T06:53:10.000Z
Matches all strings that *don't* match a given pattern.
^(?!Andrea)(?:[\S\s](?!Andrea))*+$
Example for Stack Overflow: http://stackoverflow.com/questions/164414/how-to-inverse-match-with-regex http://stackoverflow.com/a/38846455/1188377 This test string is NOT a match because it contains the text "Andrea". If it didn't contain that word, it would be a match. For a variety of test cases, click the "Unit Tests" button on the left side of the page. It looks like a checkmark. Then, click the "play" icon above the test list.
Inverse Regex
2016-08-09T09:15:09.000Z
(^[\d:,\-\.]+)
TimeRegex
2015-09-10T15:57:07.000Z
^612\s?[1-5]0\s?0(?:[0-5]\d|6[0-4])\s?0000\s?(?:[0-5]\d|6[0-4])\s?(?:[0-5]\d|6[0-4])\s?(?:[0-9][1-9][2-9][2-9])$
61230005000055010121 61230005000055640122 61230005000055630120 61230005000055750123 612 30 005 0000 55 01 0121 612 30 005 0000 55 64 0122 612 30 005 0000 55 95 0123
Invoice Number (District and Members reserve)
2016-01-07T20:53:04.000Z
Simple regex to grab all digits after the decimal point.
\d{0,}\.(\d{0,})
0.6666666666666666
Get all digits after the decimal point.
2016-01-23T18:19:21.000Z
<ul.*?">(.*?)<\/ul>
<div id="outer"> <ul id="ancTop"> <li style="font-family: arial; font-size: 9pt;"> <div style="overflow: hidden; width: 690px; height: 17px;"> &nbsp; <a href="#"> A90&nbsp;-&nbsp;Lorem Ipsum </a> </div> </li> <li style="font-family: arial; font-size: 9pt;"> <div style="overflow: hidden; width: 690px; height: 17px;"> &nbsp; <a href="#"> A85&nbsp;-&nbsp; Lorem Ipsum </a> </div> </li> </ul> </div>
Match Markup
2014-08-10T20:11:31.000Z
(((?:(?:(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29))*(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29)|(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))))?(?:(?:[\x41-\x5a\x61-\x7a]|[\x30-\x39]|[\x21\x23-\x27\x2a\x2b\x2d\x2f\x3d\x3f\x5e\x5f\x60\x7b-\x7e])+(?:\x2e(?:[\x41-\x5a\x61-\x7a]|[\x30-\x39]|[\x21\x23-\x27\x2a\x2b\x2d\x2f\x3d\x3f\x5e\x5f\x60\x7b-\x7e])+)*)(?:(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29))*(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29)|(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))))?))|((?:(?:(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29))*(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29)|(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))))?\x22(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21\x23-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))+(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x22(?:(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29))*(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29)|(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))))?))|((?:(?:(?:(?:(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29))*(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29)|(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))))?(?:(?:[\x41-\x5a\x61-\x7a]|[\x30-\x39]|[\x21\x23-\x27\x2a\x2b\x2d\x2f\x3d\x3f\x5e\x5f\x60\x7b-\x7e]))+(?:(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29))*(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29)|(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))))?)|(?:(?:(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29))*(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29)|(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))))?\x22(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21\x23-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))+(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x22(?:(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29))*(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29)|(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))))?))(?:\x2e(?:(?:(?:(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29))*(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29)|(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))))?(?:(?:[\x41-\x5a\x61-\x7a]|[\x30-\x39]|[\x21\x23-\x27\x2a\x2b\x2d\x2f\x3d\x3f\x5e\x5f\x60\x7b-\x7e]))+(?:(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29))*(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29)|(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))))?)|(?:(?:(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29))*(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29)|(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))))?\x22(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21\x23-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))+(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x22(?:(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29))*(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29)|(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))))?)))*)))\x40(((?:(?:(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29))*(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29)|(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))))?(?:(?:[\x41-\x5a\x61-\x7a]|[\x30-\x39]|[\x21\x23-\x27\x2a\x2b\x2d\x2f\x3d\x3f\x5e\x5f\x60\x7b-\x7e])+(?:\x2e(?:[\x41-\x5a\x61-\x7a]|[\x30-\x39]|[\x21\x23-\x27\x2a\x2b\x2d\x2f\x3d\x3f\x5e\x5f\x60\x7b-\x7e])+)*)(?:(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29))*(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29)|(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))))?))|((?:(?:(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29))*(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29)|(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))))?\x5b(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x5a\x5e-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x5d(?:(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29))*(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29)|(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))))?))|((?:(?:(?:(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29))*(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29)|(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))))?(?:(?:[\x41-\x5a\x61-\x7a]|[\x30-\x39]|[\x21\x23-\x27\x2a\x2b\x2d\x2f\x3d\x3f\x5e\x5f\x60\x7b-\x7e]))+(?:(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29))*(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29)|(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))))?)(?:\x2e(?:(?:(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29))*(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29)|(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))))?(?:(?:[\x41-\x5a\x61-\x7a]|[\x30-\x39]|[\x21\x23-\x27\x2a\x2b\x2d\x2f\x3d\x3f\x5e\x5f\x60\x7b-\x7e]))+(?:(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29))*(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:\x28(?:(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?(?:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|[\x21-\x27\x2A-\x5b\x5d-\x7e])|(?:\x5c(?:\x0a*\x0d*[\x00-\x09\x0b\x0c\x0e-\x7f]\x0a*\x0d*)|(?:\x5c[\x00-\x7f]))))*(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))?\x29)|(?:(?:(?:[\x20\x09]*(?:\x0d\x0a))?[\x20\x09]+)|(?:[\x20\x09]+(?:(?:\x0d\x0a)[\x20\x09]+)*))))?))*)))
valaki."valami"@valami.hu
Full e-mail validator
2015-08-03T12:07:37.000Z
Looks bloated, but also validates that the address format is correct, i.e. no false-positives for 777.777.777.777
((25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(25[0-5]|2[0-4]\d|[01]?\d\d?)
IPv4 extraction regex
2016-03-16T13:59:06.000Z
^(((\d{3}[1-9]|\d{2}[1-9]\d|\d[1-9]\d{2}|[1-9]\d{3})(\/)(((0[13578]|1[02])(\/)(0[1-9]|[12]\d|3[01]))|((0[469]|11)(\/)(0[1-9]|[12]\d|30))|(02(\/)(0[1-9]|[1]\d|2[0-8]))))|(((\d{2})(0[48]|[2468][048]|[13579][26])|((0[48]|[2468][048]|[3579][26])00))(\/)02(\/)29))$ Match year/month/day, date format. E.g: 2021/08/25 [match] 2021/09/30 [match] 2018/02/28 [match] 2024/02/29 [match] 2023/02/29 [mismatch]
^(((\d{3}[1-9]|\d{2}[1-9]\d|\d[1-9]\d{2}|[1-9]\d{3})(\/)(((0[13578]|1[02])(\/)(0[1-9]|[12]\d|3[01]))|((0[469]|11)(\/)(0[1-9]|[12]\d|30))|(02(\/)(0[1-9]|[1]\d|2[0-8]))))|(((\d{2})(0[48]|[2468][048]|[13579][26])|((0[48]|[2468][048]|[3579][26])00))(\/)02(\/)29))$
2021/08/25 2021/09/30 2018/02/28 2024/02/29 2023/02/29
yyyy/mm/dd
2021-08-25T12:40:05.000Z
Beginner way to highlight links
(http|www|file)\S+
!play https://www.youtube.com/watch?v=tXGobgt-1Jg
Links
2022-05-27T09:32:02.000Z
\b(1[0-9]{3}|20[0-1][1-7]|[0-9]{3})\b
Lb4 date
2017-12-19T15:29:29.000Z
The regex to match a single pro forma modification with all its intricacies.
(([^\n:#]*)(?::([^\n#]+))?)(?:#([0-9A-Za-z]+)(?:\((\d+\.?\d*)\))?)?
Phospho#g1 Glycan:Hex Glycan:Hex#g1(0.10) #AAA #AAA(0.10) Formula:C6H10O5
rustyms: pro forma single modification
2023-06-21T21:59:27.000Z
Matches any telephone number with region parentesis, or separated by points or dash or spaces
([\d\(][\(\)\s\.\-\d]{4,}\d)
whatever 0 (000) 000-0000 whatever whatever 0(000)000-0000 whatever whatever (000) 000-0000 whatever whatever (000)000-0000 whatever whatever 000 000-0000 whatever whatever 000.000.0000 whatever whatever 000-42000-0000 whatever whatever 000-0000 whatever whatever 000 - 0000 whatever whatever 000.0000 whatever whatever 000 . 0000 whatever whatever 000 0000 whatever 1 whatever 00000000000 whatever whatever 0000000000 whatever whatever 000000000 whatever whatever 00000000 whatever whatever 0000000 whatever whatever 000000 whatever whatever 00 00 0000 0000 whatever 3 whatever 00 0000 000 000 whatever 3 whatever 000 0000 0000 whatever 2 whatever (000) 0000 0000 whatever whatever 00000 000000 whatever 1 whatever 00 0000 0000 whatever 21135
Any telephone number with region and country in any format
2015-05-29T20:12:56.000Z
(?<=data-arve-oembed>).*?(?=</script>)
<iframe title="Antarctica" src="https://player.vimeo.com/video/124858722?dnt=1&amp;app_id=122963" width="750" height="320" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe><script data-arve-oembed>O:8:"stdClass":22:{s:4:"type";s:5:"video";s:7:"version";s:3:"1.0";s:13:"provider_name";s:5:"Vimeo";s:12:"provider_url";s:18:"https://vimeo.com/";s:5:"title";s:10:"Antarctica";s:11:"author_name";s:11:"Kalle Ljung";s:10:"author_url";s:24:"https://vimeo.com/kljung";s:7:"is_plus";s:1:"0";s:12:"account_type";s:5:"basic";s:4:"html";s:213:"<iframe src="https://player.vimeo.com/video/124858722?dnt=1&amp;app_id=122963" width="750" height="320" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen title="Antarctica"></iframe>";s:5:"width";i:750;s:6:"height";i:320;s:8:"duration";i:497;s:11:"description";s:574:"This movie was shot during our 20 days trip to Antarctica in December 2014 to January 2015. We started from Ushuaia in Argentina and went to Port Williams in Chile, rounded Cape Horn and crossed the Drake Passage towards the Melchior Islands in Antarctica. We spent 16 days in the Antarctic and got to experience the most amazing scenery and wildlife before we returned back to Ushuaia. Filmed with GoPro HERO3+ Black Edition and DJI Phantom 2, edited with Final Cut Pro X. Music from Music Bed with rights. Interested in the raw footage, do not hesitate to contact me.";s:13:"thumbnail_url";s:46:"https://i.vimeocdn.com/video/516219878_640.jpg";s:15:"thumbnail_width";i:640;s:16:"thumbnail_height";i:273;s:30:"thumbnail_url_with_play_button";s:164:"https://i.vimeocdn.com/filter/overlay?src0=https%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F516219878_640.jpg&src1=http%3A%2F%2Ff.vimeocdn.com%2Fp%2Fimages%2Fcrawler_play.png";s:11:"upload_date";s:19:"2015-04-13 15:09:47";s:8:"video_id";i:124858722;s:3:"uri";s:17:"/videos/124858722";s:14:"arve_cachetime";i:1613313745;}</script><span data-arve-oembed-end></span> dawdaw dw awa dwadad dwaawd
ARVE x
2021-02-14T15:16:58.000Z
Filter of the latest projects based on SPB2 built from DEV branch
^.+((V2)\s-\s).*(Dev|Test)$
AppMessages V2 - Dev AppMessages V2 - Master AWS - Octopus Release Bellhop Model V2 - Dev Bellhop Model V2 - Master BellHop Services V2 - Dev BellHop Services V2 - Master BellHop V2 - Dev BellHop V2 - Master BSG Log4j Extras V2 - Dev BSG Log4j Extras V2 - Master BSG-BOM - Dev BSG-BOM - Master BSG-BOM V2 - Dev BSG-BOM V2 - Master Core Model V2 - Dev Core Model V2 - Master Core Services V2 - Dev Core Services V2 - Master DealerLocator - Dev EMS Services V2 - Dev EMS Services V2 - Master Entitlements REST API V2 - Dev Entitlements REST API V2 - Master Entitlements Services V2 - Dev Entitlements Services V2 - Master Entitlements SOAP API V2 - Dev Entitlements SOAP API V2 - Master FlexNet Services - Dev FlexNet Services - Master GetNodeInfo BusSys-Build-Slave-01 GetNodeInfo BusSys_Corp_Build_Slave GetNodeInfo Master Laipac Services V2 - Dev Laipac Services V2 - Master LDK Services V2 - Dev LDK Services V2 - Master LicenseAdmin - Dev LicenseAdmin - Master List All Jobs Lite Services V2 - Dev Lite Services V2 - Master LiteFlexNetIntegration V2 - Dev LiteFlexNetIntegration V2 - Master LiteIntegration - Dev LiteIntegration - Master Messaging Services V2 - Dev Messaging Services V2 - Master MTPConsumer - Dev MTPConsumer - Master OptionKeys - Dev OptionKeys - Master OptionKeysAPI - Dev OptionKeysAPI - Master Panther REST API V2 - Dev Pools API V2 - Dev Pools API V2 - Master Pools Model V2 - Dev Pools Model V2 - Master Pools Services V2 - Dev Pools Services V2 - Master Preconfigured API V2 - Dev Preconfigured API V2 - Master SCL Client V2 - Dev SCL Client V2 - Master SentinelCloud Services V2 - Dev SentinelCloud Services V2 - Master SubscriptionManager V2 - Dev SubscriptionManager V2 - Master TermsOfService - Master Test Support V2 - Dev Test Support V2 - Master Tid Services V2 - Dev Tid Services V2 - Master Upload templates to S3 - branch2Dev Upload templates to S3 - Dev Upload templates to S3 - Master Upload templates to S3 - Test VirtualWarehouse - Dev VirtualWarehouse - Master VirtualWarehouse Services V2 - Dev VirtualWarehouse Services V2 - Master VW Lite API - Dev VW Lite API - Master VW Remedy Events - Dev VW Remedy Events - Master VW Remedy Events Consumer - Dev VW Remedy Events Consumer - Master VW Remedy Events Lib - Dev VW Remedy Events Lib - Master VW Scheduled Tasks V2 - Dev VW Scheduled Tasks V2 - Master VW Sentinel V2 - Dev VW Sentinel V2 - Master VW Subscriptions V2 - Dev VW Subscriptions V2 - Master VW5 - Dev VW5 - Master WooCommerce API V2 - Dev WooCommerce API V2 - Master WooCommerce Model V2 - Dev WooCommerce Model V2 - Master WooCommerce Services V2 - Dev WooCommerce Services V2 - Master
Jenkins: 3 - Dev V2 Only
2020-04-01T21:31:51.000Z
Match any alphanumeric string in any language. White spaces are allowed. (Usefull for ECMAScript 5)
^[A-Za-zªµºÀ-ÖØ-öø-ˁˆ-ˑˠ-ˤˬˮͰ-ʹͶͷͺ-ͽͿΆΈ-ΊΌΎ-ΡΣ-ϵϷ-ҁҊ-ԯԱ-Ֆՙա-ևא-תװ-ײؠ-يٮٯٱ-ۓەۥۦۮۯۺ-ۼۿܐܒ-ܯݍ-ޥޱߊ-ߪߴߵߺࠀ-ࠕࠚࠤࠨࡀ-ࡘࢠ-ࢴऄ-हऽॐक़-ॡॱ-ঀঅ-ঌএঐও-নপ-রলশ-হঽৎড়ঢ়য়-ৡৰৱਅ-ਊਏਐਓ-ਨਪ-ਰਲਲ਼ਵਸ਼ਸਹਖ਼-ੜਫ਼ੲ-ੴઅ-ઍએ-ઑઓ-નપ-રલળવ-હઽૐૠૡૹଅ-ଌଏଐଓ-ନପ-ରଲଳଵ-ହଽଡ଼ଢ଼ୟ-ୡୱஃஅ-ஊஎ-ஐஒ-கஙசஜஞடணதந-பம-ஹௐఅ-ఌఎ-ఐఒ-నప-హఽౘ-ౚౠౡಅ-ಌಎ-ಐಒ-ನಪ-ಳವ-ಹಽೞೠೡೱೲഅ-ഌഎ-ഐഒ-ഺഽൎൟ-ൡൺ-ൿඅ-ඖක-නඳ-රලව-ෆก-ะาำเ-ๆກຂຄງຈຊຍດ-ທນ-ຟມ-ຣລວສຫອ-ະາຳຽເ-ໄໆໜ-ໟༀཀ-ཇཉ-ཬྈ-ྌက-ဪဿၐ-ၕၚ-ၝၡၥၦၮ-ၰၵ-ႁႎႠ-ჅჇჍა-ჺჼ-ቈቊ-ቍቐ-ቖቘቚ-ቝበ-ኈኊ-ኍነ-ኰኲ-ኵኸ-ኾዀዂ-ዅወ-ዖዘ-ጐጒ-ጕጘ-ፚᎀ-ᎏᎠ-Ᏽᏸ-ᏽᐁ-ᙬᙯ-ᙿᚁ-ᚚᚠ-ᛪᛱ-ᛸᜀ-ᜌᜎ-ᜑᜠ-ᜱᝀ-ᝑᝠ-ᝬᝮ-ᝰក-ឳៗៜᠠ-ᡷᢀ-ᢨᢪᢰ-ᣵᤀ-ᤞᥐ-ᥭᥰ-ᥴᦀ-ᦫᦰ-ᧉᨀ-ᨖᨠ-ᩔᪧᬅ-ᬳᭅ-ᭋᮃ-ᮠᮮᮯᮺ-ᯥᰀ-ᰣᱍ-ᱏᱚ-ᱽᳩ-ᳬᳮ-ᳱᳵᳶᴀ-ᶿḀ-ἕἘ-Ἕἠ-ὅὈ-Ὅὐ-ὗὙὛὝὟ-ώᾀ-ᾴᾶ-ᾼιῂ-ῄῆ-ῌῐ-ΐῖ-Ίῠ-Ῥῲ-ῴῶ-ῼⁱⁿₐ-ₜℂℇℊ-ℓℕℙ-ℝℤΩℨK-ℭℯ-ℹℼ-ℿⅅ-ⅉⅎↃↄⰀ-Ⱞⰰ-ⱞⱠ-ⳤⳫ-ⳮⳲⳳⴀ-ⴥⴧⴭⴰ-ⵧⵯⶀ-ⶖⶠ-ⶦⶨ-ⶮⶰ-ⶶⶸ-ⶾⷀ-ⷆⷈ-ⷎⷐ-ⷖⷘ-ⷞⸯ々〆〱-〵〻〼ぁ-ゖゝ-ゟァ-ヺー-ヿㄅ-ㄭㄱ-ㆎㆠ-ㆺㇰ-ㇿ㐀-䶵一-鿕ꀀ-ꒌꓐ-ꓽꔀ-ꘌꘐ-ꘟꘪꘫꙀ-ꙮꙿ-ꚝꚠ-ꛥꜗ-ꜟꜢ-ꞈꞋ-ꞭꞰ-ꞷꟷ-ꠁꠃ-ꠅꠇ-ꠊꠌ-ꠢꡀ-ꡳꢂ-ꢳꣲ-ꣷꣻꣽꤊ-ꤥꤰ-ꥆꥠ-ꥼꦄ-ꦲꧏꧠ-ꧤꧦ-ꧯꧺ-ꧾꨀ-ꨨꩀ-ꩂꩄ-ꩋꩠ-ꩶꩺꩾ-ꪯꪱꪵꪶꪹ-ꪽꫀꫂꫛ-ꫝꫠ-ꫪꫲ-ꫴꬁ-ꬆꬉ-ꬎꬑ-ꬖꬠ-ꬦꬨ-ꬮꬰ-ꭚꭜ-ꭥꭰ-ꯢ가-힣ힰ-ퟆퟋ-ퟻ豈-舘並-龎ff-stﬓ-ﬗיִײַ-ﬨשׁ-זּטּ-לּמּנּסּףּפּצּ-ﮱﯓ-ﴽﵐ-ﶏﶒ-ﷇﷰ-ﷻﹰ-ﹴﹶ-ﻼA-Za-zヲ-하-ᅦᅧ-ᅬᅭ-ᅲᅳ-ᅵ0-9 ]*$
理念独特和原始资源和下面的宗 aseqwe@!#
Unicode alphanumeric (any language) with whitespaces
2016-03-17T13:42:11.000Z
Limpa os caracteres especiais e letras de um telefone imputado
[^0-9]+
9(35) 3465-4553
Limpar caracteres telefone
2015-06-30T14:03:49.000Z
Captura o conteúdo do Lang do Twig. Serve pra qualquer conteúdo de tags.
{{\s*lang\(\"(.*?)\"(.*?)}}
<div class="col-12 col-md-8 offset-md-2 mb-2"> <h5 class="text-danger"> {{lang("SiteCadastro.alterarsenha.erromsg1")|raw}} <br><br> {{lang("SiteCadastro.alterarsenha.erromsg2")|raw}} </h5> </div>
Conteúdo de Tag
2021-10-04T20:49:25.000Z
Converts the markdown shortcode for the dive element to the regular HTML: Example shortcode: [div id="bla" class="ups"]some multiple line text[/div]
\[div(?:\sid=["|'](.*?)["|'])?(?:\sclass=["|'](.*?)["|'])?\](.*?)\[\/div\]
sdfsdfsd adafadfalkjdafdfa [div id="bla" class="ups"]some multiple line text[/div] [div class="bla"]some multiple line text more lines [/div] [div id="first"] some text [/div] Ovo ne bi trebalo da fatga [div id="bla"] On the other hand, and in terms of severity, **DNS or NS takeovers** are less common but create the highest impact. An NS subdomain takeover is similar in principle to other types of subdomain takeovers. And due to the major role that NS records play in internet traffic, and the possibility of attackers chaining multiple attack vectors, an NS takeover can lead to severe implications for the target organization. *For our new blog series [Blast Radius][4], security professionals, researchers and experts deep dive into different attacks and vulnerabilities, explore how they can impact the entire internet ecosystem, and examine what they mean for organizations of all sizes, across all industries. To talk about the growing danger of DNS takeovers, we are joined by Patrik Hudák.* poop [/div] adfadfadfadfaf
Div shortcode [div]..[/div]
2021-08-29T10:53:36.000Z
Like SSD32-SDAV2-DS112
^[A-Z\d]{5}-[A-Z\d]{5}-[A-Z\d]{5}$
SAFEW-213SD-123SD
Validate Steam Game Keys
2016-08-09T21:09:18.000Z
([\"])[a-zA-Z\s]+([\"])
fo bar baz "some word"
Match quotes around words (including whitespace)
2013-10-08T07:21:22.000Z
(?=(\d\d\d))
overlapping regex, small test
2015-01-29T16:39:47.000Z
((?:[A-z]*(?:\/|\.|[0-9]|-))*[A-z]*)\.css
File Name Finder
2016-01-14T18:03:17.000Z
6 digit client number
([1-9]{0,1}[0-9]{1,6})
504
6 digit client number
2016-08-17T16:34:31.000Z
MASK TO VALIDATION, WHEN YOU NEED THE AREA CODE OPEN. TO A CELLPHONE WITH 9 OR 8 DIGITS + AREA CODE OF 2 DIGITS 11 987654321 -> IT WILL GET 98765
(?<=\d{2})(\d+)(?=\d{4})
12987654321
VALIDATE CELLPHONE - BRAZIL
2019-03-21T14:02:14.000Z
Rep
\b(\w+)\b\s+\1\b
Test Test für den Regex Test. er findet keinen einen Treffer in diesem Satz tzt u u. bla bla bla bla blabla bla bla blabla. 1 1 1 2 2 .. . . .
ss001
2021-10-03T11:03:00.000Z
The is helpful for parsing the symbolic reference of a PHP class object for validation or just determining the type and target for the operator. The expression is intended for working with classes and class methods, so the value on the right of the _Paamayim Nekudotayim_ `::` will alway be regarded as the method. We are using it with the value returned by class methods and magic constants. Special assertions are made on the _Method_ name. If the first 3 letters are set or get followed by an underscore or capital letter, its _Operation_ is characterized and captured to the _Accessor_, _Mutator_ or _Condition_ group. The remainder of the _Method_ name following the underscore will be captured as the _Target_ of the _Operation_.
(?<class>^(?<fully_qualified_class_name>(?<deliniator>(?<!\\)\\(?!\\)(?=(?P>fully_qualified_class_name))){0,1}[A-z_][\w]*)(?=::(?P>method)|$)|^(?<namespace>^(?P>fully_qualified_class_name)*)(?P>deliniator)(?P>fully_qualified_class_name)(?=::(?P>method)|$))(?<scope_resolution_operator>::(?=(?P>method)(?!$)))?(?<method>(?<=::)(?<operation>(?<mutator>[sS]et(?=[A-Z0-1_]|$))|(?<accessor>[gG]et(?=[A-Z0-1_]|$))|(?<condition>[iI]s(?=[A-Z0-1_]|$)|[hH]as(?=[A-Z0-1_]|$)))?_?(?<target>(?<=\w)\w*)|[A-z_]\w*)?$
/Class and Namespace Capture Nam_e \_Nam_e Nam_e\Spac_e /Class Method and Namespace Capture /With Operation and Target Nam_e::set_Singular \Nam_e\Spac_e::isSingular \Nam_e\Spac_e:: /Class Method and Deep Namespace Capture /Without Operation and Target Nam_e\Spac_e\Accessible\Caller\Value::setsingular \Nam_e\Spac_e\Accessible\Caller\Value::singular /Class Method and Deep Namespace Capture /With Mutator Operation and Target Nam_e\Spac_e\Accessible\Caller\Value::setSingular /Class Method and Deep Namespace Capture /With Accessor Operation and Target Nam_e\Spac_e\Accessible\Caller\Value::get_singular /Class Method and Deep Namespace Capture /With Conditional Operation and Target \Nam_e\Spac_e\Accessible\Caller\Value::isSingular Nam_e\Spac_e\Accessible\Caller\Value::has_Singular
PHP Class Capture Groups from symbol string for Class, Namespace, Operation (Mutator or Accessor), Target and Method Names
2021-02-06T05:32:07.000Z
(?!^0)^\d+$
1 10 100 999 1000 01 001
特殊限制(环视否定)不以什么开头
2017-04-11T15:17:55.000Z
Detect the poker hand from a sorted hand like this: <Figure><Number> with the figures and numbers sorted in descending order
^(?<ROYAL_FLUSH>(A)(.) K\3 Q\3 J\3 T\3)|(?<STRAIGHT_FLUSH>(K)(.) Q\6 J\6 T\6 9\6|(Q)(.) J\8 T\8 9\8 8\8|(J)(.) T\10 9\10 8\10 7\10|(T)(.) 9\12 8\12 7\12 6\12|(9)(.) 8\14 7\14 6\14 5\14|(8)(.) 7\16 6\16 5\16 4\16|(7)(.) 6\18 5\18 4\18 3\18|(6)(.) 5\20 4\20 3\20 2\20|(A)(.) 5\22 4\22 3\22 2\22)|(?<FOUR_OF_A_KIND>.*(.). \24. \24. \24..*)|(?<FULL_HOUSE>(.). \26. (.). \27. \27.|(.). \28. \28. (.). \29.)|(?<FLUSH>(.)(.) .\32 .\32 .\32 .\32)|(?<STRAIGHT>(A). K. Q. J. T.|(K). Q. J. T. 9.|(Q). J. T. 9. 8.|(J). T. 9. 8. 7.|(T). 9. 8. 7. 6.|(9). 8. 7. 6. 5.|(8). 7. 6. 5. 4.|(7). 6. 5. 4. 3.|(6). 5. 4. 3. 2.|A. (5). 4. 3. 2.)|(?<THREE_OF_A_KIND>.*(.). \45. \45..*)|(?<TWO_PAIR>.*(.). \47. .*(.). \48..*)|(?<PAIR>.*(.). \50..*)|(?<HIGH_CARD>(.).*)$
AH KH QC JS TS KH JS 8C 4S 4D KC 9C 8C 5C 4C KC KS 8D 4H 2H AC KS TS 9S 5S 7C 7S 7H 5S 3S KH QS JS TS 9H AS AD KH KC 3C KH KC 5S 5D 2C 6H 5C 4C 3C 2C 9H 8S 7S 6S 5H KD KC 8S 4S 3H JC JS JD JH 7H KD QH JH 8H 8S KH QH JH TH 9H KH 7C 7S 7H 2H AH QH JH TH 8S 3D 3H 2H 2C 2D KH KC 3S 3H 3D AD KD TH 9D 6S TH 9D 7D 6D 2D AH KH QH JH 8H KH JC JS JD JH 7C 6C 5C 4C 3C JC JS JD JH 6H AH KH QH JH TH TC 9C 8C 5C 3C 7S 5H 4S 3H 2C KS 9S 8D 4D 4S KS 9S 8S 5S 3S KH KC 5D 5S 3C AH AS KC JH 8S 3S 3H 3D 2H 2C AC AH AS KH QH JH TC 8C 6C 2S 6D 5D 4D 3D 2D 9D 8H 7H 6S 2C 4C 4H 3H 3S 2H
Poker Hand type
2021-03-26T05:54:49.000Z
(\d[\w\W]*?(?=(?:\d\d*\. )|$))
1. A DDR4 DIMM with a PC rating of PC4-17000 is running at what speed? a. 1800 MHz b. 2000 MHz c. 2133 MHz d. 3000 MHz 2. What can a DIMM use to hold data and amplify a signal just before the data is written to the module? a. EDO b. registers c. parity d. CAS 3. A DDR4 DIMM running at a speed of 2666 MHz has what PC rating? a. PC4-17000 b. PC4-24000 c. PC4-21300 d. PC4-30000 4. DIMMs used in servers can provide additional reliability if they use what specific technology? a. EDO b. dual ranked c. ECC d. PC3 5. Which statement is true regarding DIMM technologies? a. DDR2 uses 184 pins b. DDR3 is backward compatible with DDR2 c. SDRAM runs synchronized with the system clock d. the S in SDRAM stands for static 6. What is the transfer rate of a 64-bit module running at 1600 MHz? a. 1600 MB/second b. 3200 MB/second c. 6400 MB/second d. 12800 MB/second 7. What should you install in a server room that will save space by allowing you to control multiple servers with a single mouse, keyboard, and monitor? a. a MIDI connector b. a digitizer c. biometric device d. a KVM switch 8. What is the current maximum storage capacity limit of a magnetic tape? a. 500GB b. 15TB c. 185TB d. 300TB 9. A DAT72 tape is also known by what term? a. DDS-2 b. DDS-3 c. DDS-4 d. DDS-5 10. Three long beeps during the POST sequence on an Intel BIOS are an indication of what type of issue? a. motherboard problem b. memory error c. system overheat d. keyboard controller problem 11. What does a single beep or no beep imply during the startup of a computer? a. a video problem b. a memory error c. all POST tests passed d. a keyboard controller problem 12. If you see an error message that reads "Processor thermal trip error", what is the likely problem? a. the power supply is inadequate b. the processor has overheated c. the processor has failed d. a memory module might be bad 13. If the startup BIOS can't find a device to use to load the operating system, what error message is likely to appear? a. Fixed disk error b. Blue screen of death c. Error in ntoskernel d. Error loading Windows 14. What type of backlighting receives DC power directly from a motherboard and doesn't use an inverter? a. CCFL b. LED c. Plasma d. OLED 15. What type of backlighting is also called fluorescent backlighting, and was first used in laptop monitors? a. LED b. liquid crystal display c. plasma monitor d. CCFL 16. What is the distance between adjacent dots on a screen known as? a. viewing angle b. refresh rate c. native resolution d. pixel pitch 17. What component of a processor handles all logical comparisons and calculations inside the processor? a. ALU b. register c. bus d. control unit 18. A processor housing that contains more than one processor is referred to as what term? a. multithreaded processor b. multicore processor c. multiprocessing processor d. multihoused processor 19. Hybrid processors that can process 32 bits or 64 bits are known by what term? a. x86 processors b. Itanium processors c. Dual Mode processors d. x86-64 processors 20. What component of a processor holds instructions waiting to be processed by the ALU? a. register b. bus c. internal memory cache d. control unit 21. What is a typical symptom of a CMOS battery failure? a. POST code beeps b. time and date settings lost c. continuous reboots d. blue screen of death 22. When a static image stays on a monitor for many hours leaving a permanent impression of that image on the monitor, what term is used to describe the condition? a. image cling b. burn-in c. screen blanking d. screen freezing 23. When might an LCD monitor experience distorted geometry? a. only when the wrong video cable is used b. if the pixel pitch is not high enough c. if the screen is overheating d. the screen is not set to native resolution 24. What term refers to horizontally torn images on a screen, which occur when the video feed from the video controller gets out of sync with the refresh rate of the monitor? a. burn-in b. left-ins c. rips d. artifacts 25. What might be the cause of a black screen right after you install a new video card? a. no video card is detected b. the onboard video is not disabled in BIOS c. you installed the video card in the wrong slot d. the video card has insufficient RAM 26. What technology is used to assure that the logical block addressing on a solid state drive does not always address the same physical blocks, in order to distribute write operations? a. wear leveling b. bit shifting c. block sliding d. data migration 27. Which statement regarding hard drives is incorrect? a. the 3.5" size is typically used in desktops b. a solid state drive has no moving parts c. solid state drives are less expensive than magnetic hard drives d. tracks on a hard drive are divided into sectors 28. Which statement regarding the selection of a hard drive is accurate? a. a faster spindle speed keeps the drive cooler but doesn't improve performance b. PATA drives are backward compatible with SATA drives c. USB drives are a good choice for fast internal drives d. magnetic drives have larger capacity for the money than solid state drives 29. What hard drive technology is used to predict when a drive is likely to fail? a. S.S.D. b. S.M.A.R.T. c. N.A.N.D. d. E.E.P.R.O.M. 30. The hard drive firmware, UEFI/BIOS, and the OS address the sectors on a hard drive utilizing what technology? a. logical sector addressing b. low level formatting c. logical block addressing d. high level formatting 31. What process writes sector markings to a hard drive? a. partitioning b. low-level formatting c. high-level formatting d. sector provisioning 32. Which rotation speed is not a typical spindle rotation speed for magnetic hard drives? a. 3100 b. 5400 c. 7200 d. 10000 33. What type of processor memory is located on the processor chip (processor die)? a. Level 0 cache b. Level 1 cache c. Level 2 cache d. Level 3 cache 34. What type of RAM is typically installed onto a motherboard and loses data rapidly, requiring it to be refreshed often? a. SRAM b. CMOS RAM c. DRAM d. Flash RAM 35. Where can the Execute Disable Bit (EDB) technology be disabled? a. In the EDB configuration software. b. In the BIOS / UEFI setup screen c. In the Windows Device Driver screen d. In the Windows command line EDB utility 36. What is the general name of the processor feature that AMD calls HyperTransport? a. multicore processing b. multithreading c. virtualization support d. integrated graphics 37. Involving both software and hardware, what technology is meant to protect digital content and prevent piracy? a. HDMI b. DRM c. PPM d. DVI 38. Which type of video port provides a digital-only signal? a. DVI-I b. DVI-D c. DVI-A d. VGA 39. What should you do if the system continually reboots and you can't read the error message produced on a blue screen? a. press F8 as Windows starts up b. press Pause so you can see the screen output c. press Ctrl+Print Screen to print the screen output d. press Esc as soon as you see the blue screen 40. One long and two short beeps when using an Award BIOS is an indication of what issue? a. memory error b. hard drive not found c. a video problem d. a CPU problem 41. What is an auto-switching AC adapter? a. an adapter that can switch between line power and battery power b. an adapter that switches between two PCs c. an adapter that can use 110V or 220V AC power d. an adapter that can switch between AC or DC 42. A missing standoff could create what potential problem? a. a short on the motherboard b. the computer boots, but can't connect to the network c. data is deleted from the hard drive d. you see lines on the video monitor 43. What is an indication that an inadequate power supply is the source of an intermittent problem? a. the power supply whines when you first turn on the system b. you don't see any indicator lights or fans spinning c. BIOS loses its date and time settings d. the system tries to boot from the wrong device 44. Which of the following protects your computer from brownouts or sags? a. degaussing b. GPU c. surge protector d. UPS 45. When populating a motherboard with DIMM modules, what configuration option will not work? a. using two different manufacturer's memory b. mixing memory speeds c. leaving a slot unpopulated d. mixing unbuffered with registered 46. What component of a motherboard is not considered to be a field replaceable unit? a. processor b. RAM c. CMOS battery d. chipset 47. Why might you disable quick booting features in BIOS when you are troubleshooting a problem? a. to enable access the advanced boot menu b. quick booting prevents Windows from logging errors c. to see a full POST report d. quick booting bypasses the POST 48. Which statement regarding the USB standard and USB devices is accurate? a. up to 64 USB devices can be daisy chained together b. USB uses parallel data transmissions c. a USB cable has four wires, two for power and two for communication d. USB devices must supply their own power 49. A SuperSpeed USB port is capable of attaining what maximum data transfer speed? a. 1.2 Gbps b. 1.5 Gbps c. 5 Gbps d. 6 Gbps 50. Which statement regarding the Firewire standard is accurate? a. data is transferred on a parallel bus b. 1394b allows up to 16 daisy-chained devices c. FireWire 800 uses a 4-pin connector d. FireWire devices are hot-swappable 51. If you are trying move a hard drive from a non-working computer to a working computer for the purposes of accessing the data on the drive, what must you have? a. you must install the drive in a drive bay b. you must manually assign a drive letter c. you must have an Administrator password before you can access the data on the drive d. the drive must be initialized before you can access it 52. What technology in a DIMM informs the BIOS of the module's size, speed, voltage, and data path width? a. SPD b. ECC c. Buffers d. DDR 53. If a computer is performing slowly due to file fragmentation, what Windows tool can be utilized to rearrange fragments? a. Computer Management b. defragmentation tool c. defraggler d. Disk cleanup 54. Which of the following is NOT the name of a current family of Intel processors? a. Duo b. Core c. Atom d. Celeron 55. What Intel processor technology interconnects the processor, chipset, and wireless network adapter as a unit, improving laptop performance? a. Pentium b. Core i5 c. Celeron d. Centrino 56. What happens when a flash memory card is installed in a slot and it is recognized by Windows? a. a window appears prompting you to initialize the device b. a drive letter is assigned to the device and you can see it in Explorer c. Windows automatically partitions and formats the device d. the files are copied from the device to your Documents folder 57. A PCIe 6/8 pin connector for providing auxiliary power to PCIe cards utilizes what voltage? a. +5v b. -12V c. +12v d. +15v 58. What is the most used rail on a power supply? a. +3.3V b. -5V c. -12V d. +12V 59. Which of the following is NOT a solution to an overheating problem? a. verify that cables are not obstructing airflow b. remove the covers from empty expansion slots c. be sure the case is not sitting on a carpet d. remove dust from the power supply, vents, and cooler fans 60. If you suspect your system is overheating, how can you determine the CPU temperature? a. in Windows, go to System Information b. the CPU has a temperature display screen c. press a room thermometer on the top of the CPU d. go into UEFI/BIOS setup and find the temperature monitors for the system 61. What statement best describes a RAID 5? a. data from one drive is mirrored to another b. it improves performance but not fault tolerance c. it requires 3 or more drives and uses parity checking d. it takes at least four disks and data is striped and mirrored 62. Which type of RAID volume is used for fault tolerance and only requires two drives? a. RAID0 b. RAID1 c. RAID5 d. RAID10 63. What type of RAID is a combination of mirroring and striping? a. RAID0 b. RAID1 c. RAID5 d. RAID10 64. Why might you want to use a RAID 0 disk configuration? a. to improve overall disk performance b. RAID 0 drives are less expensive than other RAID drives c. to prevent data loss in case of a drive failure d. because RAID 0 provides an automatic disk backup 65. What Intel socket recommends the use of a liquid cooling system? a. LGA1150 b. LGA1151 c. LGA1750 d. LGA2011 66. Which type of memory can support quad, triple, and dual channels? a. DDR3 b. DDR2 c. DDR d. RIMM 67. If you are adding a hard drive to a system that already has a drive with Windows installed on it, what should you do? a. you should boot from the Windows setup DVD to prepare the new drive b. boot Windows and use Disk Management to prepare the new drive c. use the BIOS setup screen to partition and format the new drive d. check that the new hard drive must use the same standard as the Windows drive 68. What command line utility can be used to repair the BCD on a Windows installation? a. chkdsk b. fsutil c. dfrgl d. bootrec 69. The SATA/600 standard is also known by what other name? a. SATAI b. SATAII c. SATAIII d. SATA revision 4 70. What SATA standard provides a transfer rate of 3 Gb/sec? a. SATA1 b. SATA2 c. SATA3 d. SATA4 71. A SATA data cable has how many pins? a. 4 pins b. 7 pins c. 10 pins d. 15 pins 72. Which of the following is a requirement for supporting the Aero user interface? a. at least 128 KB video memory b. DirectX 9 or higher c. an HDMI video port d. Windows XP with SP3 73. In order to enable the Windows 7 Aero user interface, how much video memory must be available to the video controller? a. 64MB b. 128MB c. 256MB d. 1GB 74. What icon might you see in Device Manager that indicates a problem with a device? a. blue circle b. yellow triangle c. red square d. white oval 75. What is a basic principle that applies to both internal and external devices? a. when connecting a faster device to a slower port, the port adapts to the speed of the device b. if you have multiple devices to install, it's best to install them at the same time c. for most installations, install the device first, then the device driver d. some devices don't require a software component for them to work properly 76. When installing a new device, which statement is accurate? a. a mouse may not require an additional device driver installation b. Vista drivers never work with Windows 7 c. 32-bit drivers can be installed in a 64-bit OS d. 64-bit drivers can be installed in a 32-bit OS 77. How many layers of data can exist on a single side of a Blu-ray disc? a. 1 b. 2 c. 3 d. 4 78. What is the most likely result of a correctly installed processor, but an incorrectly installed cooler? a. powers on, but nothing else happens b. boot process begins, but system suddenly turns off after a short period c. system does not power on at all d. BIOS setup does not recognize the processor correctly 79. When testing a laptop power connector, how close should the voltage measured be to the accepted voltage of the laptop? a. +/- 10% b. +/- 5% c. +/- 1% d. The voltage should be exactly the same 80. If a user on a laptop complains that they are unable to sign into Windows even though they are certain they are entering the correct password, what should you have them do? a. perform a reboot b. bring the laptop to an authorized repair shop c. check the NumLock indicator on the laptop d. Replace the laptop keyboard
Question Search
2018-03-18T18:52:16.000Z
Comments of type /* ... */ and java-doc are matched.
\/\*(.*?)\*\/
/** * Test function \-'-/ * * @param nothing */ function test() { /* Function */ return; /* End of the function */ } /* This works ! */
multi-line java-style comments
2019-02-20T22:42:41.000Z
When using javascript to get a cookie value by its name, 1. Get the cookie string by document.cookie 2. Use this pattern to get the proper value. Just replace the cookie name in my pattern. 3. Use 1st or 2nd group(this is only used when your cookie name is last in the string)
gsScrollPos=(.*?);|gsScrollPos=(.*)
_jsuid=1540521894; new=verified; __insp_slim=1441894084306; __insp_wid=1141935839; __insp_nv=true; __insp_ref=d; __insp_targlpu=http%3A%2F%2Flocalhost%2F; __insp_norec_sess=true; aff_tag=55b88a; aff_from=; aff_time=1441896839; gsScrollPos=; _gat=1; _ga=GA1.1.1421736560.1435009203
Cookie Value Finder By name
2015-09-10T19:48:04.000Z
Grabs the ID and revision from the URL.
# Match the beginning of the string. ^ # Match the HTTP(S) domain and path of re101. https?:\/{2}regex101\.com\/r\/ # Capture the unique ID. (?<id>[a-z\d]{1,6}) # Capture the revision. (?:\/(?<rev>\d+))? # Do not care about anything else...
http://regex101.com/r/mH1fN5 https://regex101.com/r/fW0vZ2 https://regex101.com/r/wY0rM7/22#pcre ftp://www.google.com/
Improved RegEx101 ID Grabber
2015-05-22T21:05:23.000Z
Is a simple regex for compare tel number of El Salvador (not use +503 or iquals)
^([2-2]{1}|[6-7]{1})([0-9]{3})[-. ]?(\d{4})?$
78511074
Basic usage for tel ESA
2015-07-03T22:27:04.000Z
teste
=+|GOLIATH
===================================================================================== GOLIATH ===================================================================================== *** GOLIATH BACKUP CHECK *** GOLIATH BACKUP CHECK *** GOLIATH BACKUP CHECK *** ====]] GOLIATH Backup Check Results [[==== --] Remote Reachability Test Pings were NOT successful to 172.16.158.1 from remote router uscmcraudfl04r. USCMCRAUDFL04R#ping 172.16.158.1 source FastEthernet0 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.158.1, timeout is 2 seconds: Packet sent with a source address of 172.16.112.1 ..... Success rate is 0 percent --] Backup Device Test GOLIATH did not detect any backup devices connected to the router. --] Back-to-Back Test No SMARTS Back-to-Back connections detected. GOLIATH did not detect any iBGP connections for this device. --] ISDN Test No ISDN interfaces detected on router or B2B routers. =====================================================================================
test
2016-03-03T18:53:42.000Z
(?i)(?:noi)(?<space>(?:.*-.*))(?:csn\k<space>)?(?<noiNum>(?:txr12\w{3}f)|(?:txr15\d{7}))?(?:\k<space>)?(?<projName>(?:\b[\w\s\-\&]+?\b))(?:\k<space>).*?(?<noiNum2>(?:(?:trx12\w{3}f)|(?:txr15\d{7})))?(?:\.pdf)$
Test
2015-12-24T02:32:44.000Z
[0-9a-z !]*
Hello world ! Hello world ! Hello world !
Hello world example
2013-09-10T09:00:32.000Z
(%(.[^%]*)%)
$a = "%DATO1%, xxx %dato2% yyyy: %dato3%";
Gyproc
2016-07-29T07:38:36.000Z
email validation
\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}\b
email validation
2016-03-18T15:43:17.000Z
Extract brazilian DDD and phone number
(\(([^)]*)\))(\s?)(([0-9]{0,5})(\-)?([0-9]{0,4}))$
(13)300-413
Extract brazilian DDD and phone number
2018-04-03T15:06:20.000Z
^-?[0-9]{1,3}.[0-9]*,-?[0-9]{1,3}.[0-9]*
123,123.5454
Lat, long regex
2018-02-08T10:46:47.000Z
regex_1
Kí tự Ý nghĩa \ Một dấu gạch chéo sẽ biến một kí tự thường liền kế phía sau thành một kí tự đặc biệt . Ví dụ: /a/ sẽ được khớp với các kí tự 'a' in thường nhưng khi đổi thành /\a/ thì kí tự a trở thành kí tự đặc biệt và không match với kí tự nào nữa. Ngược lại, với các kí tự đăc biệt sẵn khi thêm \ thì sẽ trở thành kí tự thông thường. Ví dụ, mẫu /a*/ có '' là kí tự đặc biệt và mẫu này sẽ bị phụ thuộc vào kí tự này, nên được hiểu là sẽ tìm khớp với 0 hoặc nhiều kí tự a. Nhưng, với mẫu /a*/ thì kí tự '' lúc này được hiểu là kí tự thường nên mẫu này sẽ tìm kiếm xâu con là 'a* '. \ cũng là một kí tự đặc biệt, khi cần so khớp chính nó ta cũng phải đánh dấu nó là kí tự đặc biệt bằng cách đặt \ ở trước (\). ^ Khớp các kí tự đứng đầu một chuỗi. Nếu có nhiều cờ này thì nó còn khớp được cả các kí tự đứng đầu của mỗi dòng (sau kí tự xuống dòng). Ví dụ: /^a/ sẽ không khớp được với 'a' trong "bcd a" vì 'a' lúc này không đứng đầu chuỗi, nhưng nó sẽ khớp "abc d" vì lúc này 'a' đã đứng đầu chuỗi. $$ So khớp ở cuối chuỗi. Nếu có flag m (multiline) thì nó sẽ so khớp với kí tự nằm ngay trước kí tự xuống dòng. * Cho phép kí tự trước nó lặp lại 0 lần hoặc nhiều lần. Ví dụ: /bo*/ khớp với 'boooo' trong chuỗi "A ghost booooed" nhưng khớp với các kí tự 'b' trong chuỗi "A birth warbled" + Cho phép kí tự trước nó lặp lại 1 lần hoặc nhiều lần. ? Cho phép kí tự trước nó lặp lại 0 lần hoặc 1 lần duy nhất. Nếu sử dụng kí tự này ngay sau bất kì kí tự định lượng nào trong số ,+,? hay {} thì nó sẽ dừng so khớp sau ngay khi tìm được kí tự phù hợp . khớp với bất kì kí tự đơn nào ngoại trừ kí tự xuống dòng. (x) Khớp 'x' và nhớ kết quả so khớp này. Các dấu ngoặc tròn được gọi là các dấu ngoặc có nhớ. Ví dụ: /(foo) (bar) \1 \2/ khớp với 'foo' và 'bar' trong chuỗi "foo bar foo bar". \1 và \2 trong mẫu khớp với 2 từ cuối. (?:x) Khớp 'x' nhưng không nhớ kết quả so khớp. x(?=y) Chỉ khớp 'x' nếu 'x' theo sau bởi 'y'. Ví dụ, /Jack(?=Sprat)/ chỉ khớp với 'Jack' nếu đằng sau nó là 'Sprat'. x(?!y) Chỉ khớp 'x' nếu 'x' không được theo sau bởi 'y'. Ví dụ: /\d+(?!.)/ chỉ khớp với số không có dấu . đằng sau. {n} Kí tự đứng trước phải xuất hiện n lần. n phải là một số nguyên dương. Ví dụ, /a{2}/ không khớp với 'a' trong "candy", nhưng nó khớp với tất cả kí tự 'a' trong "caandy", và khớp với 2 kí tự 'a' đầu tiên trong "caaandy".
regex_1
2018-10-10T17:18:21.000Z
(?<!\w)(?:10|11|12|13|14|15|16|17|18|19)(?<!\w)(?:0[238]|8[23458])\d{5}(?!\w)
[Ethias] Informex
2019-09-10T13:45:29.000Z
IPv4 string check in JavaScript RegEx
^(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)\.){3}(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)$
0.0.0.0 255.255.255.255 1.2.3.4 0.0.0.10 .0.0.0.1 0.0.0.0. 0.0.0.x 0.0.0.256 0.0.0.01 0.0.01.0 0.01.0.0 01.0.0.0
ipv4
2022-04-26T04:42:22.000Z
<[^\/>]+(?=[^\/>]*\b(async|defer)\b)(?!(?:\s*=\s*"?\s*\S+\s*"?(?:\s*>|\s+\S+\s*>)))
<!DOCTYPE html> <html lang="he"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1"> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="publish-date" content="2020-06-14 19:27" scheme="YYYY-MM-DD hh:mm" /> <meta name="syndication-source" content="https://www.bizportal.co.il/globalmarkets/news/article/780987" /> <title>לקראת פתיחת שבוע המסחר בוול סטריט, האנליסטים מנתחים - שווקים גלובליים | Bizportal</title> <link rel="shortcut icon" href="/Content/themes/base/images/favicon.ico" /> <meta http-equiv="content-Language" content="he" /> <meta name="classification" content="כל הכלים למשקיע בשוק ההון" /> <meta name="allow-search" content="yes" /> <meta name="robots" content="index,follow" /> <script id="vad-hb-snippet" data-publisher="bizportal">!function(){var o,t,d,a;!function(){window.googletag=window.googletag||{cmd:[]};var o=window.googletag;o.cmd=o.cmd||[],o.cmd.push(function(){o.pubads().disableInitialLoad()})}(),o="bizportal",t=Date.now(),d=t-t%864e5,(a=window.top.document.createElement("script")).type="text/javascript",a.setAttribute("data-publisher",o),a.id="vad-hb-script",a.async=!0,a.src="//cdn.valuad.cloud/hb/"+o+"-prod.js?timestamp="+d,window.top.document.head.appendChild(a),setTimeout(function(){!function(){window.googletag=window.googletag||{cmd:[]};var o=window.googletag;o.cmd.push(function(){window._vadHb||o.pubads().refresh()})}()},3e3)}();</script> <meta name="google-site-verification" content="JzcELWch9mwvIL6jnt0w88fvc8uTm2r7KOYkKcapl8c" /> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-6254881-1"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-6254881-1', { 'page_title' : 'לקראת פתיחת שבוע המסחר בוול סטריט, האנליסטים מנתחים - שווקים גלובליים | Bizportal', 'page_path': 'https://www.bizportal.co.il/globalmarkets/news/article/780987' }); </script> <meta name="verify-v1" content="Bgz/xPzWPi1VXVfdADNnRfW7Jq4036aQVf9hipbknIo=" /> <meta name="description" content="למרות שהקורונה עדיין כאן וצפויה להישאר, מסביב לעולם מנסים להקל את המגבלות; האנליסטים מעריכים כי הולכת ועולה רמת הסיכון בשווקים, אשר מתנפחים לממדי בועה נוכח מדיניות הבנק הפדרלי בארה&quot;ב" /> <link rel="canonical" href="https://www.bizportal.co.il/globalmarkets/news/article/780987" /> <meta name="thumbnail" content="https://img.bizportal.co.il/giflib/news/AMEIRCA FLAG WALL STREET.jpeg" /> <meta property="og:title" content="לקראת פתיחת שבוע המסחר בוול סטריט, האנליסטים מנתחים" /> <meta property="og:description" content="למרות שהקורונה עדיין כאן וצפויה להישאר, מסביב לעולם מנסים להקל את המגבלות; האנליסטים מעריכים כי הולכת ועולה רמת הסיכון בשווקים, אשר מתנפחים לממדי בועה נוכח מדיניות הבנק הפדרלי בארה&quot;ב" /> <meta property="og:locale" content="he_IL" /> <meta property="og:site_name" content="Bizportal" /> <meta property="og:image" content="https://img.bizportal.co.il/giflib/news/AMEIRCA FLAG WALL STREET.jpeg" /> <meta property="og:image:width" content="630" /> <meta property="og:image:height" content="354" /> <meta property="og:type" content="article" /> <meta property="og:url" content="https://www.bizportal.co.il/globalmarkets/news/article/780987" /> <script src='//cdn.valuad.cloud/pxb/pxb-bizportal-prod.js' id='pxbScript' data-publisher='bizportal'></script><script async src='//securepubads.g.doubleclick.net/tag/js/gpt.js'></script> <script type='text/javascript' defer id='googletag_script2'> var googletag = googletag || {}; googletag.cmd = googletag.cmd || []; var BubblesDFPAd = null; var PremiumDFPAd = null; var bannersToRefresh = []; googletag.cmd.push(function() { PremiumDFPAd = googletag.defineSlot('/21793233292/Bizportal/Desktop/Article/Article_1200x250_1_TOP_Premium', [[970, 3], [1200, 3], [1200, 250], [1200, 2], [970, 2], [970, 250], [728, 180], [970, 4], [728, 90], [970, 180], [1200, 4], [1, 1], [1200, 90], [970, 90]], 'div-gpt-ad-Premium').addService(googletag.pubads()).setTargeting('Format','Premium'); googletag.defineSlot('/21793233292/Bizportal/Desktop/Article/Article_300x600_1', [[300,600]], 'div-gpt-ad-Article_300x600_1').addService(googletag.pubads()).setTargeting('Format','Article_300x600_1').setCollapseEmptyDiv(true);; googletag.defineSlot('/21793233292/Bizportal/Desktop/Article/Article_300x250_1', [[300, 250], [300, 300], [200, 200]], 'div-gpt-ad-Article_300x250_1').addService(googletag.pubads()).setTargeting('Format','Article_300x250_1').setCollapseEmptyDiv(true);; googletag.defineSlot('/21793233292/Bizportal/Desktop/Article/Article_300x250_2', [[300, 250], [300, 300], [200, 200]], 'div-gpt-ad-Article_300x250_2').addService(googletag.pubads()).setTargeting('Format','Article_300x250_2').setCollapseEmptyDiv(true);; googletag.defineSlot('/21793233292/Bizportal/Desktop/Article/Article_728x90_2', [[728,90]], 'div-gpt-ad-Article_728x90_2').addService(googletag.pubads()).setTargeting('Format','Article_728x90_2').setCollapseEmptyDiv(true);; googletag.defineSlot('/21793233292/Bizportal/Desktop/Article/Article_728x90_3', [[728,90]], 'div-gpt-ad-Article_728x90_3').addService(googletag.pubads()).setTargeting('Format','Article_728x90_3').setCollapseEmptyDiv(true);; googletag.defineSlot('/21793233292/Bizportal/Desktop/Article/Article_728x90_1', [[728,90]], 'div-gpt-ad-Article_728x90_1').addService(googletag.pubads()).setTargeting('Format','Article_728x90_1').setCollapseEmptyDiv(true);; googletag.defineSlot('/21793233292/Bizportal/Desktop/Article/Article_336x280_In_Content_1', [[320, 50], [320, 100], [300, 300], [300, 250], [336, 280], [200, 200]], 'div-gpt-ad-Article_336x280_In_Content_1').addService(googletag.pubads()).setTargeting('Format','Article_336x280_In_Content_1').setCollapseEmptyDiv(true);; googletag.defineSlot('/21793233292/Bizportal/Desktop/Article/Article_336x280_In_Content_2', [[320, 50], [320, 100], [300, 300], [300, 250], [336, 280], [200, 200]], 'div-gpt-ad-Article_336x280_In_Content_2').addService(googletag.pubads()).setTargeting('Format','Article_336x280_In_Content_2').setCollapseEmptyDiv(true);; googletag.defineSlot('/21793233292/Bizportal/Desktop/Article/Article_336x280_In_Content_3', [[320, 50], [320, 100], [300, 300], [300, 250], [336, 280], [200, 200]], 'div-gpt-ad-Article_336x280_In_Content_3').addService(googletag.pubads()).setTargeting('Format','Article_336x280_In_Content_3').setCollapseEmptyDiv(true);; googletag.defineSlot('/21793233292/Bizportal/Desktop/Article/Article_336x280_In_Content_4', [[320, 50], [320, 100], [300, 300], [300, 250], [336, 280], [200, 200]], 'div-gpt-ad-Article_336x280_In_Content_4').addService(googletag.pubads()).setTargeting('Format','Article_336x280_In_Content_4').setCollapseEmptyDiv(true);; googletag.pubads().setTargeting('pageType','Article');googletag.pubads().setTargeting('pageURL', '/globalmarkets/news/article/780987');googletag.pubads().setTargeting('id', '780987');googletag.pubads().setTargeting('section', 'globalmarkets');googletag.pubads().setTargeting('isDev', 'false'); googletag.pubads(); googletag.pubads().collapseEmptyDivs(); googletag.enableServices(); }); </script> <style>#navbarMobileSearch{left:0}.sidenav{right:0}#navbarMobileSearch,.sidenav{height:100%;width:0;position:fixed;z-index:1;top:0;background-color:#010101;overflow-x:hidden;transition:.3s}@media(min-width:320px){font-size:28px;line-height:30px;margin:0 auto;text-align:center;display:inline-block;float:none}.navbar-inverse.mobile{padding:.5rem 0}header{background-color:#010101;position:fixed;top:0;z-index:1002}.navbar-inverse.mobile>.container .navbar-brand{color:#fff;font-size:28px;line-height:30px;margin:0 auto;text-align:center;display:inline-block;float:none}.navbar-inverse.mobile .navbar-toggler{border-color:transparent}.navbar-inverse.mobile .container{display:flex}</style> <meta name="propeller" content="ae689438bb3ea03095276c032dfaa597"> <meta name="clckd" content="de97869631459deb96730cf76657c42f" /> </head> <body class="rtl" dir="ltr"> <style> button,input{overflow:visible}body,html{direction:rtl}textarea{overflow:auto}.dropdown-menu,.navbar-nav{list-style:none}@font-face{font-family:icomoon;font-display:auto;src:url(/dist/Content/fonts/icomoon/icomoon.eot?rd120z);src:url(/dist/Content/fonts/icomoon/icomoon.eot?rd120z#rd120z) format("embedded-opentype"),url(/dist/Content/fonts/icomoon/icomoon.ttf?rd120z) format("truetype"),url(/dist/Content/fonts/icomoon/icomoon.woff?rd120z) format("woff"),url(/dist/Content/fonts/icomoon/icomoon.svg?rd120z#icomoon) format("svg");font-weight:400;font-style:normal}[class*=" icon-"],[class^=icon-]{font-family:icomoon!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;letter-spacing:0;-webkit-font-feature-settings:"liga";-moz-font-feature-settings:"liga=1";-moz-font-feature-settings:"liga";-ms-font-feature-settings:"liga" 1;font-feature-settings:"liga";-webkit-font-variant-ligatures:discretionary-ligatures;font-variant-ligatures:discretionary-ligatures;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-arrow-in-cyrcle:before{content:"\e900"}.icon-arrow-left:before{content:"\e901"}.icon-case:before{content:"\e907"}.icon-close:before{content:"\e90a"}.icon-down:before{content:"\e911"}.icon-dropMenu:before{content:"\e912"}.icon-facebook:before{content:"\e918"}.icon-hand-down:before{content:"\e920"}.icon-hand-up:before{content:"\e921"}.icon-mainLogo:before{content:"\e925"}.icon-newsletter:before{content:"\e928"}.icon-print:before{content:"\e935"}.icon-redMail:before{content:"\e93b"}.icon-reply:before{content:"\e93e"}.icon-search:before{content:"\e940"}.icon-talkback:before{content:"\e943"}.icon-tw:before{content:"\e944"}.icon-up:before{content:"\e945"}.icon-bookmark:before{content:"\e9d2"}.icon-radio-checked:before{content:"\ea54"}.icon-radio-unchecked:before{content:"\ea56"}.icon-linkedin:before{content:"\eaca"}html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,header,section{display:block}h1{font-size:2em;margin:.67em 0}h1,h4,ol,ul{margin-top:0}a{background-color:transparent;-webkit-text-decoration-skip:objects;color:#0275d8}b{font-weight:bolder}img{border-style:none;vertical-align:middle}button,input,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button{text-transform:none}button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}textarea{resize:vertical}[type=checkbox]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}address,button,input,textarea{line-height:inherit}.dropdown-item,.navbar-brand{white-space:nowrap}html{-webkit-box-sizing:border-box;box-sizing:border-box;-ms-overflow-style:scrollbar}*,::after,::before{-webkit-box-sizing:inherit;box-sizing:inherit}@-ms-viewport{width:device-width}body{margin:0;font-size:1rem;font-weight:400;line-height:1.5;color:#292b2c;background-color:#fff}ol,ul{margin-bottom:1rem}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a,button,input,label,textarea{-ms-touch-action:manipulation;touch-action:manipulation}label{display:inline-block}.dropdown-toggle::after{content:""}.dropdown-item{font-weight:400}.container{margin-left:auto;margin-right:auto;padding-right:15px;padding-left:15px;position:relative}.row{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.form-control{display:block}@media (min-width:576px){.container{padding-right:15px;padding-left:15px;width:540px;max-width:100%}.row{margin-right:-15px;margin-left:-15px}}@media (min-width:768px){.container{padding-right:15px;padding-left:15px;width:720px;max-width:100%}.row{margin-right:-15px;margin-left:-15px}}@media (min-width:992px){.container{padding-right:15px;padding-left:15px;width:960px;max-width:100%}.row{margin-right:-15px;margin-left:-15px}}@media (min-width:1200px){.container{padding-right:15px;padding-left:15px;width:1140px;max-width:100%}.row{margin-right:-15px;margin-left:-15px}}.col-lg-10,.col-lg-12,.col-lg-2,.col-lg-4,.col-lg-8,.col-sm-12,.col-xl-3,.col-xl-6,.col-xl-9{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}@media (min-width:576px){.col-lg-10,.col-lg-12,.col-lg-2,.col-lg-4,.col-lg-8,.col-sm-12,.col-xl-3,.col-xl-6,.col-xl-9{padding-right:15px;padding-left:15px}.col-sm-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@media (min-width:768px){.col-lg-10,.col-lg-12,.col-lg-2,.col-lg-4,.col-lg-8,.col-sm-12,.col-xl-3,.col-xl-6,.col-xl-9{padding-right:15px;padding-left:15px}}@media (min-width:992px){.col-lg-10,.col-lg-12,.col-lg-2,.col-lg-4,.col-lg-8,.col-sm-12,.col-xl-3,.col-xl-6,.col-xl-9{padding-right:15px;padding-left:15px}.col-lg-2{-webkit-box-flex:0;-webkit-flex:0 0 16.666667%;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-4{-webkit-box-flex:0;-webkit-flex:0 0 33.333333%;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-8{-webkit-box-flex:0;-webkit-flex:0 0 66.666667%;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-10{-webkit-box-flex:0;-webkit-flex:0 0 83.333333%;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@media (min-width:1200px){.col-lg-10,.col-lg-12,.col-lg-2,.col-lg-4,.col-lg-8,.col-sm-12,.col-xl-3,.col-xl-6,.col-xl-9{padding-right:15px;padding-left:15px}.col-xl-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}}.form-control{width:100%}.form-control{padding:.5rem .75rem;font-size:1rem;line-height:1.25;color:#464a4c;background-color:#fff;background-image:none;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu{-webkit-background-clip:padding-box}.form-control::-ms-expand{background-color:transparent;border:0}.form-control::-webkit-input-placeholder{color:#636c72;opacity:1}.form-control::-moz-placeholder{color:#636c72;opacity:1}.form-control:-ms-input-placeholder{color:#636c72;opacity:1}.form-inline{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}@media (min-width:576px){.form-inline label{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}}.dropdown{position:relative}.collapse{display:none}.dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.3em;vertical-align:middle}.dropdown-menu{position:absolute;top:100%;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#292b2c;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-item{display:block;width:100%;padding:3px 1.5rem;clear:both;color:#292b2c;text-align:inherit;background:0 0;border:0}.navbar{-webkit-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal}.navbar-toggler-icon{content:""}.nav-link{display:block;padding:.5em 1em}.navbar{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding:.5rem 1rem}.navbar-brand{display:inline-block;padding-top:.25rem;padding-bottom:.25rem;margin-right:1rem;font-size:1.25rem;line-height:inherit}.navbar-nav{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-toggler{-webkit-align-self:flex-start;-ms-flex-item-align:start;align-self:flex-start;padding:.25rem .75rem;font-size:1.25rem;line-height:1;background:0 0;border:1px solid transparent;border-radius:.25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background:center center no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%}@media (max-width:991px){.navbar-toggleable-md .navbar-nav .dropdown-menu{position:static;float:none}.navbar-toggleable-md>.container{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-toggleable-md,.navbar-toggleable-md .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal}.navbar-toggleable-md{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.navbar-toggleable-md .navbar-nav{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.navbar-toggleable-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-toggleable-md>.container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.navbar-toggleable-md .navbar-collapse{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;width:100%}.navbar-toggleable-md .navbar-toggler{display:none}}.modal-header{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.modal-header{-webkit-box-align:center;padding:15px}.modal-header{display:flex;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;border-bottom:1px solid #eceeef}.clearfix::after{display:block;content:"";clear:both}.float-left{float:left!important}.float-right{float:right!important}.mt-2,.my-2{margin-top:.5rem!important}.my-2{margin-bottom:.5rem!important}.mr-auto{margin-right:auto!important}@media (min-width:576px){.mr-sm-2{margin-right:.5rem!important}}@media (min-width:992px){.mt-lg-0,.my-lg-0{margin-top:0!important}.my-lg-0{margin-bottom:0!important}}.col-lg-10,.col-lg-12,.col-lg-2,.col-lg-4,.col-lg-8,.col-sm-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:768px){.col-sm-12{float:right}.col-sm-12{width:100%}}@media (min-width:1200px){.col-lg-10,.col-lg-12,.col-lg-2,.col-lg-4,.col-lg-8{float:right}.col-lg-12{width:100%}.col-lg-10{width:83.33333333%}.col-lg-8{width:66.66666667%}.col-lg-4{width:33.33333333%}.col-lg-2{width:16.66666667%}}.dropdown-menu{right:0;left:auto;float:left;text-align:right}.navbar-collapse{padding-right:15px;padding-left:15px}.navbar-brand{float:right}@media (min-width:768px){.navbar-header{float:right}.navbar>.container .navbar-brand{margin-right:-15px;margin-left:auto}}@media (min-width:768px){.navbar-nav,.navbar-nav>li{float:right}}@font-face{font-family:Heebo-Regular;font-display:auto;src:url(/dist/Content/fonts/heebo/Heebo-Regular.otf);src:url(/dist/Content/fonts/heebo/Heebo-Regular.otf?#iefix) format('embedded-opentype'),url(/dist/Content/fonts/heebo/Heebo-Regular.ttf) format('truetype')}@font-face{font-family:Heebo-Light;font-display:auto;src:url(/dist/Content/fonts/heebo/Heebo-Light.otf);src:url(/dist/Content/fonts/heebo/Heebo-Light.otf?#iefix) format('embedded-opentype'),url(/dist/Content/fonts/heebo/Heebo-Light.ttf) format('truetype')}@font-face{font-family:Heebo-Medium;font-display:auto;src:url(/dist/Content/fonts/heebo/Heebo-Medium.ttf) format('truetype')}b{font-weight:400!important}address{margin-bottom:0;font-style:normal}.body-content span,footer span,header span{display:inline-block}ul{list-style:none;padding:0;margin:0}a{text-decoration:none}h1,h4{margin-bottom:0;font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.container.body-content{background-color:#fff}.col-lg-12{padding:0!important}.row{margin:0!important}label{margin-bottom:0}.hidden-link-text{font-size:0!important;display:none!important}.hidden{display:none}#goToUp{position:fixed;bottom:10px;right:10px;text-align:center;z-index:10001}#goToUp .icon-up{font-size:12px}#goToUp .text{margin-top:12px;font-size:16px;line-height:18px;font-family:Heebo-Light}#goToUp .black{color:#010101}.clearfix{display:inline-block}.clear,.clearfix:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0}.rtl{direction:rtl}.drop{color:#e72020}.text .art-title{display:block}.text .art-descr{color:#282829;font-family:Heebo-Regular;font-size:18px;line-height:23px;margin-top:5px}#top-searchbox-input::-webkit-input-placeholder{font-style:italic;color:#AEAEAE}#top-searchbox-input::-moz-placeholder{font-style:italic;color:#AEAEAE}#top-searchbox-input:-ms-input-placeholder{font-style:italic;color:#AEAEAE}#top-searchbox-input:-moz-placeholder{font-style:italic;color:#AEAEAE}#articles-searchbox::-webkit-input-placeholder{font-style:italic;color:#AEAEAE}#articles-searchbox::-moz-placeholder{font-style:italic;color:#AEAEAE}#articles-searchbox:-ms-input-placeholder{font-style:italic;color:#AEAEAE}#articles-searchbox:-moz-placeholder{font-style:italic;color:#AEAEAE}#zoomd-search{display:none}#articles-searchbox,#top-searchbox-input{font-size:15px;line-height:24px;background-clip:inherit;border:none;height:40px}.navbar-nav,.navbar-nav a{padding:.5rem 0;color:#fff}.brand-container{background-color:#010101;padding:.6rem}.brand-container .container{justify-content:space-between;display:flex}.menu-container{background-color:#282829;padding:0;height:40px}#div-gpt-ad-PopUnder{display:none}.iconed-menu .nav-link{padding-right:.4rem;padding-left:.4rem}.navbar-nav.iconed-menu .nav-link{color:#fff}.navbar-nav.iconed-menu .nav-link .text{color:#fff}.brand-container .navbar-brand{color:#fff;font-size:39px;line-height:44px}.brand-container .icon-search{background-color:transparent;height:40px;line-height:40px;width:40px;display:inline-block;vertical-align:middle;color:#f2f2f2;font-size:24px}.brand-container .search-button span{color:#fff;font-size:16px;margin-left:4px;line-height:40px;vertical-align:middle;display:inline-block}.brand-container .buttons{vertical-align:middle;line-height:44px}.brand-container .buttons .button-link{color:#fff;padding:2px 12px;margin-left:2px}.brand-container .buttons .button-link.bg{background-color:#5da1c9}.navbar-nav .nav-item .nav-link .icon-dropMenu{margin-right:6px;font-size:6px;position:relative;top:-4px}#search-shadow{position:fixed;top:0;bottom:0;left:0;right:0;background-color:hsla(100,100%,100%,.97);z-index:1100;display:none}#search-modal-window{display:none;position:absolute;top:250px;left:50%;width:500px;z-index:1200;-webkit-transform:translate(-50%,0);-moz-transform:translate(-50%,0);-o-transform:translate(-50%,0);transform:translate(-50%,0)}.search-modal .modal-header{border-bottom:none;padding:15px 0}.search-modal .modal-header .search-logo a{color:#282829;font-size:34px}.search-modal .modal-header .search-close i{color:#282829;font-size:22px;border-radius:50%;height:32px;width:32px;box-sizing:border-box;text-align:center;line-height:25px}.search-modal .content{margin-top:20px}.search-modal .content .search-radios{line-height:40px;margin-top:15px;font-size:20px;color:#282829;display:flex;justify-content:space-evenly}.search-modal .content .search-radios .icon{margin-left:7px;color:#a2a3a3;line-height:18px;vertical-align:middle}.search-modal .content .form-inline{border:1px solid #5da1c9;border-radius:10px}.search-modal .content form a.icon{height:40px;width:40px;text-align:center}.search-modal .content form .icon-search{background-color:#fff;line-height:40px;text-align:center;margin-right:-1px;color:#282829;font-size:18px}.search-modal .content form .form-control{width:calc(100% - 40px);margin:0!important;border-radius:10px;padding:0;text-indent:10px}.search-modal .searchbox-dropdown{width:500px;right:-500px!important;top:22px!important;border-radius:10px 10px 0 0}.search-modal .articles-searchbox-container .searchbox-dropdown{top:42px!important}.dropdown-toggle::after{border:none}.navbar .dropdown-menu .mador h4.dropdown-item{color:#a2a3a3}.menu-container .navbar-brand{display:none}header.scrolled{font-family:Heebo-Light;position:fixed;top:0;z-index:99999;width:100%;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.searchbox-container{position:relative}.searchbox-dropdown{width:308px;background-color:#fff;position:absolute;right:-308px!important;top:18px!important;max-height:500px;overflow-y:scroll;padding:0 0 10px;z-index:999999;-webkit-box-shadow:2px 2px 7px -1px rgba(15,65,98,.51);-moz-box-shadow:2px 2px 7px -1px rgba(15,65,98,.51);box-shadow:2px 2px 7px -1px rgba(15,65,98,.51)}#zoomd-search{position:relative}.articles-searchbox-container .searchbox-dropdown{right:auto!important;left:0;top:40px!important}#left-newsletters-form{background:url(/dist/Content/images/background.png) no-repeat;padding:15px 10px 10px;background-size:cover;width:300px;margin:0 auto}#left-newsletters-form .title{color:#FBFAF9;line-height:20px;margin:10px 0;text-align:right;font-family:Heebo-Regular}#left-newsletters-form .title .title-text{line-height:20px;font-size:18px;display:inline}#left-newsletters-form .icon-mainLogo{color:#fff;font-size:20px;line-height:31px;vertical-align:text-bottom;display:inline;margin-right:7px}#left-newsletters-form .icon-newsletter{background-color:#fff;color:#5da0c8;height:40px;width:40px;line-height:42px;vertical-align:top}#left-newsletters-form #email{height:40px;border:none;text-indent:5px;font-style:italic;font-size:15px;margin-right:-5px;width:calc(100% - 105px);font-family:Heebo-Regular!important}#left-newsletters-form .bottom{margin-top:12px}#left-newsletters-form #approval{width:18px;height:18px;vertical-align:top;margin-top:5px}#left-newsletters-form .text{color:#fff;font-family:Heebo-Regular!important;font-size:13px;margin-right:5px;max-width:248px;text-align:right}#left-newsletters-form .text a{color:#fff}#left-newsletters-form #send{height:40px;background-color:#5da0c8;color:#fff;font-family:Heebo-Regular!important;font-size:20px;border:none;vertical-align:top;padding:0 10px}#newsletters-thanks-container{display:none;text-align:center}.breakingArticleContainer{display:none;font-family:"Open Sans Hebrew",arial}.breakingArticleContainer.bottom{bottom:0;position:fixed;width:100%;z-index:100001;margin:0 auto;left:0;right:0}.breakingArticleContainer .newArticle{width:100%;height:0;margin:0 auto}.breakingArticleContainer .newArticle a{color:#fff}.breakingArticleContainer .newArticle .newsArticleIcon{font-size:16px;font-weight:700;margin:12px;line-height:16px;height:34px;width:55px;border-left:1px solid #fff}.breakingArticleContainer .articleContent{font-size:20px;font-weight:700;line-height:58px;vertical-align:top}.breakingArticleContainer .newArticle{background-color:#282829}.breakingArticleContainer .articleContainer{display:block}.sidebar .item.bordered{border:1px solid #e7eff4}.sidebar .item,.taboola-inside *,body,button,input,textarea{font-family:Heebo-Regular!important}.bottom-banner{padding:30px 0}.body-content>section .bottom-bordered,.bottom-banner{border-bottom:1px solid #e7eff4}#div-gpt-ad-Premium{margin:20px auto;position:relative;text-align:center}.sidebar .item{margin:0 auto 30px;width:300px}#biz-tv-cubes .slider-item iframe{display:none}@media (min-width:320px){header{width:100%}#goToUp{display:none}header{background-color:#010101;position:fixed;top:0;z-index:1002}.navbar-brand{float:right}.container.body-content{margin-top:70px}.separative_line{margin:0}.text .art-descr{display:none}}@media (min-width:992px){.col-lg-8{padding:0}.col-lg-8{max-width:66.666667%}.container{width:1200px}header.scrolled{width:1200px;position:static}}@media (max-width:991px){.navbar>.container{width:100%}}@media (min-width:1024px){.body-content>section .padding-top{padding:30px 0 0}.brand-container .navbar-brand{float:none;padding:0;margin:0}}@media (min-width:1200px){.text .art-descr{display:block}header{position:static}header.scrolled{position:fixed;width:100%}#goToUp{display:block}.col-xl-9{margin-left:2.5%;flex:0 0 74%;max-width:870px}.col-xl-3,.sidebar.col-lg-4{max-width:300px;margin-right:0}.sidebar.col-lg-4{width:300px;padding:0}.navbar .navbar-collapse{display:flex!important;padding:0!important;height:40px}.navbar .navbar-nav{padding:0}.iconed-menu .nav-item a{font-size:15px}.navbar .navbar-nav .nav-link{padding-right:5px;padding-left:5px}.container{width:1200px;padding:0;margin:0 auto}.container.body-content{margin-top:130px;top:0}.navbar-nav.iconed-menu .nav-item .icon{margin-left:4px;font-size:14px}.navbar-nav .nav-item a{font-size:17px}.navbar .iconed-menu .nav-item .nav-link{font-size:15px;padding:7px 4px 0 10px;height:29px}.separative_line{margin:0 4px}}#article-container{font-family:Heebo-Regular;font-style:normal;padding-top:20px}.credit address{display:inline-block}.body-content>section.breadcrumbs .row{padding:0 0 10px;justify-content:space-between}.breadcrumbs .row .breadcrumbs_main{margin:0;padding:0;list-style:none;display:flex;justify-content:flex-start}.breadcrumbs .row .breadcrumbs_main li{margin-left:5px}.breadcrumbs .row .breadcrumbs_main a{color:#a2a3a3}.breadcrumbs .row .breadcrumbs_main a:last-of-type{color:#5da1c9}.breadcrumbs .row .breadcrumbs_main .icon-arrow-left{color:#a2a3a3;font-size:9px;line-height:25px;vertical-align:top;margin:0 6px}#article-container .top-part .text .art-title{font-family:Heebo-Medium;color:#010101}#article-container .top-part .text .art-descr{display:block;color:#282829;font-size:17px;line-height:28px;margin:10px 0}#article-container .top-part .credit{padding-bottom:12px}#article-container .top-part .credit,#article-container .top-part .credit a{color:#a2a3a3;font-family:Heebo-Regular}#article-container .top-part .credit a{font-size:16px}#article-container .top-part .credit .separative_line{color:#cacbcb}#article-container .top-part .credit .statistics{float:left}#article-container .top-part .credit .statistics .talkback{color:#a2a3a3;font-family:Heebo-Regular;font-style:italic;font-size:15px}#article-container .top-part .credit .statistics .talkback{margin-left:14px}#article-container .top-part .credit .statistics .icon{margin-right:7px}#article-container .main-part .right-sidebar{margin-top:5px}#article-container .main-part .right-sidebar .dfp-cube{border-top:1px solid #E7ECF0;padding-top:20px;margin-bottom:20px}#article-container .main-part .addthis{max-width:100%;margin-top:20px;text-align:center}#article-container .main-part .addthis .at-share-btn-elements .at-share-btn{border-radius:50%!important;color:#fff;overflow:hidden;text-decoration:none;text-transform:none;display:inline-block;text-align:center}#article-container .main-part .addthis.big .at-share-btn-elements .at-share-btn.icon-redMail{font-size:16px}#article-container .main-part .addthis .at-share-btn-elements .at-share-btn.icon-facebook{background-color:#3b5998}#article-container .main-part .addthis .at-share-btn-elements .at-share-btn.icon-tw{background-color:#1da1f2}#article-container .main-part .addthis .at-share-btn-elements .at-share-btn.icon-linkedin{background-color:#0077b5}#article-container .main-part .addthis .at-share-btn-elements .at-share-btn.icon-redMail{background-color:#585858}#article-container .main-part .addthis .at-share-btn-elements .at-share-btn.icon-print{background-color:#738a8d}#article-container .main-part .addthis .at-share-btn-elements .at-share-btn.icon-bookmark{background-color:#1a5c88}#article-container .main-part .content .main-img{margin-bottom:20px}#article-container .main-part .content .paragraph{color:#000;line-height:26px;margin-bottom:20px;float:none;clear:both}#article-container .main-part .content .paragraph .article-paper .paper-tooltip{display:none;opacity:0}#article-container .main-part .content .paragraph a{color:#5da1c9}.bottom-links #accordion{display:none;margin-top:10px;background-color:#f5f6f6;border:1px solid #F3F7F8;padding:15px;float:right;width:100%;margin-bottom:20px;position:relative}.bottom-links #accordion textarea{width:100%;resize:vertical;color:#42566b;font-size:14px;padding:5px;margin-bottom:5px;border-color:#F3F7F8;font-family:Heebo-Regular!important;font-style:italic}.bottom-links #accordion .triangle{width:0;height:0;border-style:solid;border-width:0 17px 17px;border-color:transparent transparent #f5f6f6;position:absolute;left:65%;top:-15px}.bottom-links #accordion .sendBut{color:#fff;background-color:#5da1c9;border-radius:3px;margin-top:37px;border-bottom:2px solid #0e85cc;font-size:22px;float:left;padding:3px 15px;text-align:center;font-family:Heebo-Regular!important}#thanks{font-size:14px;color:green;display:none}#tackbacks .add-tackbacks-error,#tackbacks .add-tackbacks-ok,#tackbacks .talkback-new .validation-error,#tackbacks .talkback-new i{display:none}#tackbacks .talkback-new{padding:20px}#tackbacks .talkback-new u{display:inline-block;float:left}#talkback-items li.unvisible{display:none}#talkback-items .talkback-serial,#talkback-items li .talkback-content{display:inline-block}#talkback-items .talkback-serial{vertical-align:top}#talkback-items .talkback-serial .number{padding-left:3px}#talkback-items .talkback-serial .dot,#talkback-items li .talkback-serial .number{vertical-align:top;color:#000}#talkback-items .depth-subject .icon-arrow-in-cyrcle{color:#5da1c9;vertical-align:top}#talkback-items .talkback-content .talkback-item-title{display:flex;justify-content:space-between}#talkback-items .talkback-content .talkback-item-title .title-part .talkback-item-subject,#talkback-items .talkback-content .talkback-item-title .title-part .talkback-item-subject-no-body{font-family:Heebo-Medium;color:#000}#talkback-items .talkback-content .talkback-item-title .title-part .credit{color:#a2a3a3}#talkback-items .talkback-content .talkback-item-title .voting-part{color:#5da1c9}#talkback-items .talkback-content .talkback-item-title .voting-part{white-space:nowrap}#talkback-items .talkback-content .talkback-item-title .voting-part .separate-line{background-color:#e4e4e4;width:1px}#talkback-items .talkback-content .talkback-item-title .voting-part .number{font-family:Heebo-Regular}#talkback-items .talkback-content .talkback-item-title .voting-part .hand,#talkback-items .talkback-content .talkback-item-title .voting-part .icon{vertical-align:top}#talkback-items .talkback-content .talkback-item-content{display:none;font-size:14px}#talkback-items .talkback-content .talkback-item-content .talkback-item-bottom-part{margin-top:10px;font-size:14px}#talkback-items .talkback-content .talkback-item-content .talkback-item-bottom-part .icon{margin-left:7px}#talkback-items .talkback-content .talkback-item-content .talkback-item-bottom-part .icon-close{font-size:13px}#talkback-items .talkback-content .talkback-item-content .talkback-item-bottom-part .talkback-item-close{color:#5da1c9}#talkback-items .talkback-content .talkback-item-bottom-part .talkback-item-add-comment{color:#6FBE41;font-family:Heebo-Regular!important;margin-top:10px;font-size:15px}#talkback-items .talkback-content .talkback-item-bottom-part .icon-reply{margin-left:7px;font-size:13px}.paper-data .item{margin-bottom:0;padding-left:2px;font-size:13px;width:auto}.paper-data .paper-graph{border-bottom:1px solid #C9D8DF;display:block}.paper-data .paper-graph img{text-align:center;margin:0 auto;display:block}.paper-data .pd-header{display:block;padding:10px}.p-short-data .name,.paper-data .name{font-family:Heebo-Regular;font-size:16px;color:#010101}.p-short-data .rate,.paper-data .rate{font-size:18px;margin-right:3px}.p-short-data .percent,.paper-data .percent{float:left;direction:ltr;font-family:Heebo-Regular;font-size:18px;line-height:32px;vertical-align:top}.p-short-data .percent .sign,.paper-data .percent .sign{font-size:18px;margin-left:4px;line-height:30px;vertical-align:top}.p-short-data .icon,.paper-data .icon{font-size:6px;margin-left:5px;line-height:25px;vertical-align:top}.paper-data .paper-stats{display:flex;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;justify-content:space-between;background-color:#5da1c9;border-top:1px solid #fff;color:#fff;padding:12px 3px 5px}.paper-data .paper-stats .border-left{width:1px;min-width:1px;height:30px;background-color:#fff;position:relative;top:0}.p-full-data .pd-header,.paper-data .paper-links{background-color:#f5f6f6}.paper-data .paper-stats .label{padding-right:2px;line-height:8px;vertical-align:bottom;display:block}.paper-data .paper-stats .value{font-family:Heebo-Regular;padding-right:2px;line-height:16px;font-size:11px}.related-papers .title{font-family:Heebo-Medium}.paper-data .paper-links{display:flex;justify-content:space-between;padding:4px}.paper-data .paper-links a{font-size:11px;color:#5da1c9}.related-papers #related-papers .p-short-data .name,.related-papers .arrow.icon-down,.related-papers .arrow.icon-up{color:#282829}.related-papers .title{font-size:30px;padding:10px;line-height:36px}.related-papers .p-hidden{display:none}.related-papers #related-papers{border-top:1px solid #E7ECF0}.related-papers #related-papers .p-short-data.bottom-bordered{border-bottom:1px solid #E7ECF0}.related-papers #related-papers .p-short-data{padding:10px}.related-papers .arrow{font-size:9px;line-height:30px;vertical-align:top;margin-left:7px}.p-full-data .icon,.p-full-data .percent .sign,.p-short-data .icon,.p-short-data .percent .sign{line-height:31px}@media (min-width:320px){#article-container .main-part .right-sidebar{display:none}#article-container .main-part .content .paragraph img{max-width:100%}#article-container .top-part .text .art-title{font-size:24px}#article-container .main-part .addthis{min-height:60px}.main-part .col-lg-10{padding:0}#article-container .main-part .content{margin-top:0;padding:0}#article-container .main-part .content .main-img{width:100%}#article-container .main-part .content .paragraph{font-size:18px}.breadcrumbs{margin-top:20px}#talkback-items .talkback-serial .dot,#talkback-items li .talkback-serial .number{font-size:24px;line-height:24px}#talkback-items .talkback-serial{width:30px;text-align:right}#talkback-items .talkback-item-level-0 .talkback-content,#talkback-items .talkback-item-level-1 .talkback-content,#talkback-items .talkback-item-level-2 .talkback-content,#talkback-items .talkback-item-level-3 .talkback-content,#talkback-items .talkback-item-level-4 .talkback-content,#talkback-items .talkback-item-level-5 .talkback-content{width:calc(100% - 40px)}#talkback-items .talkback-content .talkback-item-title .title-part .talkback-item-subject,#talkback-items .talkback-content .talkback-item-title .title-part .talkback-item-subject-no-body{line-height:22px;font-size:16px}#talkback-items li{padding:10px 0}#talkback-items .talkback-content .talkback-item-title .title-part .credit{font-size:12px}#talkback-items .talkback-content .talkback-item-title .voting-part .up .icon{line-height:42px}#talkback-items .talkback-content .talkback-item-title .voting-part .icon{font-size:12px;margin-left:5px}#talkback-items .talkback-content .talkback-item-title .voting-part .number{font-size:20px}#talkback-items .talkback-content .talkback-item-title .voting-part .hand{line-height:45px}#talkback-items .talkback-content .talkback-item-title .voting-part .separate-line{height:45px;margin:0 5px}#talkback-items .talkback-content .talkback-item-title .voting-part .down .icon{line-height:48px}.talkback-item-level-1,.talkback-item-level-2,.talkback-item-level-3,.talkback-item-level-4,.talkback-item-level-5{margin-right:0}#talkback-items .depth-subject .icon-arrow-in-cyrcle{font-size:22px;line-height:22px}#talkback-items .depth-subject .talkback-serial{width:30px}#article-container .sidebar{margin-top:20px}#article-container .main-part .addthis .at-share-btn-elements .at-share-btn{margin:0 5px 10px}#article-container .main-part .addthis .at-share-btn-elements .icon-print{display:none}#article-container .main-part .addthis.big .at-share-btn-elements .at-share-btn{width:40px;height:40px;line-height:40px;font-size:20px}}@media (min-width:992px){.col-lg-10{-webkit-box-flex:0;-webkit-flex:0 0 85%;-ms-flex:0 0 85%;flex:0 0 85%;max-width:85%;padding:0}.col-lg-2{-webkit-box-flex:0;-webkit-flex:0 0 15%;-ms-flex:0 0 15%;flex:0 0 15%;max-width:15%}}@media (min-width:1200px){.col-lg-10{width:85%}.col-lg-2{width:15%}#article-container .top-part .text .art-title{font-size:34px}#article-container .main-part .addthis{min-height:400px}#article-container .main-part .right-sidebar{display:block}#article-container .main-part .content{margin-top:20px;padding:0 40px 0 68px}#article-container .main-part .content .main-img{width:630px}#article-container .main-part .content .paragraph{font-size:16px}#talkback-items .talkback-serial .dot,#talkback-items li .talkback-serial .number{font-size:30px;line-height:30px}#talkback-items .talkback-serial{width:70px;text-align:center}#talkback-items .talkback-item-level-0 .talkback-content{width:calc(100% - 80px)}#talkback-items .talkback-content .talkback-item-title .title-part .talkback-item-subject,#talkback-items .talkback-content .talkback-item-title .title-part .talkback-item-subject-no-body{line-height:27px;font-size:19px}#talkback-items li{padding:20px 0}#talkback-items .talkback-content .talkback-item-title .title-part .credit{font-size:14px}#talkback-items .talkback-content .talkback-item-title .voting-part .up .icon{line-height:42px}#talkback-items .talkback-content .talkback-item-title .voting-part .icon{font-size:18px;margin-left:10px}#talkback-items .talkback-content .talkback-item-title .voting-part .number{font-size:30px}#talkback-items .talkback-content .talkback-item-title .voting-part .hand{line-height:54px}#talkback-items .talkback-content .talkback-item-title .voting-part .separate-line{height:54px;margin:0 10px}#talkback-items .talkback-content .talkback-item-title .voting-part .down .icon{line-height:52px}.talkback-item-level-1{margin-right:60px}.talkback-item-level-2{margin-right:85px}.talkback-item-level-3{margin-right:110px}.talkback-item-level-4{margin-right:135px}.talkback-item-level-5{margin-right:160px}#talkback-items .depth-subject .icon-arrow-in-cyrcle{font-size:30px;line-height:30px}#talkback-items .depth-subject .talkback-serial{width:60px}#talkback-items .talkback-item-level-1 .talkback-content,#talkback-items .talkback-item-level-2 .talkback-content,#talkback-items .talkback-item-level-3 .talkback-content,#talkback-items .talkback-item-level-4 .talkback-content,#talkback-items .talkback-item-level-5 .talkback-content{width:calc(100% - 70px)}#article-container .sidebar,.breadcrumbs{margin-top:0}#article-container .main-part .content .paragraph img{max-width:630px}#article-container .main-part .addthis .at-share-btn-elements .icon-print{display:inline-block}#article-container .main-part .addthis.big .at-share-btn-elements .at-share-btn{width:56px;height:56px;line-height:56px;font-size:20px}} </style> <script src="/dist/jquery-1.12.4.min.js"></script> <div class="container body-content article"> <script type="text/javascript">var articleID = '780987';var sectionArticleId = '2'; var articleAuthorName = 'ערן סוקול';</script> <div id='div-gpt-ad-Premium'><script type='text/javascript'>googletag.cmd.push(function () { googletag.display('div-gpt-ad-Premium'); });</script></div> <section class="breadcrumbs container"> <div class="row bottom-bordered"> <div class="col-lg-12 col-xl-6"> <ol id=""class="breadcrumbs_main" vocab="https://schema.org/" typeof="BreadcrumbList"><li property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" href="https://www.bizportal.co.il"><span property="name">ראשי</span></a><meta property="position" content="1" /></li><li id=""class="icon-arrow-left"></li><li property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" href="https://www.bizportal.co.il/globalmarkets"><span property="name">וול סטריט ושוקי חו"ל</span></a><meta property="position" content="2" /></li></ol> </div> <div class="col-lg-12 col-xl-6"> <div id='div-gpt-ad-TextLink'><script type='text/javascript'>googletag.cmd.push(function () { googletag.display('div-gpt-ad-TextLink'); });</script></div> </div> </div> </section> <section id="article-container" class="row"> <article class="col-sm-12 col-lg-8 col-xl-9" itemscope itemtype="https://schema.org/NewsArticle" itemref="articleImage"> <meta itemscope itemprop="mainEntityOfPage" itemType="https://schema.org/WebPage" content="https://www.bizportal.co.il/globalmarkets/news/article/780987" /> <div itemprop="publisher" itemscope itemtype="https://schema.org/Organization"> <meta itemprop="name" content="Bizportal" /> <link rel="search" itemprop="sameAs" href="https://www.facebook.com/BizportalPage/"> <link rel="search" itemprop="sameAs" href="https://he.wikipedia.org/wiki/Bizportal"> <link rel="search" itemprop="sameAs" href="https://twitter.com/bizportalnews"> <link rel="search" itemprop="sameAs" href="https://www.youtube.com/channel/UC7HtA9saD0LyZxRbgG1KKXQ"> <meta itemprop="url" content="https://www.bizportal.co.il" /> <span itemprop="logo" itemscope itemtype="https://schema.org/ImageObject"> <meta itemprop="image" content="image/png" /> <meta itemprop="url" content="https://img.bizportal.co.il/biz/images/bw-logo.png" /> </span> </div> <div id="fb-root"></div> <script> (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = 'https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v3.0&appId=296003680928545&autoLogAppEvents=1'; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); </script> <div class="row top-part"> <div class="col-lg-12 bottom-bordered padding-top"> <div class="text"> <h1 itemprop="headline" class="art-title ">לקראת פתיחת שבוע המסחר בוול סטריט, האנליסטים מנתחים</h1> <div class="art-descr" itemprop="description">למרות שהקורונה עדיין כאן וצפויה להישאר, מסביב לעולם מנסים להקל את המגבלות; האנליסטים מעריכים כי הולכת ועולה רמת הסיכון בשווקים, אשר מתנפחים לממדי בועה נוכח מדיניות הבנק הפדרלי בארה"ב</div> </div> <div class="credit"> <span ><address itemscope itemtype="http://schema.org/Person" itemprop="author"><a itemprop="sameAs" href="/list/author/130650" onclick="setMostIn();" ><span itemprop="name" >ערן סוקול</ span ></ a ></address ></a></span><span class="separative_line">|</span><time><span class="date" itemprop="datePublished">14/06/2020</span>&nbsp;<span class="time">19:27</span><meta itemprop="dateModified" name="date" content="14/06/2020" scheme="YYYY-MM-DD"></time> <div class="statistics"> <span class="fb-like" data-href="http://www.bizportal.co.il/globalmarkets/news/article/780987" data-layout="button_count" data-action="like" data-size="large" data-show-faces="false" data-share="false"></span> </div> </div> </div> </div> <div class="row main-part"> <div class="col-lg-2 addthis big"> <div class="at-share-btn-elements"> <div data-url="https://www.bizportal.co.il/globalmarkets/news/article/780987" class="icon-facebook at-share-btn"></div> <div data-url="https://www.bizportal.co.il/globalmarkets/news/article/780987" class="icon-tw at-share-btn"></div> <div data-url="https://www.bizportal.co.il/globalmarkets/news/article/780987" data-title="לקראת פתיחת שבוע המסחר בוול סטריט, האנליסטים מנתחים" data-description="למרות שהקורונה עדיין כאן וצפויה להישאר, מסביב לעולם מנסים להקל את המגבלות; האנליסטים מעריכים כי הולכת ועולה רמת הסיכון בשווקים, אשר מתנפחים לממדי בועה נוכח מדיניות הבנק הפדרלי בארה&quot;ב" class="icon-linkedin at-share-btn"></div> <div data-url="https://www.bizportal.co.il/globalmarkets/news/article/780987" data-title="לקראת פתיחת שבוע המסחר בוול סטריט, האנליסטים מנתחים" data-description="למרות שהקורונה עדיין כאן וצפויה להישאר, מסביב לעולם מנסים להקל את המגבלות; האנליסטים מעריכים כי הולכת ועולה רמת הסיכון בשווקים, אשר מתנפחים לממדי בועה נוכח מדיניות הבנק הפדרלי בארה&quot;ב" data-media="https://img.bizportal.co.il/giflib/news/rsPhoto/sz_205/rsz_615_346_AMEIRCA FLAG WALL STREET.jpeg" class="at-share-btn icon-redMail"></div> <div class="at-share-btn icon-print"></div> <div data-url="//www.bizportal.co.il/login?returnURL=http://www.bizportal.co.il/globalmarkets/news/article/780987" data-id="780987" class="at-share-btn icon-bookmark" title="שמירת כתבה באיזור אישי"></div> </div> </div> <div class="col-lg-10"> <div class="content" data-has-video="False"> <img id="articleImage" src="https://img.bizportal.co.il/giflib/news/rsPhoto/sz_205/rsz_615_346_AMEIRCA FLAG WALL STREET.jpeg" class="main-img" alt="וול סטריט, צילום: Istock" title="וול סטריט, צילום: Istock" itemscope itemtype="https://schema.org/ImageObject" itemprop="image" itemref="imgUrl" /> <meta itemprop="url" content="https://img.bizportal.co.il/giflib/news/rsPhoto/sz_205/rsz_615_346_AMEIRCA FLAG WALL STREET.jpeg" id="imgUrl"> <div class="paragraph"> <p class="text" data-index="0"> שבוע המסחר בוול סטריט ייפתח על רקע ירידות השערים החדות שנרשמו בשוקי המניות בעולם לקראת סוף השבוע, נוכח העלייה במספר הנדבקים בקורונה בארה"ב, הפסימיות ששידר הפד' לגבי המצב הכלכלי ומצב התעסוקה בארה"ב והחרפה במחאה החברתית ברחבי ארה"ב בנוגע להריגתו של ג'ורג' פלויד. האנליסטים מציינים כי למרות שהקורונה עדיין כאן וצפויה להישאר, מסביב לעולם מנסים להקל את המגבלות, מה שמעלה את רמת הסיכון בשווקים, אשר הולכים ומתנפחים לממדי בועה נוכח מדיניות הבנק הפדרלי בארה"ב. </p> </div> <div class="OUTBRAIN" data-src="https://www.bizportal.co.il/globalmarkets/news/article/780987" data-widget-id="AR_8"></div> <div class="paragraph"> <p class="text" data-index="1"> <img alt="" data-resize="0" src="https://img.bizportal.co.il/giflib/tools/MAKRO14.06.20.01.JPG" /><br /><br /><strong>המצב מסתבך, אי אפשר להישאר סגורים והסיכון במניות עולה</strong><br />לאחרונה חל שינוי משמעותי בגישה של הממשלות להתמודדות עם המגפה. במסגרת סקירתו השבועית מציין <strong>אלכס זבז'ינסקי, הכלכלן הראשי של מיטב דש</strong> כי במדינות רבות החליטו להקל את מגבלות הריחוק החברתי למרות שהמגפה אפילו לא נחלשה. "הודו, בנגלדש, אינדונזיה, מקסיקו ומדינות אחרות החליטו להקל בסגר למרות שמספר החולים ממשיך לגדול. גם בארה"ב מסירים מגבלות, למרות שהירידה במספר הנדבקים נעצרה ובחלק מהמדינות מספרם חזר לעלות", כותב זבז'ינסקי. <br /><br />במיטב דש מעריכים כי התסריט המתקבע של פתיחת הכלכלות לפעילות למרות מספר גדול של חולים מוריד את הפוטנציאל של התאוששות הכלכלה ומעלה את רמת הסיכון לשוק המניות. על רק הדברים בבית ההשקעות ממשיכים להמליץ על חשיפה בינונית-נמוכה לאפיק המנייתי.<br /><br /><strong>שוב הוטל סגר בסין, ובארה"ב החזרה לשגרה מתרחקת</strong><br />"מספר הנדבקים החדשים בנגיף קורונה בעולם מוסיף לעלות והגיע לרמת שיא של 142 אלף נדבקים חדשים ביום, כ-50% מהם ביבשת אמריקה. סך הנדבקים מנגיף הקורונה בעולם הגיע ל-7.7 מיליון כאשר בסין נרשמה עליה מפתיעה במספר הנדבקים החדשים ובמדינות רבות בארה"ב עדיין מתקשים לבלום את קצב ההידבקויות", כך מציינים <b>כלכלני בנק הפועלים </b>במסגרת סקירתם השבועית. "בסין לאחר תקופה ארוכה בה נרשם מידי יום מספר קטן של נדבקים חדשים, נרשמה עליה במספר חולי הקורונה החדשים ובבייג'ין נסגר שוק מזון גדול והוטל סגר על השכונות הסמוכות".<br /><br />גם בארה"ב מציינים כלכלני פועלים, כי חלה בשבוע האחרון עלייה במספרי מקרי חולי הקורונה החדשים במדינות רבות כגון אלבמה, אריזונה, טקסס, פלורידה וצפון קרולינה. "מסתמן שהתפשטות נגיף הקורונה בארה"ב טרם נעצרה, והחזרה לשגרה מתרחקת", העריכו בפועלים.<br /><br /><strong>האם לפד' לא אכפת מהבועה שהוא יוצר?</strong><br />ובכל זאת, מדד ה-S&P 500 נמצא כעת במרחק של כ-10% בלבד משיא כל הזמנים שנרשם בחודש פברואר ואילו הנאסד"ק נגע בשבוע שעבר בשיא כל הזמנים, מעל רף ה-10,000 נקודות. איך? הפד' מנפח בועה, שכנראה תמשיך להתנפח טווח הקרוב, אך בסופו של דבר היא תתפוצץ. כך עולה מדבריו של <strong>אורי גרינפלד, הכלכלן הראשי של פסגות אשר כותב </strong>במסגרת סקירתו השבועית, "ב-2008 כאשר הפד' חילץ את המערכת הבנקאית תאבת הבצע קמה מהומה גדולה והביקורות על הפד עסקו בעיקר בכך שהחילוץ מייצר תמריץ לבנקים לקחת סיכונים שכן הם יודעים שהם לא יצטרכו להתמודד עם ההשלכות", כותב גרינפלד.<br /><br />לדבריו, ביקורות אלו כמובן התחזקו כאשר הבנקים גם חילקו בונוסים מכספי הפד' בשנה שלאחר מכן, אבל עם כל הביקורות, בהסתכלות של עלות-תועלת לטווח הקצר, ההחלטה של הפד' היתה מובנת, שכן מבחינתם האלטרנטיבה לחילוץ, שהיא התמוטטות המערכת הפיננסית הגלובאלית, היתה פשוט פחות אטרקטיבית.<br /><br /><strong>לשיטת הפד' היום כולם גדולים מכדי ליפול</strong><br />במעבר חד להיום, לדברי גרינפלד, הפד' הוזיל את המושג "גדולים מדי בכדי ליפול" והחליט לא לאפשר לאף חלק בשווקים הפיננסיים ליפול שכן בהסתכלות של עלות/תועלת לטווח הקצר אין פה בכלל שאלה.<br /><br />"בפד' יעדיפו למנוע עליית תשואות באג"ח הממשלתיות ו/או פתיחת מרווחים בשוק הקונצרני ו/או האטה בשוק האשראי הבנקאי ו/או בעיית נזילות אצל קרנות גידור ממונפות מאשר להתמודד עם הבעיות שהמדיניות שלהם יוצרת", כותב גרינפלד.<br /><br />עם זאת, לדברי גרינפלד כתוצאה מכך הפד' מייצר תמריץ שלילי לכל רוחב הכלכלה. "הממשלה תשמור על גירעון מנופח כי הפד' מממן לה אותו. הפירמות חוזרות לגייס הון כי הפד' עוזר להן למחזר את אותם החובות שהן לא יכולות להחזיר. הבנקים שמחים לתת הלוואות גם ללקוחות שכנראה לא יוכלו להחזיר אותן שכן הפד' רוכש מהם את ההלוואות מיד לאחר מכן. קרנות הגידור מגדילות את המינוף שלהן ולוקחות יותר סיכון כי הפד' יזרים להן כל כמות נזילות שהן צריכות. מתישהו בועת ה'הכל כלול' הזו תתפוצץ וזה יכאב מאוד אבל כל עוד פאואל וחבריו מעריכים שזה לא יקרה במהלך הקדנציה שלהם בפד' הבעיות יוותרו מתחת לשטיח והראש של כולם יוותר טמון בחול", סיכם גרינפלד. </p> </div> </div> <div class="bottom-links bottom-bordered"> <div id="mistake-in-article" class="right"> <div class="title"> <span class="icon-exclamation"></span> <span class="label">מצאתם טעות בכתבה? </span> <span class="link">כתבו לנו ונתקן</span> <span class="icon-doubleArrow"></span> </div> </div> <div class="newsletter-register-link left"> <span data-featherlight="/Newsletters/ActiveTrail/RegisterToNewsletters"> <span class="icon-newsletter"></span> <span class="label">רוצה להיות מעודכן?</span> <span class="link">הרשם לדיוור שלנו</span> <span class="icon-doubleArrow"></span> </span> </div> <form id="accordion"> <div class="triangle"></div> <textarea rows="3" id="reportMessage" name="reportMessage" placeholder="תוכן..."></textarea> <input type="hidden" id="articleLink" name="articleLink" /> <input type="hidden" id="articleTitle" name="articleTitle" /> <div class="g-recaptcha" id="RecaptchaField" data-sitekey="6LelklAUAAAAAHKZPSB6uoRqBYiMlHIQ2-s4tY7A"></div> <div id="captchaError" style="color:Red; display:none; font-weight:bold;">נא לאמת</div> <div id="CaptchaInputErorrInput" class="errorInputHide">לא תקינה captcha</div> <script src='https://www.google.com/recaptcha/api.js'></script> <span id="thanks">תודה עבור פנייתך, היא תיבדק ותטופל בהקדם</span> <a class="sendBut" onclick="mistakeInArticle.send('לקראת פתיחת שבוע המסחר בוול סטריט, האנליסטים מנתחים')">שלח</a> <span class="clear"><!----></span> </form> </div> <div class="clearfix"></div> <div class="share-container bottom-bordered padding-top"> <div class="item tags"> <span class="title">תגיות:</span> <a href="/list/Tags/וול%20סטריט" onclick="googleAnalyticsElemClick('New Article Page', 'Tags', 'וול סטריט')"><span class="arrow_tagiot article_sprite"></span><span class="tagName">וול סטריט</span></a> <a href="/list/Tags/לאומי%20שוקי%20הון" onclick="googleAnalyticsElemClick('New Article Page', 'Tags', 'לאומי שוקי הון')"><span class="arrow_tagiot article_sprite"></span><span class="tagName">לאומי שוקי הון</span></a> <a href="/list/Tags/לידר%20שוקי%20הון" onclick="googleAnalyticsElemClick('New Article Page', 'Tags', 'לידר שוקי הון')"><span class="arrow_tagiot article_sprite"></span><span class="tagName">לידר שוקי הון</span></a> <a href="/list/Tags/לקראת%20המסחר" onclick="googleAnalyticsElemClick('New Article Page', 'Tags', 'לקראת המסחר')"><span class="arrow_tagiot article_sprite"></span><span class="tagName">לקראת המסחר</span></a> <a href="/list/Tags/פסגות" onclick="googleAnalyticsElemClick('New Article Page', 'Tags', 'פסגות')"><span class="arrow_tagiot article_sprite"></span><span class="tagName">פסגות</span></a> <meta name="keywords" content="וול סטריט ,לאומי שוקי הון ,לידר שוקי הון ,לקראת המסחר ,פסגות"> </div> <div class="item share"> <span class="title">שתף:</span> <span class="bar"> <span class="at-share-btn-elements"> <span data-url="https://www.bizportal.co.il/globalmarkets/news/article/780987" class="icon-facebook at-share-btn"></span> <span data-url="https://www.bizportal.co.il/globalmarkets/news/article/780987" class="icon-tw at-share-btn"></span> <span data-url="https://www.bizportal.co.il/globalmarkets/news/article/780987" data-title="לקראת פתיחת שבוע המסחר בוול סטריט, האנליסטים מנתחים" data-description="למרות שהקורונה עדיין כאן וצפויה להישאר, מסביב לעולם מנסים להקל את המגבלות; האנליסטים מעריכים כי הולכת ועולה רמת הסיכון בשווקים, אשר מתנפחים לממדי בועה נוכח מדיניות הבנק הפדרלי בארה&quot;ב" class="icon-linkedin at-share-btn"></span> <span data-url="https://www.bizportal.co.il/globalmarkets/news/article/780987" data-title="לקראת פתיחת שבוע המסחר בוול סטריט, האנליסטים מנתחים" data-description="למרות שהקורונה עדיין כאן וצפויה להישאר, מסביב לעולם מנסים להקל את המגבלות; האנליסטים מעריכים כי הולכת ועולה רמת הסיכון בשווקים, אשר מתנפחים לממדי בועה נוכח מדיניות הבנק הפדרלי בארה&quot;ב" data-media="https://img.bizportal.co.il/giflib/news/rsPhoto/sz_205/rsz_615_346_AMEIRCA FLAG WALL STREET.jpeg" class="at-share-btn icon-redMail"></span> <span class="at-share-btn icon-print"></span> </span> </span> </div> <div class="item button"> <span class="green-button" onclick="googleAnalyticsElemClick('New Article Page', 'Add Talkback', 'Open')"><span class="icon-talkback"></span>הוספת תגובה</span> </div> </div> <div class="OUTBRAIN" data-src="https://www.bizportal.co.il/globalmarkets/news/article/780987" data-widget-id="AR_3"></div> <div class="article-strip bottom-bordered padding-top"> <div id='div-gpt-ad-Article_728x90_1'><script type='text/javascript'>googletag.cmd.push(function () { googletag.display('div-gpt-ad-Article_728x90_1'); });</script></div> </div> <div class="tackbacks" id="tackbacks"> <div class="title">תגובות לכתבה<span class="count">(0)</span>:</div> <form id="talkback-new0" class="talkback-new backgrounded"> <p class="tkb-name-out" id="talkback-add-logged0" data-talkbackId="0"> <label for="tkb-name0" class="hidden-link-text">שם</label> <input type="text" id="tkb-name0" placeholder="שם" name="tkb-name" value="" username="" tabindex="10" maxlength="20" validation-required="false" validation-dependency-checkbox="#tkb-anonimus0" validation-error-string="* יש להזין שם" /> <a href="javascript:void(0)" onclick="tryLogin(); googleAnalyticsElemClick('New Article Page', 'Add Talkback Login', '780987');" class="link"><em></em>התחבר לאתר</a> <span class="validation-error"></span> </p> <p class="subj"> <label for="tkb-subj0" class="hidden-link-text">כותרת</label> <input type="text" id="tkb-subj0" placeholder="כותרת" name="tkb-subj" tabindex="12" maxlength="55" validation-required="true" validation-error-string="* יש להזין כותרת" onkeyup="talkback.showMaxCharacters(this, '#tkb-subj-characters0', 55)" /> <i>נותרו <u id="tkb-subj-characters0">55</u> תווים</i> <span class="validation-error"></span> </p> <p class="text"> <label for="tkb-text0" class="hidden-link-text">תוכן התגובה</label> <textarea id="tkb-text0" placeholder="תוכן התגובה" name="tkb-text" tabindex="13" maxlength="1000" validation-required="false" onkeyup="talkback.showMaxCharacters(this, '#tkb-text-characters0', 1000)"></textarea> <i>נותרו <u id="tkb-text-characters0">1000</u> תווים</i> <span class="validation-error"></span> </p> <p class="button-area"> <span class="green-button" onclick="talkback.addTalkback('#talkback-new0', 0); googleAnalyticsElemClick('New Article Page', 'Add Talkback Send', '780987');" ><span class="icon-talkback"></span>הוסף תגובה</span> </p> </form> <div id="add-tackbacks-ok0" class="talkback-new add-tackbacks-ok"> <span>תגובתך התקבלה ותפורסם בכפוף למדיניות המערכת.<br />תודה.<br /></span> <u onclick="talkback.resetTalkback('#talkback-new0', 0);return false;">לתגובה חדשה</u> </div> <div id="add-tackbacks-error0" class="talkback-new add-tackbacks-error"> <span>תגובתך לא נשלחה בשל בעיית תקשורת, אנא נסה שנית.<br /></span> <u onclick="talkback.returnToTalkback('#talkback-new0',0);return false;">חזור לתגובה</u> </div> </div> <div class="OUTBRAIN" data-src="https://www.bizportal.co.il/globalmarkets/news/article/780987" data-widget-id="AR_5"></div> </div> </div> <div id="TMOS"> <script src='https://www.googletagservices.com/tag/js/gpt.js'> googletag.pubads().definePassback('/175505488/Bizportal_OutStream', [1, 1]).setTargeting('Site', ['Bizportal.co.il']).setTargeting('OSFMT', ['CBO']).setTargeting('TMCLNT', ['Kav_Manhe']).display(); </script> </div> </article> <article class="sidebar col-sm-12 col-lg-4 col-xl-3"> <div class="item"> <div id='div-gpt-ad-Article_300x600_1'><script type='text/javascript'>googletag.cmd.push(function () { googletag.display('div-gpt-ad-Article_300x600_1'); });</script></div> </div> <div class="item bordered"> </div> <div class="item outbr"> <div class="OUTBRAIN" data-src="https://www.bizportal.co.il/globalmarkets/news/article/780987" data-widget-id="SB_4"></div> </div> <div class="item"> <div id="left-newsletters-form"> <div class="title"><span class="title-text">הירשם לסיכום היומי של שוק ההון ולמבזקים של</span><span class="icon-mainLogo"></span></div> <div> <label for="email" class="hidden-link-text">הזן כתובת דוא"ל</label> <span class="icon-newsletter"></span> <input type="text" id="email" placeholder='הזן כתובת דוא"ל' /> <input type="button" id="send" value="שלח" /> </div> <div class="bottom"> <input type="checkbox" id="approval" /> <span class="text">אני מאשר קבלת ניוזלטרים ודיוורים פרסומיים בדואר אלקטרוני ו/או באמצעות הסלולר בהתאם למפורט בסעיף 10<a href="/general/terms#newsletters-part" target="_blank">בתנאי השימוש </a></span> </div> <div id="response"></div> </div> <div id="newsletters-thanks-container"> <img src="/Content/images/thanks.png" alt="בקשה לאישור במייל" /> </div> </div> <div class="item"> <div id="most-read-cube"> <h4 class="title">הכי נקראות</h4> <div class="tabs"> <span class="tab-item active"> <a data-ajax="true" data-ajax-method="GET" data-ajax-mode="replace" data-ajax-success="mostReadTabs.setActiveTab(this)" data-ajax-update="#most-read-data" href="/redesigned/CommonComponents/MostReadData?timePeriod=0">היום</a> </span> <span class="tab-item "> <a data-ajax="true" data-ajax-method="GET" data-ajax-mode="replace" data-ajax-success="mostReadTabs.setActiveTab(this)" data-ajax-update="#most-read-data" href="/redesigned/CommonComponents/MostReadData?timePeriod=-168">השבוע</a> </span> <span class="tab-item "> <a data-ajax="true" data-ajax-method="GET" data-ajax-mode="replace" data-ajax-success="mostReadTabs.setActiveTab(this)" data-ajax-update="#most-read-data" href="/redesigned/CommonComponents/MostReadData?timePeriod=-720">החודש</a> </span> </div> <div id="most-read-data"> <div class="row"> <ul class="col-xl-12"> <li> <span class="number">1.</span> <span class="article"> <span class="art-title"><a onclick="googleAnalyticsElemClick('New Home Page','MostRead','780970')" href="https://www.bizportal.co.il/general/news/article/780970" target="_self">שני עבריינים השתלטו על נכסיו וכספו של קשיש ערירי</a>&nbsp;<span class='icon-doubleArrow'></span></a></span> <span class="credit"> <span ><a href="/list/author/42" onclick="setMostIn();" >מערכת Bizportal</a></span> </span> </span> </li> <li> <span class="number">2.</span> <span class="article"> <span class="art-title"><a onclick="googleAnalyticsElemClick('New Home Page','MostRead','780968')" href="https://www.bizportal.co.il/capitalmarket/news/article/780968" target="_self">סקירת מסחר: ת"א 35 ירד ב-0.5%, בזק זינקה ב-6.7%</a>&nbsp;<span class='icon-doubleArrow'></span></a></span> <span class="credit"> <span ><a href="/list/author/42" onclick="setMostIn();" >מערכת Bizportal</a></span> </span> </span> </li> <li> <span class="number">3.</span> <span class="article"> <span class="art-title"><a onclick="googleAnalyticsElemClick('New Home Page','MostRead','780967')" href="https://www.bizportal.co.il/general/news/article/780967" target="_self">בנק ישראל צריך להתעורר - החלשת השקל היא קריטית</a>&nbsp;<span class='icon-doubleArrow'></span></a></span> <span class="credit"> <span ><a href="/list/author/130962" onclick="setMostIn();" >פרופ' ​נסים בן דוד</a></span> </span> </span> </li> <li> <span class="number">4.</span> <span class="article"> <span class="art-title"><a onclick="googleAnalyticsElemClick('New Home Page','MostRead','780981')" href="https://www.bizportal.co.il/globalmarkets/news/article/780981" target="_self">מניות המומנטום המומלצות ואיפה לא להשקיע?</a>&nbsp;<span class='icon-doubleArrow'></span></a></span> <span class="credit"> <span ><a href="/list/author/130650" onclick="setMostIn();" >ערן סוקול</a></span> </span> </span> </li> <li> <span class="number">5.</span> <span class="article"> <span class="art-title"><a onclick="googleAnalyticsElemClick('New Home Page','MostRead','780977')" href="https://www.bizportal.co.il/globalmarkets/news/article/780977" target="_self">הקורונה יצרה זן חדש של משקיעים ויש להם טרנדים</a>&nbsp;<span class='icon-doubleArrow'></span></a></span> <span class="credit"> <span ><a href="/list/author/130830" onclick="setMostIn();" >ארז ליבנה</a></span> </span> </span> </li> </ul> </div> </div> </div> <script> $('a[data-ajax="true"]').each(function (event) { var _this = $(this); _this.click(function (e) { e.preventDefault(); }) }); </script> </div> <div class="item"> <div id='div-gpt-ad-Article_300x250_1'><script type='text/javascript'>googletag.cmd.push(function () { googletag.display('div-gpt-ad-Article_300x250_1'); });</script></div> </div> <div class="item backgrounded biz-tv-left"> <div class="title-bar"> <span class="icon icon-video"></span><span class="icon icon-bizTV"></span> <div class="bx-controls bx-has-controls-direction bx-has-pager"> <span class="icon-arrow-right bx-prev disabled" id="bx-prev" onclick="googleAnalyticsElemClick('New Home Page', 'prev button', 'biztv small cube')"></span> <div class="bx-pager bx-custom-pager"> <div class="bx-pager-item" data-slide-index="0"><span class="bx-pager-link icon-dot active" onclick="googleAnalyticsElemClick('New Home Page', 'page 1 button', 'biztv small cube')"><span class="hidden-link-text">1</span></span></div> <div class="bx-pager-item" data-slide-index="1"><span class="bx-pager-link icon-dot" onclick="googleAnalyticsElemClick('New Home Page', 'page 2 button', 'biztv small cube')"><span class="hidden-link-text">2</span></span></div> <div class="bx-pager-item" data-slide-index="2"><span class="bx-pager-link icon-dot" onclick="googleAnalyticsElemClick('New Home Page', 'page 3 button', 'biztv small cube')"><span class="hidden-link-text">3</span></span></div> </div> <span class="icon-arrow-left bx-next" id="bx-next" onclick="googleAnalyticsElemClick('New Home Page', 'next button', 'biztv small cube')"></span> </div> </div> <ul id="biz-tv-cubes"> <li class="slider-item" onclick="bizTVLeft.playVideo(this,1, 0)" id="780740" data-video-url="https://player.bizportal.co.il/JWplayer.html?bizVideoId=2190"> <iframe allow="autoplay" allowtransparency="true" allowfullscreen frameborder="0" align="middle" scrolling="no" id="tv_bfr" width="100%" src="about:blank" marginheight="0" marginwidth="0"></iframe> <figure> <i class="icon-play icon-play-over-image"></i> <img src="https://img.bizportal.co.il/giflib/news/rsPhoto/sz_212/rsz_333_185_iStock_241019_2.jpg" alt="מסחר בבורסה בימי הקורונה" border="0" title="משקיע, צילום: Istock" /> <figcaption> <a class="text-over-image" href="https://www.bizportal.co.il/capitalmarket/news/article/780740" onclick="googleAnalyticsElemClick('New Article Page','BizTV Left','780740');event.cancelBubble=true;">מסחר בבורסה בימי הקורונה</a> </figcaption> </figure> </li> <li class="slider-item" onclick="bizTVLeft.playVideo(this,1, 0)" id="778422" data-video-url="https://player.bizportal.co.il/JWplayer.html?bizVideoId=2191"> <iframe allow="autoplay" allowtransparency="true" allowfullscreen frameborder="0" align="middle" scrolling="no" id="tv_bfr" width="100%" src="about:blank" marginheight="0" marginwidth="0"></iframe> <figure> <i class="icon-play icon-play-over-image"></i> <img src="https://img.bizportal.co.il/giflib/news/rsPhoto/sz_209/rsz_333_185_WhatsApp Image 2019-08-07 at 12.09.11.jpeg" alt="הבלוף הגדול של חברות הליסינג - חלק שני" border="0" title="רכבים מיובאים, צילום: istock" /> <figcaption> <a class="text-over-image" href="https://www.bizportal.co.il/marketopionion/news/article/778422" onclick="googleAnalyticsElemClick('New Article Page','BizTV Left','778422');event.cancelBubble=true;">הבלוף הגדול של חברות הליסינג - חלק שני</a> </figcaption> </figure> </li> <li class="slider-item" onclick="bizTVLeft.playVideo(this,1, 0)" id="778411" data-video-url="https://player.bizportal.co.il/JWplayer.html?bizVideoId=2189"> <iframe allow="autoplay" allowtransparency="true" allowfullscreen frameborder="0" align="middle" scrolling="no" id="tv_bfr" width="100%" src="about:blank" marginheight="0" marginwidth="0"></iframe> <figure> <i class="icon-play icon-play-over-image"></i> <img src="https://img.bizportal.co.il/giflib/news/rsPhoto/sz_198/rsz_333_185_building_241218.jpg" alt="איך משפיעה הקורונה על מחירי הדירות?" border="0" title="בנייה חדשה, צילום: מורן ישעיהו" /> <figcaption> <a class="text-over-image" href="https://www.bizportal.co.il/realestates/news/article/778411" onclick="googleAnalyticsElemClick('New Article Page','BizTV Left','778411');event.cancelBubble=true;">איך משפיעה הקורונה על מחירי הדירות?</a> </figcaption> </figure> </li> </ul> </div> <div class="item"> <div id='div-gpt-ad-Article_300x250_2'><script type='text/javascript'>googletag.cmd.push(function () { googletag.display('div-gpt-ad-Article_300x250_2'); });</script></div> </div> </article> </section> <script> var articleID = "780987"; var isVideoArticle = "False" == "False" ? false : true; </script> <link rel="stylesheet" href="/dist/article.css?version=100" cache /> <script src="/dist/article.js?version=100"></script> </div> <header class="scrolled"> <div class="brand-container"> <div class="container"> <div class="buttons"> <a class="button-link bg" href="/Registration">הרשם</a> <a class="button-link" onclick="tryLogin()" href="javascript:logout();">התחבר</a> </div> <a href="/" class="navbar-brand icon-mainLogo" onclick="googleAnalyticsElemClick('New Home Page','Header','Main Logo')"><span class="hidden-link-text">Bizportal</span></a> <div class="search-button"> <div class="share-buttons"> <a href="https://www.facebook.com/BizportalPage/" class="facebook-link" target="_blank"><span class="hidden-link-text"></span><span class="icon icon-facebook"></span></a> </div> <i class="icon-search"></i> </div> </div> </div> <div class="navbar menu-container navbar-toggleable-md"> <div class="container"> <a href="/" class="navbar-brand icon-mainLogo"><span class="hidden-link-text">Bizportal</span></a> <div class="navbar-header"> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarToggler" aria-controls="navbarToggler" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> </div> <div class="collapse navbar-collapse" id="navbarToggler"> <ul class="navbar-nav float-right mt-2 mt-lg-0 main-navigation"> <li class="nav-item dropdown"> <a href="javascript:void(0);" class="nav-link dropdown-toggle" id="cmDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="text">שוק ההון</span><i class="icon-dropMenu" aria-hidden="true"></i></a> <div class="dropdown-menu" aria-labelledby="cmDropdownMenuLink"> <div class="mador"> <a class="dropdown-item" href="/capitalmarket" title="שוק ההון"><span class="text">תל אביב</span></a> <a class="dropdown-item" href="/globalmarkets">שווקים גלובליים</a> <a class="dropdown-item" href="https://www.bizportal.co.il/shukhahon/nigzarim.shtml">אופציות/נגזרים</a> <a class="dropdown-item" href="/bonds">אג&quot;ח </a> </div> <div class="mador"> <a class="dropdown-item" href="/gazandoil">גז-נפט</a> <a class="dropdown-item" href="/biomed">ביומד</a> <a class="dropdown-item" href="/longtermsavings">חסכון ארוך טווח</a> <a class="dropdown-item" href="/mutualfunds">קרנות</a> </div> </div> </li> <li class="nav-item dropdown"> <a href="javascript:void(0);" title="נתוני מסחר" class="nav-link dropdown-toggle" id="tdDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="text">נתוני מסחר</span><i class="icon-dropMenu" aria-hidden="true"></i></a> <div class="dropdown-menu" aria-labelledby="tdDropdownMenuLink"> <div class="mador"> <h4 class="dropdown-item">תל אביב</h4> <a class="dropdown-item" href="/tradedata/stockindices">מדדי מניות</a> <a class="dropdown-item" href="/tradedata/bondindices">מדדי אגרות חוב</a> <a class="dropdown-item" href="/tradedata/paperslist">נתוני מסחר כללי</a> <a class="dropdown-item" href="https://www.bizportal.co.il/shukhahon/sh_opt.shtml">נתוני אופציות</a> <a class="dropdown-item" href="/bonds/search">נתוני אג"חים</a> <a class="dropdown-item" href="/capitalmarket/tools/fastview">מבט מהיר</a> <a class="dropdown-item" href="/publictrustindices">מדדי אמון הציבור</a> </div> <div class="mador"> <h4 class="dropdown-item">חו"ל</h4> <a class="dropdown-item" href="/tradedata/arbitrage">מניות ארביטראז'</a> <a class="dropdown-item" href="/tradedata/israelinessabroad">ישראליות בחו"ל</a> <a class="dropdown-item" href="/capitalmarket/indices/indexcomposition/11111027">מניות מדד נאסד"ק 100</a> <a class="dropdown-item" href="/capitalmarket/indices/indexcomposition/11111024">מניות מדד דאו ג'ונס</a> <a class="dropdown-item" href="/capitalmarket/indices/indexcomposition/11111026">מניות מדד ה-S&P 500</a> <a class="dropdown-item" href="http://wallstreet.bizportal.co.il/todaymovers.php">הבולטות היום בוול סטריט</a> <a class="dropdown-item" href="http://wallstreet.bizportal.co.il/etfhome.php">וול סטריט ETF </a> </div> </div> </li> <li class="nav-item dropdown"> <a title="כלים למשקיע" href="javascript:void(0);" class="nav-link dropdown-toggle" id="itDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="text">כלים למשקיע</span><i class="icon-dropMenu" aria-hidden="true"></i></a> <div class="dropdown-menu" aria-labelledby="itDropdownMenuLink"> <div class="mador"> <a class="dropdown-item" href="/capitalmarket/dividendslist">תחזית ארועים</a> <a class="dropdown-item" href="/analystsRecommendations">המלצות אנליסטים</a> <a class="dropdown-item" href="/capitalmarket/indices/performance/33383333">מדד המחירים לצרכן</a> <a class="dropdown-item" href="/tradedata/heatmap">ביז מאפ</a> <a class="dropdown-item" href="https://tools.bizportal.co.il/TerminalTrial" target="_blank">טרמינל</a> <a class="dropdown-item" href="https://www.bizportal.co.il/Login?returnURL=https://www.bizportal.co.il/redesigned/InvestorsClub">קהילת המשקיעים</a> <a class="dropdown-item" href="/investorslinks">קשרי משקיעים</a> </div> <div class="mador"> <a class="dropdown-item" href="/list/bursamessages">הודעות בורסה</a> <a class="dropdown-item" href="/capitalmarket/stakeholderstraffic">תנועות בעלי עניין</a> <a class="dropdown-item" href="/capitalmarket/tools/economicindicators">מדדים למצב השוק</a> <a class="dropdown-item" href="/conferences/news">כנסים וועידות</a> <a class="dropdown-item" href="https://rasham.bizportal.co.il" target="_blank">רשם החברות</a> <a class="dropdown-item" href="/section/pipelbiz">השקעות המונים</a> </div> </div> </li> <li class="nav-item bitcoin"> <a class="nav-link" href="/forex"><span class="text">מט"ח</span></a> </li> <li class="nav-item dropdown"> <a href="/realestates" title="נדל&quot;ן" class="nav-link dropdown-toggle" id="reDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="text">נדל&quot;ן</span><i class="icon-dropMenu" aria-hidden="true"></i></a> <div class="dropdown-menu" aria-labelledby="reDropdownMenuLink"> <div class="mador"> <a class="dropdown-item" href="/realestates/news">חדשות נדל"ן</a> <a class="dropdown-item" href="/capitalmarket/indices/performance/1340">מדד תשומות הבנייה</a> <a class="dropdown-item" href="/realestatecenter">מרכז הנדל"ן</a> <a class="dropdown-item" href="/commercialrealestate">נדל"ן מסחרי</a> </div> </div> </li> <li class="nav-item"> <a class="nav-link" href="https://www.bursagraph.co.il/index.shtml" target="_blank">ניתוח טכני</a> </li> <li class="nav-item"> <style> .navbar .navbar-nav .nav-link.red-colored{color: #FA1A00;font-family:Heebo-Medium;} .navbar .navbar-nav .nav-link.red-colored:hover{text-shadow: 1px 1px 5px rgba(250,26,0,0.7);} .navbar .navbar-nav .nav-link .green-colored{color: #2cbb0a;font-family:Heebo-Medium;} .navbar .navbar-nav .nav-link.white-colored{padding-right: 30px;} .navbar .navbar-nav .white-colored:hover{color:#ffffff!important;} </style> </li> <li class="nav-item"> <a class="nav-link red-colored" href="/globalmarkets/news/article/775799"><img src="https://img.bizportal.co.il/giflib/ads/korona.png" /> וירוס קורונה</a> </li> <li class="nav-item"> <a class="nav-link white-colored" href="/capitalmarket/news/article/767700"><span class="green-colored">טבע</span><span class="green-colored">: בעד ונגד</span></a> </li> </ul> <ul class="navbar-nav mr-auto mt-2 mt-lg-0 float-left iconed-menu"> <li class="nav-item hidden-on-scroll"> <a class="nav-link red-mail" href="/Contact/Mail?name=redmail"><span class="icon icon-redMail"></span><span class="text">דואר אדום</span></a> </li> <li class="nav-item hidden-on-scroll"> <a class="nav-link" href="/Portfolio/AllPapers"><span class="icon icon-case"></span><span class="text">אזור אישי</span></a> </li> </ul> </div> </div> </div> </header> <div id="search-shadow"></div> <div id="search-modal-window"> <div class="search-modal"> <div class="modal-header"> <div class="search-logo"><a href="/" class="icon-mainLogo"><span class="hidden-link-text">Bizportal</span></a></div> <div class="search-close"><i class="icon-close"></i></div> </div> <div class="content"> <form class="form-inline my-2 my-lg-0" id="biz-search"> <label for="top-searchbox-input" class="hidden-link-text">חפש באתר:</label> <input class="form-control mr-sm-2 search-top searchbox" id="top-searchbox-input" type="text" placeholder="חפש ניירות ערך" autocomplete="off"> <a class="icon" href="javascript:void(0)" onclick="googleAnalyticsElemClick('New Home Page','Header','Search papers')"><span class="icon-search "></span><span class="hidden-link-text">חפש</span></a> <style> .searchbox-container { display: none; } </style> <div class="searchbox-container"> <div class="searchbox-dropdown"></div> </div> </form> <form class="form-inline my-2 my-lg-0 articles-searchbox-container" id="zoomd-search" onSubmit="return false;"> <label for="articles-searchbox" class="hidden-link-text">חפש באתר:</label> <input class="form-control mr-sm-2 search-top" id="articles-searchbox" type="text" autocomplete="off" min="2" placeholder="חפש כתבות"> <a class="icon" href="javascript:void(0)" onclick=""><span class="icon-search"></span><span class="hidden-link-text">חפש</span></a> <style> .articles-searchbox-container .searchbox-dropdown { display: none; } </style> <ul class="searchbox-dropdown"></ul> </form> <div class="search-radios"> <span class="papers" onclick="menuNavBar.changeRadio(this)"><span class="icon icon-radio-checked"></span>חיפוש ני"ע</span> <span class="articles" onclick="menuNavBar.changeRadio(this)"><span class="icon icon-radio-unchecked"></span>חיפוש כתבות</span> </div> </div> </div> </div> <footer> <section class="main-footer"> <article class="container"> <div class="item footer-start"> <ul class="list-inline"> <li class="list-inline-item padding-right-0"><a href="/">דף הבית</a></li> <li class="list-inline-item"><a href="/about">אודותינו</a></li> <li class="list-inline-item"><a href="/general/terms">תנאי שימוש</a></li> <li class="list-inline-item"><a href="/contact/mail">צור קשר</a></li> <li class="list-inline-item"><a href="/general/privacypolicy">מדיניות פרטיות</a></li> </ul> </div> </article> <article id="footer" class="footer"> <div class="item footer-body"> <div class="container"> <div class="row"> <div class="col-sm-12 col-lg-8 col-xl-9 left-border"> <div class="row"> <div class="col-sm-12 col-lg-6 col-xl-3 first"> <div class="item"> <span class="heading"><i class="icon-footerArrow heading-icon" aria-hidden="true"></i><span class="big-white">מדורים</span><span class="big-blue">באתר</span></span> </div> <div class="item"> <a href="/realestates">נדל"ן</a> </div> <div class="item"> <a href="https://www.bizportal.co.il/shukhahon/nigzarim.shtml">אופציות</a> </div> <div class="item"> <a href="/bonds">אג”ח</a> </div> <div class="item"> <a href="/forex">מט"ח</a> </div> <div class="item"> <a href="/mutualfunds">קרנות</a> </div> <div class="item"> <a href="/longtermsavings">חסכון ארוך טווח</a> </div> <div class="item"> <a href="/globalmarkets">שווקים גלובליים</a> </div> <div class="item"> <a href="/capitalmarket/stakeholderstraffic">תנועות בעלי עניין</a> </div> <div class="item"> <a href="/capitalmarket/tools/economicindicators">מדדים למצב השוק</a> </div> <div class="item"> <a href="/video">BizTV</a> </div> <div class="item"> <a href="/car">רכב</a> </div> <div class="item last"> <a href="/digital-currency">מטבעות דיגיטליים</a> </div> </div> <div class="col-sm-12 col-lg-6 col-xl-3"> <div class="item"> <span class="big-white heading"><i class="icon-footerArrow heading-icon" aria-hidden="true"></i>כללי</span> </div> <div class="item"> <a href="/tradedata/tagslistshow">תגיות חמות</a> </div> <div class="item"> <a href="/Portfolio/AllPapers">אזור אישי</a> </div> <div class="item"> <a href="/list/bursamessages">הודעות בורסה</a> </div> <div class="item"> <a href="/marketopionion/news">סקירות</a> </div> <div class="item"> <a href="/MarketingAndAdvertising">תקשורת</a> </div> <div class="item"> <a href="/analystsRecommendations">המלצות אנליסטים</a> </div> <div class="item"> <a href="/list/articles/0">ארכיון חדשות</a> </div> <div class="item"> <a href="https://www.bizportal.co.il/shukhahon/bizasefot_clali.shtml">אסיפות</a> </div> <div class="item"> <a href="/forex/quote/generalview/20001">שער הדולר</a> </div> <div class="item"> <a href="/forex/quote/generalview/300027">שער האירו</a> </div> <div class="item"> <a href="/general/closingInstructions">הוראות סגירה</a> </div> <div class="item last"> <a href="/general/news/page-1">חדשות ורץ ברשת</a> </div> </div> <div class="col-sm-12 col-lg-6 col-xl-3"> <div class="item"> <span class="heading"><i class="icon-footerArrow heading-icon" aria-hidden="true"></i><span class="big-white">כל</span><span class="big-blue">השווקים</span></span> </div> <div class="item"> <a href="/tradedata/israelinessabroad">ישראליות בחו"ל</a> </div> <div class="item"> <a href="/capitalmarket/indices/generalview/11111027">מדד נאסד"ק</a> </div> <div class="item"> <a href="/capitalmarket/indices/generalview/11111024">מדד דאו ג'ונס</a> </div> <div class="item"> <a href="/capitalmarket/indices/generalview/11111026">מדד 500 S&P</a> </div> <div class="item"> <a href="http://wallstreet.bizportal.co.il/etfhome.php" target="_blank">תעודות סל ETF</a> </div> <div class="item"> <a href="https://www.bizportal.co.il/shukhahon/biznoch_fl.shtml"><span class="link-text">קבצי אקסל</span></a> </div> <div class="item last"> <a href="/tradedata/arbitrage">מניות ארביטראז'</a> <span class="last"></span> </div> <div class="item"> <span class="heading"><i class="icon-footerArrow heading-icon" aria-hidden="true"></i><span class="big-white">כל</span><span class="big-blue">השירותים</span></span> </div> <div class="item repos-ref"> <a href="//tools.bizportal.co.il/TerminalTrial" target="_blank">תוכנת Terminal Bizportal</a> </div> <div class="item"> <a href="http://bursagraph.co.il/download.shtml" target="_blank">תוכנת בורסה גרף</a> </div> <div class="item repos-ref"> <a href="http://www.mybusiness.co.il" target="_blank">MyBusiness CRM – ניהול קשרי לקוחות</a> </div> <div class="item last repos-ref"> <a href="https://www.mybooks.co.il" target="_blank">Mybooks – חשבונית דיגיטלית</a> </div> </div> <div class="col-sm-12 col-lg-6 col-xl-3 services"> <div class="item"> <span class="heading"> <i class="icon-footerArrow heading-icon" aria-hidden="true"></i><span class="big-white">כל</span><span class="big-blue">השירותים</span><span class="big-blue-slim">(המשך)</span> </span> </div> <div class="item repos-ref"> <a href="/tradedata/heatmap">BizMap</a> </div> <div class="item repos-ref"> <a href="http://tradeit.bizportal.co.il" target="_blank">מסחר עצמאי</a> </div> <div class="item repos-ref"> <a href="https://rasham.bizportal.co.il" target="_blank">רשם החברות</a> </div> <div class="item repos-ref"> <a href="https://www.directscore.co.il" target="_blank">דירוג ישיר</a> </div> <div class="item repos-ref"> <a href="http://www.askpavel.co.il" target="_blank" title="קידום אתרים אורגני">קידום אתרים אורגני</a> </div> <div class="item last repos-ref"> <a href="http://www.kavmanche.co.il" target="_blank">אתר קו מנחה</a> </div> <div class="item"> <span class="heading"><i class="icon-footerArrow heading-icon" aria-hidden="true"></i><span class="big-white">טאבו</span><span class="big-blue">ישיר</span></span> </div> <div class="item repos-ref"> <a href="http://home.tabu.co.il/%D7%93%D7%A4%D7%99-%D7%9E%D7%95%D7%A6%D7%A8/%D7%A0%D7%A1%D7%97-%D7%98%D7%90%D7%91%D7%95.aspx" target="_blank"><span class="link-text">הפקת נסח טאבו</span></a> </div> <div class="item repos-ref"> <a href="http://home.tabu.co.il/%D7%93%D7%A4%D7%99-%D7%9E%D7%95%D7%A6%D7%A8/%D7%A0%D7%A1%D7%97-%D7%98%D7%90%D7%91%D7%95-%D7%9C%D7%A4%D7%99-%D7%9B%D7%AA%D7%95%D7%91%D7%AA.aspx" target="_blank">הפקת נסח טאבו לפי כתובת</a> </div> <div class="item repos-ref"> <a href="http://home.tabu.co.il/%D7%93%D7%A4%D7%99-%D7%9E%D7%95%D7%A6%D7%A8/%D7%93%D7%95%D7%97-%D7%A0%D7%9B%D7%A1%D7%99%D7%9D-%D7%9C%D7%A4%D7%99-%D7%AA%D7%96.aspx" target="_blank">דוח נכסים לפי ת.ז</a> </div> <div class="item repos-ref"> <a href="http://home.tabu.co.il/%D7%93%D7%A4%D7%99-%D7%9E%D7%95%D7%A6%D7%A8/%D7%A8%D7%A9%D7%9D-%D7%94%D7%9E%D7%A9%D7%9B%D7%95%D7%A0%D7%95%D7%AA-%D7%A9%D7%99%D7%A2%D7%91%D7%95%D7%93-%D7%A8%D7%9B%D7%91.aspx" target="_blank">בדיקת שיעבוד רכב</a> </div> <div class="item repos-ref"> <a href="http://home.tabu.co.il/%D7%93%D7%A4%D7%99-%D7%9E%D7%95%D7%A6%D7%A8/%D7%90%D7%99%D7%AA%D7%95%D7%A8-%D7%9B%D7%AA%D7%95%D7%91%D7%AA-(%D7%9E%D7%A2%D7%9F).aspx" target="_blank">איתור כתובת (מען)</a> </div> <div class="item last repos-ref"> <a href="https://www.checkid.co.il/" target="_blank" rel="nofollow">איתור חברה</a> </div> </div> </div> </div> <div class="col-sm-12 col-lg-4 col-xl-3 form"> <div class="item"> <span class="heading"><i class="icon-footerArrow heading-icon" aria-hidden="true"></i><span class="big-white">הורדת</span><span class="big-blue">אפליקציה</span></span> </div> <div class="item"> <div class="images"> <a href="https://play.google.com/store/apps/details?id=com.bizportal" target="_blank"><span class="sprite google-play"></span><span class="hidden-link-text">הורדת אפליקציה אנדרויד</span></a> <a href="https://itunes.apple.com/il/app/bizportal-byzpwrtl/id382609613" target="_blank"><span class="sprite app-store"></span><span class="hidden-link-text">הורדת אפליקציה אייפון</span></a> </div> </div> <div class="item newsletter-register" id="footer-newsletters-form"> <span class="heading"><span class="big-white">הרשמה</span><span class="big-blue">לדיוור</span></span> <span id="register">הירשם לסיכום היומי של שוק ההון ולמבזקים של<br /> ביזפורטל - ניוזלטרים חובה לכל משקיע</span> <input type="text" name="newEmail" id="FooterNewEmailInput" placeholder="הזן את הדוא&quot;ל שלך " /> <input type="button" value="שלח" id="FooterSaveNewEmail" /> <span class="news-confirm"> <span id="news-letter"> <input type="checkbox" id="FooternewsletterValidate" /> </span> <span class="newsletter-register-label-footer small-pale-blue"> אני מאשר קבלת שני ניוזלטרים, אשר כל אחד מהווה רשימת תפוצה נפרדת, בנושאים סיכום יומי והתראות חמות וקבלת דיוורים פרסומיים בדואר אלקטרוני ו/ או באמצעות הסלולר בהתאם למפורט בסעיף 10 <a href="/general/terms#newsletters-part" target="_blank">בתנאי השימוש </a> </span> </span> <div id="response"></div> </div> <div class="item"> <span class="padding-top"></span> <span class="heading"><i class="icon-footerArrow heading-icon" aria-hidden="true"></i><span class="big-white">אנחנו</span><span class="big-blue">ברשת</span></span> </div> <div class="item"> <div class="add-this"> <div class="col-lg-12"> <a href="https://plus.google.com/+bizportal" class="google-link" target="_blank"><span class="hidden-link-text"></span><span class="icon icon-google"></span></a> <a href="https://www.facebook.com/BizportalPage" class="facebook-link" target="_blank"><span class="hidden-link-text"></span><span class="icon icon-facebook"></span></a> <a href="https://twitter.com/bizportalnews?lang=en" class="tw-link" target="_blank"><span class="hidden-link-text"></span><span class="icon icon-tw"></span></a> </div> </div> </div> </div> </div> </div> </div> <div class="item last-item"> <div class="container"> <div class="row"> <div class="col-lg-9"> <a href="/" class="icon-mainLogo"><span class="hidden-link-text">Bizportal</span></a> <span class="all-rights"> © כל הזכויות שמורות לחברת ביזפורטל בע"מ מקבוצת קו מנחה</span> <span class="all-rights">&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;</span> <span class="all-rights"><a target="_blank" href="/general/terms">תנאי שימוש</a></span> </div> <div class="col-lg-3"> <div class="design-logo"> <a class="ui-design" target="_blank" href="http://www.freelancerim.co.il/Freelancers/PublicProfile/dimakordun">UI & design by DK</a> </div> </div> </div> </div> </div> </article> </section> <div id="newBottomArticle" class="breakingArticleContainer bottom" data-latest-id="780987"> <div class="newArticle"> <a class="articleContainer" href="#" onclick="breakingOrNewArticle.clickOnArticle()" target="_blank"> <span class="newsArticleIcon">כתבה <br /> חדשה</span><span class="articleContent"></span> </a> </div> </div> </footer> <script> var currPage = 'Article'; var isMobile = 'False' == 'True' ? true : false; var isDFPEnabled = 'True' == 'True' ? true : false; </script> <script type="text/javascript"> function initArticleImgDefer() { var imgDefer = document.getElementsByTagName('img'); for (var i = 0; i < imgDefer.length; i++) { if (imgDefer[i].getAttribute('data-src')) { imgDefer[i].setAttribute('src', imgDefer[i].getAttribute('data-src')); } } } if (currPage != 'Home') { window.onload = initArticleImgDefer; } </script> <script> if (isDFPEnabled) { gtag('config', 'AW-794196354'); } </script> <script type="text/javascript" async="async" src="//widgets.outbrain.com/outbrain.js"></script> <script defer> function downloadJSAtOnload() { var srcJS = [ '//cdn.enable.co.il/licenses/enable-L1584rd4up7f32m-0318-3566/init.js' ]; for (var i = 0; i < srcJS.length; i++) { var element = document.createElement("script"); element.src = srcJS[i]; document.body.appendChild(element); } } if (window.addEventListener) window.addEventListener("load", downloadJSAtOnload, false); else if (window.attachEvent) window.attachEvent("onload", downloadJSAtOnload); else window.onload = downloadJSAtOnload; </script> <script> (function(h,o,t,j,a,r){ h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)}; h._hjSettings={hjid:687337,hjsv:6}; a=o.getElementsByTagName('head')[0]; r=o.createElement('script');r.async=1; r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv; a.appendChild(r); })(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv='); </script> <style> #enable-toolbar-trigger .keyboard-shorcut { display: none } @media(min-width:1200px) { #enable-toolbar-trigger { top: -2px !important } #enable-toolbar-trigger svg { width: 60px; height: 45px } } </style> <div id="goToUp" class="hidden"> <div class="icon-up black"></div> <div class="text black">לראש <br />העמוד</div> </div> <script> function closePremiumTool() { if (typeof PremiumDFPAd == 'undefined' || PremiumDFPAd == null) { return; } if (typeof googletag == 'undefined' || googletag == null) { return; } googletag.pubads().refresh([PremiumDFPAd]); } </script> </body> </html>
Match async OR defer in html page
2020-06-16T17:35:38.000Z
RJ.currentMP3 = \'([\w\\\/-]+)'
</div> </div> </div> </div> </section> <script> RJ.currentMP3Url = 'mp3/Arian-Band-To-Ke-Ba-Man-Baashi'; RJ.currentMP3 = '40008'; RJ.currentMP3Type = 'mp3'; RJ.playingIndex = '0'; RJ.currentMP3Perm = 'Arian-Band-To-Ke-Ba-Man-Baashi'; RJ.currentAlbum = null; RJ.currentPlaylist = null; RJ.relatedMP3 = [{"next":"Arian-Band-To-Ke-Ba-Man-Baashi","index":0},{"next":"Arian-Band-Bargard","index":1},{"next":"Arian-Band-Bishtar","index":2},{"next":"Arian-Band-Deltangiha","index":3},{"next":"Arian-Band-Faseleh","index":4},{"next":"Arian-Band-Delam-Barat-Tang-Shodeh","index":5},{"next":"Arian-Band-To-Moondi-o-Man","index":6},{"next":"Arian-Band-Nemidoonam","index":7},{"next":"Arian-Band-Baade-To","index":8},{"next":"Arian-Band-Too-Cheshaye-Man-Negah-Kon","index":9},{"next":"Arian-Band-Ta-Abaad","index":10},{"next":"Arian-Band-Gole-Man","index":11},{"next":"Arian-Band-Parvaz","index":12},{"next":"Arian-Band-Gole-Aftab-Gardoon","index":13},{"next":"Arian-Band-Parvaz-(Club-Mix)","index":14},{"next":"Arian-Band-Ghasedak","index":15},{"next":"Arian-Band-Baroon","index":16},{"next":"Arian-Band-Panjereh","index":17},{"next":"Arian-Band-Setareh","index":18},{"next":"Arian-Band-Ey-Javidan-Iran","index":19},{"next":"Arian-Band-Tab","index":20},{"next":"Arian-Band-Gole-Hamishe-Bahar","index":21},{"next":"Arian-Band-Afsoongar","index":22},{"next":"Arian-Band-Iran","index":23},{"next":"Arian-Band-The-Words-I-Love-You-(Feat-Chris-de-Burgh)","index":24},{"next":"Arian-Band-Bi-To-Ba-To","index":25},{"next":"Arian-Band-Aroom-Aroom","index":26},{"next":"Arian-Band-Lahzeh-ha","index":27},{"next":"Arian-Band-Bahooneh","index":28},{"next":"Arian-Band-Na-Mehraboon","index":29},{"next":"Arian-Band-Farda-Male-Mast","index":30}]; RJ.nextMp3Base = '/mp3s/mp3/'; RJ.nextMp3AlbumBase = '/mp3s/album/'; RJ.playerVolume = 75; setupMP3Ping(); </script>
RDJ: MP3 ID
2018-07-13T14:15:52.000Z
/\b([^aeiou\s]+)\b/ig
\b([^aeiou\s]+)\b
a b c d e f g h i j k l m n o p q r s t u v w x y z A B C D E F G H I J K L M N O P Q R S T U V W X Y Z stale egg bunnul f dfdfdfdf bfbgfgf gbvcb bvvb v bnbv b'sfgr2345092374 hjjjio 1234ABNGH 23123ibnnbiuysd i aaaaaaaaaaaaaaaaaa
Non vowel words
2015-12-29T19:32:35.000Z
I am trying to capture from HP OO SSH shell operation, basicall it will run the commands what we send from HP OO and this operation expects return output to send next command. I am trying to send command gtacl and next command is LOGON username, OO expects to match string to send another command, the expected output is TACL 1> and i trying to use regex as ^TACL\s\d>, it is working in regex site but it is falling in OO tool, can you please suggest some thing.
(>)
TACL 1>
HP OO Shell OPeration
2015-04-25T11:48:05.000Z
\b(?:(?:https?|ftp):\/\/)?(?:\S+(?::\S*)?@)?(?:(?!(?:10|127)(?:\.\d{1,3}){3})(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z\u00a1-\uffff0-9]-*)*[a-z\u00a1-\uffff0-9]+)(?:\.(?:[a-z\u00a1-\uffff0-9]-*)*[a-z\u00a1-\uffff0-9]+)*(?:\.(?:com|org|net|int|edu|gov|mil|arpa|biz|info|mobi|app|name|aero|jobs|museum|travel|a[c-gil-oq-uwxz]|b[abd-jmnoq-tvwyz]|c[acdf-ik-orsu-z]|d[dejkmoz]|e[ceghr-u]|f[ijkmor]|g[abd-ilmnp-uwy]|h[kmnrtu]|i[delmnoq-t]|j[emop]|k[eghimnprwyz]|l[abcikr-vy]|m[acdeghk-z]|n[acefgilopruz]|om|p[ae-hk-nrstwy]|qa|r[eosuw]|s[a-eg-or-vxyz]|t[cdfghj-prtvwz]|u[agksyz]|v[aceginu]|w[fs]|y[etu]|z[amrw]|الجزائر|հայ|বাংলা|бел|бг|中国|中國|مصر|გე|ελ|香港|भारत|بھارت|భారత్|ભારત|ਭਾਰਤ|இந்தியா|ভারত|ایران|عراق|الاردن|қаз|澳门|澳門|мкд|مليسيا|мон|المغرب|عمان|پاکستان|فلسطين|قطر|рф|السعودية|срб|新加坡|சிங்கப்பூர்|한국|ලංකා|இலங்கை|سودان|سورية|台湾|台灣|ไทย|تونس|укр|امارات|اليمن)))(?::\d{2,5})?(?:\/\S*)?\b
http://www.answers.com/article/1194427/8-habits-of-extraordinarily-likeable-people http://www.apple.com http://www.cnn.com.au http://downloads.news.com.au http://ftp.android.co.nz http://web.dev.laterooms.com.au:1234/ http://global.news.ca http://www.apple.com http://www.apple.com:12342 localhost:1234 127.0.0.1:123
Ultimate url regex
2015-04-07T17:37:10.000Z
<a href="([^"]+)" >(?:\s+)<img src="([^"]+)\"(?:\s.*).+?(?:\s.*)alt="([^"]+)"
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns="http://www.w3.org/1999/html"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta name="msvalidate.01" content="7198395454E8014E0B82A087701FE16B" /> <meta name="description" content=""/> <meta name="keywords" content="" /> <meta name="Rating" content="mature"> <meta name="RATING" content="RTA-5042-1996-1400-1577-RTA" /> <title>Chaturbate - Free Adult Webcams, Live Sex, Free Sex Chat, Exhibitionist &amp; Pornstar Free Cams</title> <link rel="alternate" type="application/rss+xml" title="Featured Cams RSS Feed for Chaturbate" href="http://chaturbate.com/feed/latest/" /> <link rel="stylesheet" href="http://static.highwebmedia.com/CACHE/css/3333b43df1bc.css" type="text/css" /><link rel="stylesheet" href="http://static.highwebmedia.com/CACHE/css/69d2f04626f0.css" type="text/css" media="all" /> <style> #id_emoticon_autocomplete_delay, label[for=id_emoticon_autocomplete_delay] { display: none; } </style> <link rel="canonical" href="/" /> </head> <body onload="sevenUp.plugin.black.test({ showToAllBrowsers: false }, false);"> <div id="header"> <div class="ad"> <iframe src="http://serve.ads.chaturbate.com/u?zone_id=19&uid=333248787432" height="60" width="468" frameborder="0" padding="0" border="0" scrolling="no"></iframe> </div> <div class="section"> <div class="logo-zone"> <strong class="logo"><a href="/"></a></strong> <strong>THE ACT OF MASTURBATING WHILE CHATTING ONLINE</strong> </div> </div> <div class="nav-bar"> <ul id="nav"> <li><a href="/">CHAT ROOMS</a></li> <li><a href="/accounts/register/">BROADCAST YOURSELF</a></li> <li><a href="/tags/">TAGS</a></li> <li><a href="https://www.ashleymadison.com/A112437" target="_blank" rel="nofollow" onclick="recordOutboundLink(this, 'Outbound Links', 'datingmenu bemybb');return false;">DATING</a></li> <li><a href="http://blog.chaturbate.com/">BLOG</a></li> <!--<li><a href="http://shop.chaturbate.com/">BUY GEAR</a></li>--> <li><a href="/tipping/free_tokens/">EARN FREE TOKENS</a></li> <li><a class="login-link" href="/auth/login/" class='nooverlay'>LOGIN</a></li> </ul> <a href="/accounts/register/" class="creat nooverlay">SIGN UP</a> </div> </div> <div id="main"> <div class="overlay" id="login-overlay" style="display:none"></div> <div class="login-box" id="login-box" style="display:none"> <a id="id_close_link" href="#" class="close"><img src="http://static.highwebmedia.com/images/close_icon.gif" alt="Close" width="30" height="30"/></a> <span class="pagename">Chaturbate Login</span> <h2>Please sign in using the form below</h2> <div id="login_inputs"> <form method='post' action='/auth/login/?next=/'> <input type='hidden' name='csrfmiddlewaretoken' value='aY5kg2xWF0bTbegZU4updtE3bBD5KOgN' /> <label for="id_username">Username:</label> <input id="id_username" maxlength="254" name="username" type="text" /> <label for="id_password">Password:</label> <input id="id_password" name="password" type="password" /> <label for="id_rememberme">Keep me logged in:</label> <input id="id_rememberme" name="rememberme" type="checkbox" /> <input type='submit' value='login' class="button"/> <input type='hidden' name='next' value='/'> </form> <hr> <p><a id="id_register_link" href="/accounts/register/" class='nooverlay'>Create Free Account</a></p> <p><a id="id_forgotpw_link" href='/auth/password_reset/' class='nooverlay'>Forgot password?</a></p> </div> </div> <div class="top-section"> <div class="advanced_search_button_shell"> <a class="advanced_search_button login-link" href="#">Advanced Options</a> <a class="hide_advanced_search_button" style="display:none;" href="#"> Hide Advanced Options</a> </div> <ul class="sub-nav"> <li class="active"><a href="/">FEATURED</a></li> <li ><a href="/female-cams/">FEMALE</a></li> <li ><a href="/male-cams/">MALE</a></li> <li ><a href="/couple-cams/">COUPLE</a></li> <li ><a href="/transsexual-cams/">TRANSSEXUAL</a></li> <li ><a href="/spy-on-cams/">PRIVATE SHOWS</a></li> </ul> </div> <div class="content"> <div class="clear"></div> <div class="ad top_tags"> <div id="top_hashtags"> <span id="trending_now_title">POPULAR TAGS</span> <div id="top_hashtag_list"> <div><a href="/tag/birthday/">#birthday</a></div> <div><a href="/tag/pussy/">#pussy</a></div> <div><a href="/tag/shower/">#shower</a></div> <div><a href="/tag/datass/">#datass</a></div> <div><a href="/tag/fuck/">#fuck</a></div> <div><a href="/tag/squirt/">#squirt</a></div> <div><a href="/tag/outdoor/">#outdoor</a></div> <div><a href="/tag/gym/">#gym</a></div> <div><a href="/tag/cum/">#cum</a></div> <div><a href="/tag/dildo/">#dildo</a></div> </div> <a id="more_hashtags" href="/tags/">MORE >></a> </div> </div> <div class="ad"> <div class="remove_ads"> <a href="/supporter/upgrade/"><img src="http://static.highwebmedia.com/images/close_icon.png" height="12" width="12" alt="Close"></a><a href="/supporter/upgrade/"> HIDE ALL ADS NOW</a> </div> <iframe src="http://serve.ads.chaturbate.com/u?zone_id=1&uid=333248787432" height="600" width="160" frameborder="0" padding="0" border="0" scrolling="no"></iframe> <p><a href="http://ads.chaturbate.com/">Advertise Here</a></p> <iframe src="http://serve.ads.chaturbate.com/u?zone_id=1&uid=333248787432" height="600" width="160" frameborder="0" padding="0" border="0" scrolling="no"></iframe> <p><a href="http://ads.chaturbate.com/">Advertise Here</a></p> </div> <div class="c-1 endless_page_template"> <div> <h2></h2> </div> <div class="searching-note" style="display:none"> <p>Searching for models matching your preferences...</p> </div> <div class="searching-keyword" style="display:none" > <p>Search results for ""</p> </div> <ul class="list"> <li> <a href="/sarasaenz/" > <img src="http://cdn-i.highwebmedia.com/roomimage/sarasaenz.jpg" width="180" height="148" alt="sarasaenz's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/sarasaenz/"> sarasaenz</a> <span class="age genderf">18</span> </div> <ul class="subject"> <li title="twitter:sarasaenz_/Fingering@799tks/CreamOnBody@299tks/BlowJob@599tks [573 tokens left]">twitter:sarasaenz_/fingering@799tks/creamonbody@299tks/blowjob@599tks [573 tokens left]</li> </ul> <ul class="sub-info"> <li class="cams">62 mins, 2568 viewers</li> </ul> </div> </li> <li> <a href="/69emmaadesex/" > <img src="http://cdn-i.highwebmedia.com/roomimage/69emmaadesex.jpg" width="180" height="148" alt="69emmaadesex's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/69emmaadesex/"> 69emmaadesex</a> <span class="age genderc">23</span> </div> <ul class="subject"> <li title="get us naked!Fuck show at goal :) [1370 tokens remaining]">get us naked!fuck show at goal :) [1370 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">37 mins, 1929 viewers</li> </ul> </div> </li> <li> <a href="/chroniclove/" > <img src="http://cdn-i.highwebmedia.com/roomimage/chroniclove.jpg" width="180" height="148" alt="chroniclove's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/chroniclove/"> chroniclove</a> <span class="age genderf">19</span> </div> <ul class="subject"> <li title="Shower show! Good morning!how much times can we hit the goal this morning;) #shower #datass [1 tokens remaining]">shower show! good morning!how much times can we hit the goal this morning;) <a href="/tag/shower/">#shower</a> <a href="/tag/datass/">#datass</a> [1 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">30 mins, 1552 viewers</li> </ul> </div> </li> <li> <a href="/youstinah/" > <img src="http://cdn-i.highwebmedia.com/roomimage/youstinah.jpg" width="180" height="148" alt="youstinah's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/youstinah/"> youstinah</a> <span class="age genderf">19</span> </div> <ul class="subject"> <li title="Hanging out">hanging out</li> </ul> <ul class="sub-info"> <li class="cams">117 mins, 1293 viewers</li> </ul> </div> </li> <li> <a href="/sweetsandee/" > <img src="http://cdn-i.highwebmedia.com/roomimage/sweetsandee.jpg" width="180" height="148" alt="sweetsandee's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_new">NEW</div> <div class="details"> <div class="title"> <a href= "/sweetsandee/"> sweetsandee</a> <span class="age genderf">22</span> </div> <ul class="subject"> <li title="Tips for more! xx [7 tokens remaining]">tips for more! xx [7 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">62 mins, 1436 viewers</li> </ul> </div> </li> <li> <a href="/doyouevenchaturbate/" > <img src="http://cdn-i.highwebmedia.com/roomimage/doyouevenchaturbate.jpg" width="180" height="148" alt="doyouevenchaturbate's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_exhibitionist">EXHIBITIONIST</div> <div class="details"> <div class="title"> <a href= "/doyouevenchaturbate/"> doyouevenchaturbate</a> <span class="age genderc">29</span> </div> <ul class="subject"> <li title=""></li> </ul> <ul class="sub-info"> <li class="cams">47 mins, 1156 viewers</li> </ul> </div> </li> <li> <a href="/amazinjess/" > <img src="http://cdn-i.highwebmedia.com/roomimage/amazinjess.jpg" width="180" height="148" alt="amazinjess's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/amazinjess/"> amazinjess</a> <span class="age genderf">25</span> </div> <ul class="subject"> <li title="Token Keno! Uncover prizes by tipping the numbers on the board. Clear the board to reach goal! Goal is: [naked]Type !b to see the board. Type !p to see available prizes.">token keno! uncover prizes by tipping the numbers on the board. clear the board to reach goal! goal is: [naked]type !b to see the board. type !p to see available prizes.</li> </ul> <ul class="sub-info"> <li class="cams">47 mins, 1018 viewers</li> </ul> </div> </li> <li> <a href="/yuribalbin/" > <img src="http://cdn-i.highwebmedia.com/roomimage/yuribalbin.jpg" width="180" height="148" alt="yuribalbin's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/yuribalbin/"> yuribalbin</a> <span class="age genderf">31</span> </div> <ul class="subject"> <li title="Token Keno! Uncover prizes by tipping the numbers on the board. Clear the board to reach goal! Goal is: [/ALL GUY PLAY KENO GET THE VIDEO OF TODAY INCLUDED SQUIRT SHOW AND ALL PRIZES OF KENO] Type !b to see the board. Type !p to see available prizes. MV">token keno! uncover prizes by tipping the numbers on the board. clear the board to reach goal! goal is: [/all guy play keno get the video of today included squirt show and all prizes of keno] type !b to see the board. type !p to see available prizes. mv</li> </ul> <ul class="sub-info"> <li class="cams">104 mins, 867 viewers</li> </ul> </div> </li> <li> <a href="/awesomesexparty/" > <img src="http://cdn-i.highwebmedia.com/roomimage/awesomesexparty.jpg" width="180" height="148" alt="awesomesexparty's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/awesomesexparty/"> awesomesexparty</a> <span class="age genderc">39</span> </div> <ul class="subject"> <li title="suck cock 30, fuck 60 .. 200 cum.... 200 DP fuck with another boy [205 tokens remaining]">suck cock 30, fuck 60 .. 200 cum.... 200 dp fuck with another boy [205 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">17 mins, 1013 viewers</li> </ul> </div> </li> <li> <a href="/easygoing1/" > <img src="http://cdn-i.highwebmedia.com/roomimage/easygoing1.jpg" width="180" height="148" alt="easygoing1's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/easygoing1/"> easygoing1</a> <span class="age genderf">20</span> </div> <ul class="subject"> <li title="Battleship- 25tkn to fire a missile. Type /board to see the current board.">battleship- 25tkn to fire a missile. type /board to see the current board.</li> </ul> <ul class="sub-info"> <li class="cams">74 mins, 716 viewers</li> </ul> </div> </li> <li> <a href="/sweetmandyx/" > <img src="http://cdn-i.highwebmedia.com/roomimage/sweetmandyx.jpg" width="180" height="148" alt="sweetmandyx's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/sweetmandyx/"> sweetmandyx</a> <span class="age genderf">22</span> </div> <ul class="subject"> <li title="At goal first cum after 5 days no play with my pussy!Each 100 tok reach naked flash!25tok tits, 55tok pussy, 65 tok ass flash!200token new school girl video(HD, min)800 token all 13 vids(new include) dont forget email in tipnote!twitter @sweetmandyxx">at goal first cum after 5 days no play with my pussy!each 100 tok reach naked flash!25tok tits, 55tok pussy, 65 tok ass flash!200token new school girl video(hd, min)800 token all 13 vids(new include) dont forget email in tipnote!twitter @sweetmandyxx</li> </ul> <ul class="sub-info"> <li class="cams">73 mins, 604 viewers</li> </ul> </div> </li> <li> <a href="/alyssa_babii/" > <img src="http://cdn-i.highwebmedia.com/roomimage/alyssa_babii.jpg" width="180" height="148" alt="alyssa_babii's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/alyssa_babii/"> alyssa_babii</a> <span class="age genderf">19</span> </div> <ul class="subject"> <li title="25 tokens to roll the dice! Every 20 rolls, cumming once! Highest Tipper gets 1 of my vids of their choice!">25 tokens to roll the dice! every 20 rolls, cumming once! highest tipper gets 1 of my vids of their choice!</li> </ul> <ul class="sub-info"> <li class="cams">75 mins, 576 viewers</li> </ul> </div> </li> <li> <a href="/averyblonde/" > <img src="http://cdn-i.highwebmedia.com/roomimage/averyblonde.jpg" width="180" height="148" alt="averyblonde's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/averyblonde/"> averyblonde</a> <span class="age genderf">27</span> </div> <ul class="subject"> <li title="you want2 fingers inside me [Tip in ascending order from 1 to 25. Next tip needed: 4]">you want2 fingers inside me [tip in ascending order from 1 to 25. next tip needed: 4]</li> </ul> <ul class="sub-info"> <li class="cams">118 mins, 604 viewers</li> </ul> </div> </li> <li> <a href="/tencouple4u/" > <img src="http://cdn-i.highwebmedia.com/roomimage/tencouple4u.jpg" width="180" height="148" alt="tencouple4u's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_new">NEW</div> <div class="details"> <div class="title"> <a href= "/tencouple4u/"> tencouple4u</a> <span class="age genderc">20</span> </div> <ul class="subject"> <li title="hello ppl!!! new couple here! soo lets have some fun togeter, 30 flash 200 suck/lick!! tips for the any reqest!!! and dont forgot to follow us !! kiss kiss [47 tokens remaining]">hello ppl!!! new couple here! soo lets have some fun togeter, 30 flash 200 suck/lick!! tips for the any reqest!!! and dont forgot to follow us !! kiss kiss [47 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">120 mins, 600 viewers</li> </ul> </div> </li> <li> <a href="/exiled_lust/" > <img src="http://cdn-i.highwebmedia.com/roomimage/exiled_lust.jpg" width="180" height="148" alt="exiled_lust's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/exiled_lust/"> exiled_lust</a> <span class="age genderm">22</span> </div> <ul class="subject"> <li title="flash at every goal reached nude at 30, cum at goal [Tip in ascending order from 1 to 54. Next tip needed: 31]">flash at every goal reached nude at 30, cum at goal [tip in ascending order from 1 to 54. next tip needed: 31]</li> </ul> <ul class="sub-info"> <li class="cams">48 mins, 628 viewers</li> </ul> </div> </li> <li> <a href="/passiekoppel/" > <img src="http://cdn-i.highwebmedia.com/roomimage/passiekoppel.jpg" width="180" height="148" alt="passiekoppel's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/passiekoppel/"> passiekoppel</a> <span class="age genderc">99</span> </div> <ul class="subject"> <li title="Tip if you like;) dress off;)Tips keeps me teasing! [220 tokens left]">tip if you like;) dress off;)tips keeps me teasing! [220 tokens left]</li> </ul> <ul class="sub-info"> <li class="cams">35 mins, 732 viewers</li> </ul> </div> </li> <li> <a href="/2hotdutchgay/" > <img src="http://cdn-i.highwebmedia.com/roomimage/2hotdutchgay.jpg" width="180" height="148" alt="2hotdutchgay's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/2hotdutchgay/"> 2hotdutchgay</a> <span class="age genderm">24</span> </div> <ul class="subject"> <li title="Cum @ Goal ! xxx [876 tokens remaining]">cum @ goal ! xxx [876 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">200 mins, 667 viewers</li> </ul> </div> </li> <li> <a href="/hotnwild93/" > <img src="http://cdn-i.highwebmedia.com/roomimage/hotnwild93.jpg" width="180" height="148" alt="hotnwild93's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/hotnwild93/"> hotnwild93</a> <span class="age genderc">22</span> </div> <ul class="subject"> <li title="Show (FaceFuck 55) [55 tokens remaining]">show (facefuck 55) [55 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">22 mins, 656 viewers</li> </ul> </div> </li> <li> <a href="/amazingboyz/" > <img src="http://cdn-i.highwebmedia.com/roomimage/amazingboyz.jpg" width="180" height="148" alt="amazingboyz's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/amazingboyz/"> amazingboyz</a> <span class="age genderm">20</span> </div> <ul class="subject"> <li title="Colombian ANAL Players Facial cum [320 tokens remaining]">colombian anal players facial cum [320 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">136 mins, 639 viewers</li> </ul> </div> </li> <li> <a href="/tanisha88/" > <img src="http://cdn-i.highwebmedia.com/roomimage/tanisha88.jpg" width="180" height="148" alt="tanisha88's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/tanisha88/"> tanisha88</a> <span class="age genderf">18</span> </div> <ul class="subject"> <li title="Roll the dice to reveal a prize!">roll the dice to reveal a prize!</li> </ul> <ul class="sub-info"> <li class="cams">101 mins, 536 viewers</li> </ul> </div> </li> <li> <a href="/serenaandroob/" > <img src="http://cdn-i.highwebmedia.com/roomimage/serenaandroob.jpg" width="180" height="148" alt="serenaandroob's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/serenaandroob/"> serenaandroob</a> <span class="age genderc">23</span> </div> <ul class="subject"> <li title="25tkns for deepthroat @ show titis @10 show feet @35 footjob18 tkns for min in pvt and goal cum face [178 tokens remaining]">25tkns for deepthroat @ show titis @10 show feet @35 footjob18 tkns for min in pvt and goal cum face [178 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">38 mins, 510 viewers</li> </ul> </div> </li> <li> <a href="/marysol83/" > <img src="http://cdn-i.highwebmedia.com/roomimage/marysol83.jpg" width="180" height="148" alt="marysol83's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/marysol83/"> marysol83</a> <span class="age genderf">29</span> </div> <ul class="subject"> <li title="flash 25at goal all naked [300 tokens remaining]">flash 25at goal all naked [300 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">28 mins, 558 viewers</li> </ul> </div> </li> <li> <a href="/web_chat/" > <img src="http://cdn-i.highwebmedia.com/roomimage/web_chat.jpg" width="180" height="148" alt="web_chat's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/web_chat/"> web_chat</a> <span class="age genderf">28</span> </div> <ul class="subject"> <li title="333 play show for you 50flash...toys [69 tokens remaining]">333 play show for you 50flash...toys [69 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">150 mins, 499 viewers</li> </ul> </div> </li> <li> <a href="/mariamsex46/" > <img src="http://cdn-i.highwebmedia.com/roomimage/mariamsex46.jpg" width="180" height="148" alt="mariamsex46's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_exhibitionist">EXHIBITIONIST</div> <div class="details"> <div class="title"> <a href= "/mariamsex46/"> mariamsex46</a> <span class="age genderf">46</span> </div> <ul class="subject"> <li title=""></li> </ul> <ul class="sub-info"> <li class="cams">31 mins, 448 viewers</li> </ul> </div> </li> <li> <a href="/gerry7878/" > <img src="http://cdn-i.highwebmedia.com/roomimage/gerry7878.jpg" width="180" height="148" alt="gerry7878's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_exhibitionist">EXHIBITIONIST</div> <div class="details"> <div class="title"> <a href= "/gerry7878/"> gerry7878</a> <span class="age genderc">36</span> </div> <ul class="subject"> <li title=""></li> </ul> <ul class="sub-info"> <li class="cams">78 mins, 365 viewers</li> </ul> </div> </li> <li> <a href="/jasmin18v/" > <img src="http://cdn-i.highwebmedia.com/roomimage/jasmin18v.jpg" width="180" height="148" alt="jasmin18v's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/jasmin18v/"> jasmin18v</a> <span class="age genderf">43</span> </div> <ul class="subject"> <li title="cum at goal :)))) [880 tokens remaining]">cum at goal :)))) [880 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">61 mins, 543 viewers</li> </ul> </div> </li> <li> <a href="/xanderishot/" > <img src="http://cdn-i.highwebmedia.com/roomimage/xanderishot.jpg" width="180" height="148" alt="xanderishot's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/xanderishot/"> xanderishot</a> <span class="age genderc">22</span> </div> <ul class="subject"> <li title="Honry morning, simple requests @25tkns, boobs out @ 150, full naked &amp; suck @ 400 Fuck starts at goal or We play in private or group [2812 tokens remaining]">honry morning, simple requests @25tkns, boobs out @ 150, full naked & suck @ 400 fuck starts at goal or we play in private or group [2812 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">48 mins, 524 viewers</li> </ul> </div> </li> <li> <a href="/nzbrothas/" > <img src="http://cdn-i.highwebmedia.com/roomimage/nzbrothas.jpg" width="180" height="148" alt="nzbrothas's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/nzbrothas/"> nzbrothas</a> <span class="age genderm">21</span> </div> <ul class="subject"> <li title="show faces [63 tokens left]">show faces [63 tokens left]</li> </ul> <ul class="sub-info"> <li class="cams">11 mins, 501 viewers</li> </ul> </div> </li> <li> <a href="/sexondeliveryx/" > <img src="http://cdn-i.highwebmedia.com/roomimage/sexondeliveryx.jpg" width="180" height="148" alt="sexondeliveryx's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/sexondeliveryx/"> sexondeliveryx</a> <span class="age genderc">21</span> </div> <ul class="subject"> <li title="#gym #outdoor #squirt fuck and cum in face [93 tokens remaining]"><a href="/tag/gym/">#gym</a> <a href="/tag/outdoor/">#outdoor</a> <a href="/tag/squirt/">#squirt</a> fuck and cum in face [93 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">10 mins, 453 viewers</li> </ul> </div> </li> <li> <a href="/michelashley/" > <img src="http://cdn-i.highwebmedia.com/roomimage/michelashley.jpg" width="180" height="148" alt="michelashley's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/michelashley/"> michelashley</a> <span class="age genderf">24</span> </div> <ul class="subject"> <li title="GOAL ANAL DEEP ( EVERY REQUEST 25 TK ) [334 tokens remaining]">goal anal deep ( every request 25 tk ) [334 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">96 mins, 402 viewers</li> </ul> </div> </li> <li> <a href="/hotandrea23/" > <img src="http://cdn-i.highwebmedia.com/roomimage/hotandrea23.jpg" width="180" height="148" alt="hotandrea23's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/hotandrea23/"> hotandrea23</a> <span class="age genders">22</span> </div> <ul class="subject"> <li title="Token Keno! Uncover prizes by tipping the numbers on the board. Clear the board to reach goal! Goal is: [cum in private, clear the boar and u get private c2c just u and me] Type !b to see the board. Type !p to see available prizes.">token keno! uncover prizes by tipping the numbers on the board. clear the board to reach goal! goal is: [cum in private, clear the boar and u get private c2c just u and me] type !b to see the board. type !p to see available prizes.</li> </ul> <ul class="sub-info"> <li class="cams">20 mins, 429 viewers</li> </ul> </div> </li> <li> <a href="/chatmebabe69/" > <img src="http://cdn-i.highwebmedia.com/roomimage/chatmebabe69.jpg" width="180" height="148" alt="chatmebabe69's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/chatmebabe69/"> chatmebabe69</a> <span class="age genderf">24</span> </div> <ul class="subject"> <li title="Cleavage Coffee &amp; Chat - Good Morning :)">cleavage coffee & chat - good morning :)</li> </ul> <ul class="sub-info"> <li class="cams">80 mins, 326 viewers</li> </ul> </div> </li> <li> <a href="/danielandjulian/" > <img src="http://cdn-i.highwebmedia.com/roomimage/danielandjulian.jpg" width="180" height="148" alt="danielandjulian's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/danielandjulian/"> danielandjulian</a> <span class="age genderm">19</span> </div> <ul class="subject"> <li title="2 CUM HOT [400 tokens remaining]">2 cum hot [400 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">69 mins, 379 viewers</li> </ul> </div> </li> <li> <a href="/hornebees/" > <img src="http://cdn-i.highwebmedia.com/roomimage/hornebees.jpg" width="180" height="148" alt="hornebees's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/hornebees/"> hornebees</a> <span class="age genderc">27</span> </div> <ul class="subject"> <li title="200 @ Sexy Fuck!!! 25 toks to roll the dice :D">200 @ sexy fuck!!! 25 toks to roll the dice :d</li> </ul> <ul class="sub-info"> <li class="cams">94 mins, 373 viewers</li> </ul> </div> </li> <li> <a href="/sexxyeva18/" > <img src="http://cdn-i.highwebmedia.com/roomimage/sexxyeva18.jpg" width="180" height="148" alt="sexxyeva18's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/sexxyeva18/"> sexxyeva18</a> <span class="age genderf">19</span> </div> <ul class="subject"> <li title="Flash 25,pussy 50, ass 100, ass for fingers 200, for fingers cum 700 for dildo 1500 cum [260 tokens remaining]">flash 25,pussy 50, ass 100, ass for fingers 200, for fingers cum 700 for dildo 1500 cum [260 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">108 mins, 389 viewers</li> </ul> </div> </li> <li> <a href="/smile4smiles/" > <img src="http://cdn-i.highwebmedia.com/roomimage/smile4smiles.jpg" width="180" height="148" alt="smile4smiles's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_exhibitionist">EXHIBITIONIST</div> <div class="details"> <div class="title"> <a href= "/smile4smiles/"> smile4smiles</a> <span class="age genderf">27</span> </div> <ul class="subject"> <li title=""></li> </ul> <ul class="sub-info"> <li class="cams">13 mins, 274 viewers</li> </ul> </div> </li> <li> <a href="/bellacontessa/" > <img src="http://cdn-i.highwebmedia.com/roomimage/bellacontessa.jpg" width="180" height="148" alt="bellacontessa's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/bellacontessa/"> bellacontessa</a> <span class="age genderf">23</span> </div> <ul class="subject"> <li title="30 tokens for cum-70 fingers ass and pussy-100 ride mi big toy in mi ass-200 cum in mi mouth anf face [170 tokens remaining]">30 tokens for cum-70 fingers ass and pussy-100 ride mi big toy in mi ass-200 cum in mi mouth anf face [170 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">8 mins, 354 viewers</li> </ul> </div> </li> <li> <a href="/cuteymya/" > <img src="http://cdn-i.highwebmedia.com/roomimage/cuteymya.jpg" width="180" height="148" alt="cuteymya's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/cuteymya/"> cuteymya</a> <span class="age genderf">19</span> </div> <ul class="subject"> <li title="At every goal i change outfits in front of you guys [150 tokens remaining]">at every goal i change outfits in front of you guys [150 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">19 mins, 372 viewers</li> </ul> </div> </li> <li> <a href="/sammiecee/" > <img src="http://cdn-i.highwebmedia.com/roomimage/sammiecee.jpg" width="180" height="148" alt="sammiecee's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/sammiecee/"> sammiecee</a> <span class="age genderf">23</span> </div> <ul class="subject"> <li title="50 token to spin the wheel.. prizes inc videos, pic sets, teases, close ups, lotion etc">50 token to spin the wheel.. prizes inc videos, pic sets, teases, close ups, lotion etc</li> </ul> <ul class="sub-info"> <li class="cams">172 mins, 303 viewers</li> </ul> </div> </li> <li> <a href="/venuus/" > <img src="http://cdn-i.highwebmedia.com/roomimage/venuus.jpg" width="180" height="148" alt="venuus's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/venuus/"> venuus</a> <span class="age genderf">24</span> </div> <ul class="subject"> <li title=""></li> </ul> <ul class="sub-info"> <li class="cams">79 mins, 300 viewers</li> </ul> </div> </li> <li> <a href="/babysexy069/" > <img src="http://cdn-i.highwebmedia.com/roomimage/babysexy069.jpg" width="180" height="148" alt="babysexy069's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/babysexy069/"> babysexy069</a> <span class="age genderf">18</span> </div> <ul class="subject"> <li title="30 flas titis , 45 ass, 55 pussy, 80 full nude 150 sex dildo [3707 tokens remaining]">30 flas titis , 45 ass, 55 pussy, 80 full nude 150 sex dildo [3707 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">33 mins, 265 viewers</li> </ul> </div> </li> <li> <a href="/geovavivi/" > <img src="http://cdn-i.highwebmedia.com/roomimage/geovavivi.jpg" width="180" height="148" alt="geovavivi's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/geovavivi/"> geovavivi</a> <span class="age genders">31</span> </div> <ul class="subject"> <li title="250 tokens for fisting and 250 for cum in face [98 tokens remaining]">250 tokens for fisting and 250 for cum in face [98 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">14 mins, 323 viewers</li> </ul> </div> </li> <li> <a href="/sexcrazedentertainers/" > <img src="http://cdn-i.highwebmedia.com/roomimage/sexcrazedentertainers.jpg" width="180" height="148" alt="sexcrazedentertainers's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_new">NEW</div> <div class="details"> <div class="title"> <a href= "/sexcrazedentertainers/"> sexcrazedentertainers</a> <span class="age genderc">37</span> </div> <ul class="subject"> <li title="30 for request, Fuck at 500, anal at Goal Reach 2 times [440 tokens remaining]">30 for request, fuck at 500, anal at goal reach 2 times [440 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">26 mins, 326 viewers</li> </ul> </div> </li> <li> <a href="/dirtylilsusie/" > <img src="http://cdn-i.highwebmedia.com/roomimage/dirtylilsusie.jpg" width="180" height="148" alt="dirtylilsusie's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/dirtylilsusie/"> dirtylilsusie</a> <span class="age genderf">20</span> </div> <ul class="subject"> <li title="Token Keno! Uncover prizes by tipping the numbers on the board. Clear the board to reach goal! Goal is: [Private Cum Show for Tippers ONLY!] Type !b to see the board. Type !p to see available prizes.">token keno! uncover prizes by tipping the numbers on the board. clear the board to reach goal! goal is: [private cum show for tippers only!] type !b to see the board. type !p to see available prizes.</li> </ul> <ul class="sub-info"> <li class="cams">142 mins, 260 viewers</li> </ul> </div> </li> <li> <a href="/honeykiller/" > <img src="http://cdn-i.highwebmedia.com/roomimage/honeykiller.jpg" width="180" height="148" alt="honeykiller's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/honeykiller/"> honeykiller</a> <span class="age genderf">19</span> </div> <ul class="subject"> <li title="---&gt;play pussy @ every goal, top off show boobs @ 8 goals, be naked @ 14 goals, cum @ ,25,35 goals.... 10tk pm, 25tk flash feet, 35tk flash boobs, 45tk flash ass, 55tk flash pussy. keep tipping keep playing babe [101 tokens remaining]">--->play pussy @ every goal, top off show boobs @ 8 goals, be naked @ 14 goals, cum @ ,25,35 goals.... 10tk pm, 25tk flash feet, 35tk flash boobs, 45tk flash ass, 55tk flash pussy. keep tipping keep playing babe [101 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">93 mins, 323 viewers</li> </ul> </div> </li> <li> <a href="/prtykty/" > <img src="http://cdn-i.highwebmedia.com/roomimage/prtykty.jpg" width="180" height="148" alt="prtykty's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_new">NEW</div> <div class="details"> <div class="title"> <a href= "/prtykty/"> prtykty</a> <span class="age genderf">24</span> </div> <ul class="subject"> <li title="watch me cum #dildo [463 tokens remaining]">watch me cum <a href="/tag/dildo/">#dildo</a> [463 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">141 mins, 259 viewers</li> </ul> </div> </li> <li> <a href="/mybbtosmall/" > <img src="http://cdn-i.highwebmedia.com/roomimage/mybbtosmall.jpg" width="180" height="148" alt="mybbtosmall's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_new">NEW</div> <div class="details"> <div class="title"> <a href= "/mybbtosmall/"> mybbtosmall</a> <span class="age genderm">18</span> </div> <ul class="subject"> <li title="10 [300 tokens remaining]">10 [300 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">172 mins, 227 viewers</li> </ul> </div> </li> <li> <a href="/smartguy20/" > <img src="http://cdn-i.highwebmedia.com/roomimage/smartguy20.jpg" width="180" height="148" alt="smartguy20's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/smartguy20/"> smartguy20</a> <span class="age genderm">20</span> </div> <ul class="subject"> <li title="Huge cumm !!Flash 40 /Hard 50 / [650 tokens left]">huge cumm !!flash 40 /hard 50 / [650 tokens left]</li> </ul> <ul class="sub-info"> <li class="cams">111 mins, 241 viewers</li> </ul> </div> </li> <li> <a href="/amierae/" > <img src="http://cdn-i.highwebmedia.com/roomimage/amierae.jpg" width="180" height="148" alt="amierae's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/amierae/"> amierae</a> <span class="age genderf">20</span> </div> <ul class="subject"> <li title="anal dildo(375 tks)..../cum show [1000] tokens remaining">anal dildo(375 tks)..../cum show [1000] tokens remaining</li> </ul> <ul class="sub-info"> <li class="cams">95 mins, 271 viewers</li> </ul> </div> </li> <li> <a href="/julianess/" > <img src="http://cdn-i.highwebmedia.com/roomimage/julianess.jpg" width="180" height="148" alt="julianess's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/julianess/"> julianess</a> <span class="age genderf">21</span> </div> <ul class="subject"> <li title="skirt and stockings off :) [0 tokens remaining]">skirt and stockings off :) [0 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">13 mins, 201 viewers</li> </ul> </div> </li> <li> <a href="/xxtammy123xx/" > <img src="http://cdn-i.highwebmedia.com/roomimage/xxtammy123xx.jpg" width="180" height="148" alt="xxtammy123xx's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/xxtammy123xx/"> xxtammy123xx</a> <span class="age genderf">47</span> </div> <ul class="subject"> <li title="Let&#39;s play the slot machine!">let's play the slot machine!</li> </ul> <ul class="sub-info"> <li class="cams">37 mins, 293 viewers</li> </ul> </div> </li> <li> <a href="/2hottranny4u/" > <img src="http://cdn-i.highwebmedia.com/roomimage/2hottranny4u.jpg" width="180" height="148" alt="2hottranny4u's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/2hottranny4u/"> 2hottranny4u</a> <span class="age genders">21</span> </div> <ul class="subject"> <li title="go tips = 25 tips go show 50 go suck both cocks 125 fuck 200 cum we to play wyth toy 50 more [135 tokens remaining]">go tips = 25 tips go show 50 go suck both cocks 125 fuck 200 cum we to play wyth toy 50 more [135 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">40 mins, 265 viewers</li> </ul> </div> </li> <li> <a href="/hotsecretary/" > <img src="http://cdn-i.highwebmedia.com/roomimage/hotsecretary.jpg" width="180" height="148" alt="hotsecretary's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/hotsecretary/"> hotsecretary</a> <span class="age genderf">20</span> </div> <ul class="subject"> <li title="Token Keno! Uncover prizes by tipping the numbers on the board. Clear the board to reach goal! Goal is: [BIG SQUIRT IN UR FACE!!] Type !b to see the board. Type !p to see available prizes. MVP wins [pics from me, and my mod status:P] when board cleared.">token keno! uncover prizes by tipping the numbers on the board. clear the board to reach goal! goal is: [big squirt in ur face!!] type !b to see the board. type !p to see available prizes. mvp wins [pics from me, and my mod status:p] when board cleared.</li> </ul> <ul class="sub-info"> <li class="cams">21 mins, 229 viewers</li> </ul> </div> </li> <li> <a href="/sisi87/" > <img src="http://cdn-i.highwebmedia.com/roomimage/sisi87.jpg" width="180" height="148" alt="sisi87's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/sisi87/"> sisi87</a> <span class="age genderf">27</span> </div> <ul class="subject"> <li title="Sisi87&#39;s room">sisi87's room</li> </ul> <ul class="sub-info"> <li class="cams">44 mins, 199 viewers</li> </ul> </div> </li> <li> <a href="/_ghost/" > <img src="http://cdn-i.highwebmedia.com/roomimage/_ghost.jpg" width="180" height="148" alt="_ghost's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_exhibitionist">EXHIBITIONIST</div> <div class="details"> <div class="title"> <a href= "/_ghost/"> _ghost</a> <span class="age genderf">23</span> </div> <ul class="subject"> <li title=""></li> </ul> <ul class="sub-info"> <li class="cams">24 mins, 154 viewers</li> </ul> </div> </li> <li> <a href="/chocolatecandy86/" > <img src="http://cdn-i.highwebmedia.com/roomimage/chocolatecandy86.jpg" width="180" height="148" alt="chocolatecandy86's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/chocolatecandy86/"> chocolatecandy86</a> <span class="age genderf">99</span> </div> <ul class="subject"> <li title="10 if u like me,25 if u love show,100 if u are hard and want me and 1000 to owe me as i moan [10 tokens remaining]">10 if u like me,25 if u love show,100 if u are hard and want me and 1000 to owe me as i moan [10 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">88 mins, 243 viewers</li> </ul> </div> </li> <li> <a href="/kawaiidoll/" > <img src="http://cdn-i.highwebmedia.com/roomimage/kawaiidoll.jpg" width="180" height="148" alt="kawaiidoll's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/kawaiidoll/"> kawaiidoll</a> <span class="age genders">21</span> </div> <ul class="subject"> <li title="TIP IF YOU LIKE ME AND KEEP SHOW GOING ON!! CUM AT GOAL :) [0 tokens remaining]">tip if you like me and keep show going on!! cum at goal :) [0 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">1 min, 230 viewers</li> </ul> </div> </li> <li> <a href="/xopaxi/" > <img src="http://cdn-i.highwebmedia.com/roomimage/xopaxi.jpg" width="180" height="148" alt="xopaxi's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/xopaxi/"> xopaxi</a> <span class="age genderf">99</span> </div> <ul class="subject"> <li title="Naked @ Goal - Ass Flash=70! New Video Package Deals!! [2749 tokens remaining]">naked @ goal - ass flash=70! new video package deals!! [2749 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">17 mins, 173 viewers</li> </ul> </div> </li> <li> <a href="/jennypetite/" > <img src="http://cdn-i.highwebmedia.com/roomimage/jennypetite.jpg" width="180" height="148" alt="jennypetite's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/jennypetite/"> jennypetite</a> <span class="age genderf">21</span> </div> <ul class="subject"> <li title="tits at 25tk, pussy at 35tk, play with my pussy till i cum 45tk, Double penetration with dildo 50tk, squirt 55tk [Tip in ascending order from 1 to 55. Next tip needed: 14]">tits at 25tk, pussy at 35tk, play with my pussy till i cum 45tk, double penetration with dildo 50tk, squirt 55tk [tip in ascending order from 1 to 55. next tip needed: 14]</li> </ul> <ul class="sub-info"> <li class="cams">144 mins, 209 viewers</li> </ul> </div> </li> <li> <a href="/sexyboi950/" > <img src="http://cdn-i.highwebmedia.com/roomimage/sexyboi950.jpg" width="180" height="148" alt="sexyboi950's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/sexyboi950/"> sexyboi950</a> <span class="age genderm">18</span> </div> <ul class="subject"> <li title="&#39;CrazyTicket&#39; says: Goal timer started! HEY GUYS SO I&#39;M IN DEBT!!! HELP ME OUT WITH YOUR TIP! ---LOW PRICE!!!! CUM SHOW! -- (If you&#39;re feeling generous tip more than 40 share the love!!) &lt;3. Type /timeleft to see the time remaining to buy a ticket for">'crazyticket' says: goal timer started! hey guys so i'm in debt!!! help me out with your tip! ---low price!!!! cum show! -- (if you're feeling generous tip more than 40 share the love!!) <3. type /timeleft to see the time remaining to buy a ticket for</li> </ul> <ul class="sub-info"> <li class="cams">69 mins, 173 viewers</li> </ul> </div> </li> <li> <a href="/pennie20/" > <img src="http://cdn-i.highwebmedia.com/roomimage/pennie20.jpg" width="180" height="148" alt="pennie20's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/pennie20/"> pennie20</a> <span class="age genderf">19</span> </div> <ul class="subject"> <li title="Tip if you think im cute ;)">tip if you think im cute ;)</li> </ul> <ul class="sub-info"> <li class="cams">6 mins, 204 viewers</li> </ul> </div> </li> <li> <a href="/jamo123/" > <img src="http://cdn-i.highwebmedia.com/roomimage/jamo123.jpg" width="180" height="148" alt="jamo123's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_exhibitionist">EXHIBITIONIST</div> <div class="details"> <div class="title"> <a href= "/jamo123/"> jamo123</a> <span class="age genderm">31</span> </div> <ul class="subject"> <li title=""></li> </ul> <ul class="sub-info"> <li class="cams">31 mins, 170 viewers</li> </ul> </div> </li> <li> <a href="/mamalinda/" > <img src="http://cdn-i.highwebmedia.com/roomimage/mamalinda.jpg" width="180" height="148" alt="mamalinda's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/mamalinda/"> mamalinda</a> <span class="age genderf">44</span> </div> <ul class="subject"> <li title="Big Mommy Pussy Play... Tips keep the show going! #hairy #natural #mature - [Keep It Going - Don&#39;t Let the Tip Jar Empty]">big mommy pussy play... tips keep the show going! <a href="/tag/hairy/">#hairy</a> <a href="/tag/natural/">#natural</a> <a href="/tag/mature/">#mature</a> - [keep it going - don't let the tip jar empty]</li> </ul> <ul class="sub-info"> <li class="cams">389 mins, 188 viewers</li> </ul> </div> </li> <li> <a href="/kaypurrrs/" > <img src="http://cdn-i.highwebmedia.com/roomimage/kaypurrrs.jpg" width="180" height="148" alt="kaypurrrs's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/kaypurrrs/"> kaypurrrs</a> <span class="age genderf">24</span> </div> <ul class="subject"> <li title="Token Keno! Uncover prizes by tipping the numbers on the board. Clear the board to reach goal! Goal is: [Wooooohooooo I ♥ youuuuuuuu!!] Type !b to see the board. Type !p to see available prizes. MVP wins [MVP GETS 23 Videos!!! :) ] when board cleared.">token keno! uncover prizes by tipping the numbers on the board. clear the board to reach goal! goal is: [wooooohooooo i ♥ youuuuuuuu!!] type !b to see the board. type !p to see available prizes. mvp wins [mvp gets 23 videos!!! :) ] when board cleared.</li> </ul> <ul class="sub-info"> <li class="cams">46 mins, 134 viewers</li> </ul> </div> </li> <li> <a href="/hotbod89/" > <img src="http://cdn-i.highwebmedia.com/roomimage/hotbod89.jpg" width="180" height="148" alt="hotbod89's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/hotbod89/"> hotbod89</a> <span class="age genderm">25</span> </div> <ul class="subject"> <li title="request at every goal. cum at 30 goals [25 tokens remaining]">request at every goal. cum at 30 goals [25 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">136 mins, 146 viewers</li> </ul> </div> </li> <li> <a href="/redheadxxl/" > <img src="http://cdn-i.highwebmedia.com/roomimage/redheadxxl.jpg" width="180" height="148" alt="redheadxxl's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c_hd">HD</div> <div class="details"> <div class="title"> <a href= "/redheadxxl/"> redheadxxl</a> <span class="age genderm">22</span> </div> <ul class="subject"> <li title="NUDE FLEXING, OIL ON BODY, FINGERING and BIG LOAD!!! [1475 tokens remaining]">nude flexing, oil on body, fingering and big load!!! [1475 tokens remaining]</li> </ul> <ul class="sub-info"> <li class="cams">95 mins, 134 viewers</li> </ul> </div> </li> <li> <a href="/conniekatie/" > <img src="http://cdn-i.highwebmedia.com/roomimage/conniekatie.jpg" width="180" height="148" alt="conniekatie's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/conniekatie/"> conniekatie</a> <span class="age genderf">21</span> </div> <ul class="subject"> <li title="do #the #best #strip ever!! today i start my holidays and wanna have fun !! ;D [Tip in ascending order from 1 to 36. Next tip needed: 22]">do <a href="/tag/the/">#the</a> <a href="/tag/best/">#best</a> <a href="/tag/strip/">#strip</a> ever!! today i start my holidays and wanna have fun !! ;d [tip in ascending order from 1 to 36. next tip needed: 22]</li> </ul> <ul class="sub-info"> <li class="cams">18 mins, 181 viewers</li> </ul> </div> </li> <li> <a href="/big1gr/" > <img src="http://cdn-i.highwebmedia.com/roomimage/big1gr.jpg" width="180" height="148" alt="big1gr's chat room" class="png"></a> <div class="thumbnail_label thumbnail_label_c">CHATURBATING</div> <div class="details"> <div class="title"> <a href= "/big1gr/"> big1gr</a> <span class="age genderc">35</span> </d
xbmc - videodevil - chaturbate - test
2014-06-28T16:05:28.000Z
\d{3}\.\d{3}\.\d{1}\.\d{1}
192.168.1.1
4
2015-10-17T05:41:11.000Z
Voegt een if statement toe aan alle widget parameters die worden aangeroepen om te kijken of ze al gedefinieerd zijn.
<!--{if(\s+\(?(\$[^\s!=><}]+)[^}]+)}-->
<!--{if $projectdisplaymode != 'Widget'}--> <!--{if (isset($projectdisplaymode ) && $projectdisplaymode != 'Widget' )}--> <!--{if $runnow == 'true'}--> <!--{if (isset($runnow ) && $runnow == 'true' )}--> <!--{if $showdelete == 'Yes'}--> <!--{if $average_rating_colorclass == 'progress0'}--> <!--{if ($percentage!="")}--> --Find: <!--{if(\s+\(?(\$[^\s!=><}]+)[^}]+)}--> --Replace: <!--{if (isset($2) && $1)}-->
Replacetext widget isset
2019-07-03T09:28:26.000Z
(\w+)( \1)+
the little cat cat is in the hat hat hat, we like it.
分组替换
2020-06-17T01:44:49.000Z
Outbound Flight Information element (.F) is mandatory when used as part of a reconciliation or sortation process. If used for ground tracking it is optional. OUTBOUND FLIGHT INFORMATION (M) Element Identifier .F (M) Airline and Flight Number /BA117 (M) Date /03OCT (M) Destination or Transfer Airport Code /SEL (O) Class of Travel of Baggage /J
(?<elementIdentifier>\.F)\/(?<airlineandFlightNumber>[A-Z0-9]{2,3}[A-Z0-9]{3,4})\/(?<date>[0-9]{2}[A-Z]{3})\/(?<destinationAirportCode>[A-Z]{3})\/?(?<classOfTravelOfBaggage>[A-Z0-9]{1})?
.F/SR101/16APR/JFK/J .F/AF0703/04JAN/CDG/Y .F/AF0703/04JAN/CDG
BSM - OUTBOUND FLIGHT INFORMATION Element
2018-12-17T15:35:57.000Z
\w{1}:\/\/([a-zA-Z0-9\-\_\s]+\/)*\w+\.\w+
c://program files/system32/data.dat
9
2015-10-30T16:55:12.000Z
^Content\/([A-Z][a-zA-z0-9\_]*\/)*(BP|T|M|MI)\_[A-Z].[a-zA-Z]+\.(uasset|umap)
Content/Ass/Ass/Bdd_01/BP_Asset.uasset
AssetNames
2019-06-03T16:38:06.000Z
[a-z0-9!#$%&'*+=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?
email validator
2016-08-11T09:42:58.000Z
This will allow only one space after a word.And also do not start with a space.
^[A-Za-z]( ?[A-Za-z] ?)*$
as gb fjdk fghd
Allow only one space after a word
2016-07-28T08:48:58.000Z
(?P<smlouva>[0-9]{10})\s(?:|(?P<flotila>[0-9]{10})\s)(?P<kod>[A-Z0-9]{3})\s(?<rc_ic>[0-9]+)\s(?<klient>\S+ \S+)\s(?P<zaklad>-?[0-9 ]+,[0-9]{2})\s(?P<od>[0-9.]+)\s(?P<do>[0-9.]+)\s(?P<zarazeni>\S+)\s(?P<provize>-?[0-9 ]+,[0-9]{2})
Získatelská-život Smlouva č. Flotila/pův.čps Kód RČ/IČ Klient Základ Období od. Období do. Zařazení Provize 1442225650 7BN 8508142236 Šxxxx Rxxx 7 116,00 01.08.2018 01.08.2019 získatelská 10 674,00 1442226302 7BN 8559150666 Paxxxxxxx Jxxx 19 800,00 01.08.2018 01.08.2019 získatelská 29 700,00 1442226325 7BN 9411250057 Mxxxx Dxxxx 7 920,00 01.08.2018 01.08.2019 získatelská 11 880,00 1442230798 7BN 7309170572 Kxxxxx Mxxx 6 720,00 01.08.2018 01.08.2019 získatelská 10 080,00 Získatelská-neživot Smlouva č. Flotila/pův.čps Kód RČ/IČ Klient Základ Období od. Období do. Zařazení Provize 3951263358 1BB 9451055141 Bxxxxxx Lxxx 860,00 17.05.2018 17.05.2019 získatelská 93,00 3951291767 1BB 6852200333 Kxxxxxxx Mxxxx 1 210,00 20.07.2018 20.07.2019 získatelská 131,00 3951289137 1BD 61491853 Mxxxxx HxxxxÍ 16 510,00 12.07.2018 12.07.2019 získatelská 7 925,00 8930218318 8602948105 TR7 45798052 xxx s.r.o. / G.x.x.x., xx./ 5 950,00 04.08.2018 04.08.2019 pečovatelská 893,00 8930219821 8602951021 TR7 24684911 xx Šxxxxx s.r.o. -14 455,00 03.08.2018 03.08.2019 pečovatelská -2 168,00 3951263358 8602951021 1BB 9451055141 Bxxxxxx Lucie 860,00 17.05.2018 17.05.2019 získatelská 93,00
KOOP parsování provizí z PDF
2018-08-29T08:43:56.000Z
This regex extracts [Kubernetes Resource URIs](https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-uris). ---- Copyright 2021 Mathew Wicks Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
^(?:/api|/apis/(?P<GROUP>[^/]+))/(?P<VERSION>[^/]+)(?:/namespaces/(?P<NAMESPACE>[^/]+))?/(?P<RESOURCETYPE>[^/\n]+)(?:/(?P<NAME>[^/\n]+))?(?:/(?P<SUBRESOURCE>[^/\n]+))?$
## Cluster-scoped resources /api/v1/RESOURCETYPE /api/v1/RESOURCETYPE/NAME /apis/GROUP/VERSION/RESOURCETYPE /apis/GROUP/VERSION/RESOURCETYPE/NAME ## Namespace-scoped resources: /api/v1/namespaces/NAMESPACE/RESOURCETYPE /api/v1/namespaces/NAMESPACE/RESOURCETYPE/NAME /apis/GROUP/VERSION/namespaces/NAMESPACE/RESOURCETYPE /apis/GROUP/VERSION/namespaces/NAMESPACE/RESOURCETYPE/NAME ## Cluster-scoped subresource: /api/v1/RESOURCETYPE/NAME/SUBRESOURCE /apis/GROUP/VERSION/RESOURCETYPE/NAME/SUBRESOURCE ## Namespace-scoped subresource /api/v1/namespaces/NAMESPACE/RESOURCETYPE/NAME/SUBRESOURCE /apis/GROUP/VERSION/namespaces/NAMESPACE/RESOURCETYPE/NAME/SUBRESOURCE
Parse Kubernetes Resource URI Paths
2021-11-05T05:52:59.000Z
(?<=profile\.php\?id\=)(?<id>[0-9]+)|(?:(?<=\.com)|(?<=\.me)|(?<=\.co)|(?<=\.us))(?:(?:\/groups\/|\/)(?!profile\.php)(?<username>[\w\.\_]+))
https://www.facebook.com/hung.le054 https://www.facebook.com/groups/j2team.community/?ref=nf_target&fref=nf&__xts__%5B0%5D=68.ARCufAkDYLfgBw09Ctl9HKUd8wMYIaATKYHE-9guWWpCGu86iH8k0p4Qx8BxlXEEJMW8shzzodIckx0qvnBg94kwMe3uOIPnjE9s6neoXwFX8kBJsWBpF-Ej8oXpGdiIu6sf9cg9tyeq&__tn__=C-R https://www.facebook.com/NoExit.GoEXID/?hc_ref=ARQCFBLI4l-ciKCPEGazrn4_8WTxAulTr9a7XgMTgi_OKA_Iad1-hMzdD2z0snaq3BE&fref=nf&__xts__%5B0%5D=68.ARAUlT1DqV2wkn3VWI7belmtRn5k9XXk05WUw1Gl88lm2CDjGSmYX0zI_p8A19EG2w6iWF3t0gZN-GurkpGl05KGdS5Xv8lC__sOmlxD8Jz5CrhOjbz1ThvYtiZA3yzk4P66-V5BjDty&__tn__=kCH-R https://www.facebook.com/profile.php?id=100010004806283&fref=pb&hc_location=friends_tab
regex link Facebook
2018-08-17T02:49:54.000Z
"id": "P1", "description": "starting with # and then digits and then one or more spaces", "regex": "^\\#\\s*(\\d+)\\s*", "inputField": "preProcessedMerchantName", "outputField": "cleanMerchantName", "trimOutput": "true", "transformation": "T1"
^\#\s*(\d+)\s*
P1
2019-05-13T18:15:16.000Z
Bb
^(?P<major>0|[1-9]\d*)\.(?P<minor>0|[1-9]\d*)\.(?P<patch>0|[1-9]\d*)(?:-(?P<prerelease>(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+(?P<buildmetadata>[0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$
Valid Semantic Versions 0.0.4 1.2.3 10.20.30 1.1.2-prerelease+meta 1.1.2+meta 1.1.2+meta-valid 1.0.0-alpha 1.0.0-beta 1.0.0-alpha.beta 1.0.0-alpha.beta.1 1.0.0-alpha.1 1.0.0-alpha0.valid 1.0.0-alpha.0valid 1.0.0-alpha-a.b-c-somethinglong+build.1-aef.1-its-okay 1.0.0-rc.1+build.1 2.0.0-rc.1+build.123 1.2.3-beta 10.2.3-DEV-SNAPSHOT 1.2.3-SNAPSHOT-123 1.0.0 2.0.0 1.1.7 2.0.0+build.1848 2.0.1-alpha.1227 1.0.0-alpha+beta 1.2.3----RC-SNAPSHOT.12.9.1--.12+788 1.2.3----R-S.12.9.1--.12+meta 1.2.3----RC-SNAPSHOT.12.9.1--.12 1.0.0+0.build.1-rc.10000aaa-kk-0.1 99999999999999999999999.999999999999999999.99999999999999999 1.0.0-0A.is.legal Invalid Semantic Versions 1 1.2 1.2.3-0123 1.2.3-0123.0123 1.1.2+.123 +invalid -invalid -invalid+invalid -invalid.01 alpha alpha.beta alpha.beta.1 alpha.1 alpha+beta alpha_beta alpha. alpha.. beta 1.0.0-alpha_beta -alpha. 1.0.0-alpha.. 1.0.0-alpha..1 1.0.0-alpha...1 1.0.0-alpha....1 1.0.0-alpha.....1 1.0.0-alpha......1 1.0.0-alpha.......1 01.1.1 1.01.1 1.1.01 1.2 1.2.3.DEV 1.2-SNAPSHOT 1.2.31.2.3----RC-SNAPSHOT.12.09.1--..12+788 1.2-RC-SNAPSHOT -1.0.3-gamma+b7718 +justmeta 9.8.7+meta+meta 9.8.7-whatever+meta+meta 99999999999999999999999.999999999999999999.99999999999999999----RC-SNAPSHOT.12.09.1--------------------------------..12
Don’t
2023-05-02T09:52:52.000Z
[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}(\/[0-9]([0-9]?))?
196.254.211.121/16
Basic IP Address Check
2018-10-10T14:45:55.000Z
Find a 4 digit number
\d{4}
2016-04-28T00:00:00+00:00
4 digits
2016-04-12T14:36:45.000Z
^<(?=.*\/).*>$
<Not Specified> <blah/> <blah /> <blah></blah> <blah> </blah> <blah attr="blah"></blah>
detect xml
2020-03-27T16:38:39.000Z
(\d{4})(-)?(\d{2})(-)?(\d{2})(T)?(\d{2})(\:)?(\d{2})(\:)?(\d{2})(\+(\d{2}:\d{2})|\.(\d{3}Z)|Z)
2016-04-19T19:54:52.273Z 2016-04-20T11:54:59+00:00 2016-04-20T11:54:59Z 20160420T115459Z
ISO8601 patterns
2016-07-04T14:36:13.000Z
Very simple & basic. More forgiving, less stringent. Allows anything which looks reasonably valid. Allows one at-symbol. Requires a two part hostname (i.e. abc@localhost is not allowed)
^[^\s@]+@([\w\-]+\.)+[\w\-]{2,}$
Liberal Email Address
2015-05-11T13:18:15.000Z
(^9+((\.9+)+)?$)?
9 .9 9. 99 .9 9.9.9 99.99. .99.99 99.999.999.99.9 9 9ad.99 .99.99 99. ^9+((\.9+)+)?$ zs
campo configurador por 9 e ponto ou apenas vazio
2016-01-21T16:10:11.000Z
Regex that matches puu.sh links
(http|https):\/\/(?:www\.)?puu\.sh\/(\w{5})\/(\w{10})\.(\w{3})
https://puu.sh/qpMlC/b58…I/b74edd1b8e.png
Puush
2016-08-04T21:39:39.000Z
if you are as lazy as me and want to replace every "=$_POST['name'];" using Dreamweaver or any development tool that allows using regular expressions to search in current file/document.
\=\$_POST\['[a-zA-z0-9]*'\];
look for any $_POST['name']
2016-01-14T23:35:48.000Z
Used in C# in my particular case.
^[^\/\\\[\]:;|=,+?<>@”]+$
sAMAccountName in ActiveDirectory validation
2014-12-10T11:31:48.000Z
([\.\,\?!;:\(\)\(\)\{\}\-\+`\\\^\[\]\^"]\S|(\'\S*\'))
ee maa i dasda!s2di []adasd
search spesial characters
2016-01-27T14:37:03.000Z
Blythedale Performance Evaluation Regex to check the Uploaded Filename
^[\w.\-]+$
PE Filename Test
2015-12-11T20:01:49.000Z
(-----BEGIN CERTIFICATE-----(?:[\s\S]*?)-----END CERTIFICATE-----)
-----BEGIN CERTIFICATE----- MIID+jCCAuKgAwIBAgIDAjbSMA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVT MRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i YWwgQ0EwHhcNMTAwMjI2MjEzMjMxWhcNMjAwMjI1MjEzMjMxWjBhMQswCQYDVQQG EwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEdMBsGA1UECxMURG9tYWluIFZh bGlkYXRlZCBTU0wxGzAZBgNVBAMTEkdlb1RydXN0IERWIFNTTCBDQTCCASIwDQYJ KoZIhvcNAQEBBQADggEPADCCAQoCggEBAKa7jnrNpJxiV9RRMEJ7ixqy0ogGrTs8 KRMMMbxp+Z9alNoGuqwkBJ7O1KrESGAA+DSuoZOv3gR+zfhcIlINVlPrqZTP+3RE 60OUpJd6QFc1tqRi2tVI+Hrx7JC1Xzn+Y3JwyBKF0KUuhhNAbOtsTdJU/V8+Jh9m cajAuIWe9fV1j9qRTonjynh0MF8VCpmnyoM6djVI0NyLGiJOhaRO+kltK3C+jgwh w2LMpNGtFmuae8tk/426QsMmqhV4aJzs9mvIDFcN5TgH02pXA50gDkvEe4GwKhz1 SupKmEn+Als9AxSQKH6a9HjQMYRX5Uw4ekIR4vUoUQNLIBW7Ihq28BUCAwEAAaOB 2TCB1jAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFIz02ZMKR7wAoErOS3VuoLaw sn78MB8GA1UdIwQYMBaAFMB6mGiNifurBWQMEX2qfWW4ysxOMBIGA1UdEwEB/wQI MAYBAf8CAQAwOgYDVR0fBDMwMTAvoC2gK4YpaHR0cDovL2NybC5nZW90cnVzdC5j b20vY3Jscy9ndGdsb2JhbC5jcmwwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzAB hhhodHRwOi8vb2NzcC5nZW90cnVzdC5jb20wDQYJKoZIhvcNAQEFBQADggEBADOR NxHbQPnejLICiHevYyHBrbAN+qB4VqOC/btJXxRtyNxflNoRZnwekcW22G1PqvK/ ISh+UqKSeAhhaSH+LeyCGIT0043FiruKzF3mo7bMbq1vsw5h7onOEzRPSVX1ObuZ lvD16lo8nBa9AlPwKg5BbuvvnvdwNs2AKnbIh+PrI7OWLOYdlF8cpOLNJDErBjgy YWE5XIlMSB1CyWee0r9Y9/k3MbBn3Y0mNhp4GgkZPJMHcCrhfCn13mZXCxJeFu1e vTezMGnGkqX2Gdgd+DYSuUuVlZzQzmwwpxb79k1ktl8qFJymyFWOIPllByTMOAVM IIi0tWeUz12OYjf+xLQ= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDVDCCAjygAwIBAgIDAjRWMA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVT MRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i YWwgQ0EwHhcNMDIwNTIxMDQwMDAwWhcNMjIwNTIxMDQwMDAwWjBCMQswCQYDVQQG EwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEbMBkGA1UEAxMSR2VvVHJ1c3Qg R2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2swYYzD9 9BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9mOSm9BXiLnTjoBbdq fnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIuT8rxh0PBFpVXLVDv iS2Aelet8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6cJmTM386DGXHKTubU 1XupGc1V3sjs0l44U+VcT4wt/lAjNvxm5suOpDkZALeVAjmRCw7+OC7RHQWa9k0+ bw8HHa8sHo9gOeL6NlMTOdReJivbPagUvTLrGAMoUgRx5aszPeE4uwc2hGKceeoW MPRfwCvocWvk+QIDAQABo1MwUTAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTA ephojYn7qwVkDBF9qn1luMrMTjAfBgNVHSMEGDAWgBTAephojYn7qwVkDBF9qn1l uMrMTjANBgkqhkiG9w0BAQUFAAOCAQEANeMpauUvXVSOKVCUn5kaFOSPeCpilKIn Z57QzxpeR+nBsqTP3UEaBU6bS+5Kb1VSsyShNwrrZHYqLizz/Tt1kL/6cdjHPTfS tQWVYrmm3ok9Nns4d0iXrKYgjy6myQzCsplFAMfOEVEiIuCl6rYVSAlk6l5PdPcF PseKUgzbFbS9bZvlxrFUaKnjaZC2mqUPuLk/IH2uSrW4nOQdtqvmlKXBx4Ot2/Un hw4EbNX/3aBd7YdStysVAq45pmp06drE57xNNB6pXE0zX5IJL4hmXXeXxx12E6nV 5fEWCRE11azbJHFwLJhWC9kXtNHjUStedejV0NxPNO3CBWaAocvmMw== -----END CERTIFICATE-----
Split SSL certificates
2016-01-02T03:48:32.000Z
^(([0-1][0-9])|([2][0-3])):([0-5][0-9])$
03:59 01:59 05:59 23:35
Find Time
2018-01-24T17:20:57.000Z
Haiz
^5[1-5][0-9]{16}|^(222[1-9]|22[3-9]\\d|2[3-6]\\d{2}|27[0-1]\\d|2720)[0-9]{12}$
4213890016019399
Test
2021-04-11T09:42:47.000Z
\s*<span\s[^"]*\"[^"]*\">Item model number:\s*<\/span>\s*<span>(.*?)<\/span>
<span class="a-text-bold">Item model number: </span> <span>WX577HG4</span>
MODEL (PAG2)
2018-12-22T04:05:49.000Z
(\b\w+\b)([ ]+\1\b)+
the little cat cat is in the hat hat hat, we like it. the little cat cat is in the hat hat hat, we like it. the little cat cat is in the hat hat hat, we like it. the little cat cat is in the hat hat hat, we like it. the the little cat cat is in the hat hat hat, we like it. the the the little cat cat2 is in the hat hat hat2, we like it. aa abb bc ab bbc cd dc dc dc eg
分组与断言
2020-06-22T00:58:45.000Z
(<script.*src=)("|')(.*)('|")
<script type="javascript" src='oldscript.js' ></script> <img src='test.jpg' />
replace all script sources
2014-11-13T06:10:35.000Z
Matches a 4chan thread URL, see the examples
http(?:s)?\://boards\.4chan\.org/([a-z]*)/thread/([0-9]*)(?:\#[0-9a-z]*)?
https://boards.4chan.org/mlp/thread/5 http://boards.4chan.org/b/thread/570277846 https://boards.4chan.org/mlp/thread/19865655#q19865655 https://boards.4chan.org/mlp/thread/19775771 https://boards.4chan.org/co/thread/65737750#q65737750
Match 4chan thread URL
2014-09-24T00:58:28.000Z
handles quotes, non-quotes, angle bracket, parans, and trips extra white spaces
^\s+|\s*"\s*|\s*<.*|\S+@\S+|\s*\(\s*|\s*\)\s*
[email protected] (notes here) John Doe " John Doe " <[email protected]>
RipNameFromEmail
2016-09-22T00:38:44.000Z
Regex for Colombian phones (without +)
^((00|0)?57[1-9]{1}[0-9]{7,10})$
Colombian Phones
2023-10-04T09:24:35.000Z
Using exactly four 9s and no other digits, write an equation which evaluates to 100
^\({1,4}[9][\*\-\+\/][9]\)?[\*\-\+\/][9]\){0,2}[\*\-\+\/][9]\){0,1}
(9+9+9+9)
9999
2015-09-02T19:26:13.000Z
\/\*.*?\*\/
adsafsd asdfs /* foo bar baz x */ y asdf asdf zzz /** * class Notify * * @param int $ts * @param array $message * */ asdf class Foobar {
Get text of c-style comments
2015-10-04T02:06:16.000Z
<script>.*\/\/connect.facebook.net.*<\/script><div[^>]+class=\"fb-(video|post)\".*data-href=\"(.*?)\"[^>]*>.*?<\/div><\/div>
<p>จากกรณี นายพิชิต อายุ 23 ปี พนักงานการรถไฟแห่งประเทศไทย ได้โดยสารเครื่องบิน สายการบินไทยไลอ้อนแอร์ เที่ยวบินที่ SL8536 จากท่าอากาศยานดอนเมือง เมื่อวันที่ 1 พ.ย. และได้กล่าวแซวแอร์โฮสเตสว่า มีระเบิดอยู่ภายในกระเป๋าเดินทาง ทำให้เที่ยวบินต้องถูกยกเลิก เพื่อทำการตรวจสอบกระเป๋าผู้โดยสารทุกใบหมด</p> <p><strong>อ่านข่าวที่เกี่ยวข้อง</strong> : <a href="http://news.sanook.com/1892574/">เปิดใจหนุ่มแซวแอร์ฯ กระเป๋ามีระเบิด บอกรู้เท่าไม่ถึงการณ์-เพิ่งเคยบิน</a>&nbsp;</p> <p>ล่าสุด (3 พ.ย.) ในโลกออนไลน์ได้มีการแชร์ข้อความจาก<strong>เฟซบุ๊กแฟนเพจ Crewabs Cabincrew</strong> ได้โพสต์ข้อความเกี่ยวกับกรณีดังกล่าวว่า แอร์ฯซึ่งอยู่บนไฟล์ทที่ตกเป็นข่าวเป็นลูกศิษย์ของตนเอง และได้ทักแชทมาเพื่อระบายความในใจ และอธิบายถึงเหตุการณ์ที่เกิดขึ้นจริงบนเที่ยวบินดังกล่าว</p> <p>เนื่องจากมีคนด่าทอว่าแอร์ฯทำเกินกว่าเหตุ ทำให้เรื่องราวบานปลายและกลายเป็นว่าหนุ่มคนดังกล่าวน่าสงสารน่าเห็นใจนั้น โดยใจความสำคัญมีดังนี้</p> <p>"เห็นด้วยไหมคะว่า ? จากการอ่านข่าว เราจินตนาการไปว่า น้องแอร์ช่วยยกกระเป๋าสัมภาระของหนุ่มรถไฟเก็บ แล้วชายหนุ่มก็อาจจะพูดยิ้มๆแซวๆทำนองว่า เบาๆนะ เดี๋ยวระเบิด ขำกิ๊กกั๊กทำนองล้อเล่น บังเอิญแอร์(ที่เราคิดว่าเคร่งเกิ๊น)ไปฟ้องกัปตัน ทุกคนทำเป็นเรื่องใหญ่โต น้องรถไฟผู้น่าสงสาร แค่ล้อเล่น แต่แอร์ทำเป็นเรื่องใหญ่</p> <p>แต่จากการได้คุยกับน้องแอร์แล้ว น้องระบายคำแรกเลยคือ "หนูเครียดนะพี่ หนูไปทำให้เขาและครอบครัวเขาลำบากรึเปล่า" แต่เรื่องที่เกิดจริงๆ มันไม่ใช่อย่างที่คนทั่วไป(บางท่าน)เข้าใจ</p> <p>น้องเล่าว่า.....<br />ผู้โดยสารมากับเพื่อนๆ ค่ะ นั่งตรงemergency exit(ประตูทางออกฉุกเฉิน) แถว20 หนูก็เช็คcabinตรวจตราความเรียบร้อยก่อนออกบิน เจอกระเป๋าเล็ก(ที่เขาถือมาในวันที่ไปโรงพัก) ขนาดเล็กๆ ประมาณ15x15 cm ได้ เลยจะหยิบเพื่อเก็บให้ เขาก็พูดหน้านิ่งๆ เน้นว่า นิ่งๆ ไม่มียิ้มว่า "สงสัยจะมีระเบิด" หนูหันไปดุด้วยน้ำเสียงจริงจังว่า "พูดแบบนี้ไม่ได้นะคะ มีสิทธิ์จะโดนเชิญลงจากเครื่อง" เขาก็ยังหน้านิ่งและไม่มีท่าทีจะปฏิเสธ</p> <p>ต่อมาสิ่งที่น้องแอร์คนนี้ทำคือ เดินไปแจ้งin charge(ภาษาง่ายๆประมาณตำแหน่งรองหัวหน้าลูกเรือค่ะ) และin chargeก็เดินมาถามให้แน่ใจว่าเขาไม่ได้ล้อเล่น และที่น่ากลัวคือ เขาหน้านิ่งพูดคำเดิม "มีระเบิด" ไม่มีท่าทีว่าจะจีบแอร์อะไรแบบนั้น หน้าซีเรียส เอาจริง ไม่มีใครเดาทางได้ว่าเขาพูดจริงหรือล้อเล่น เพื่อนๆเขาไม่มีใครว่าอะไร in chargeถามย้ำอยู่2รอบ ยังไม่มีการยอมรับว่าแซวเล่นหรืออะไร สีหน้าจริงจังไม่มีหัวเราะหรือยิ้มใดๆ พวกเราจึงแจ้งเพอเซอร์(หัวหน้าลูกเรือ)และต่อไปยังกัปตัน และกัปตันจึงให้ทุกคนรีบอพยพออกจากเครื่อง</p> <p>หลังจากฟังแล้ว Crewabsบอกเลยว่ามันผิดจากที่คิดไว้ เพราะตอนแรกคิดว่าหนุ่มรถไฟคงมีสีหน้ายิ้มๆ หัวเราะทำนองแกล้งแซว แต่น้องแอร์ยืนยัน ถามกี่รอบ หลายรอบก็แล้ว ไม่มียิ้ม ทำหน้านิ่ง และไม่มีการยอมรับว่า ผมล้อเล่นหรือพูดเล่น เป็นใคร ใครจะกล้าบินคะ? จนสุดท้ายเมื่อเรื่องใหญ่ทุกคนต้องออกจากเครื่องเพราะมีระเบิดตามที่อ้าง เพื่อนของเขาจึงมาถามว่า "นี่เรื่องใหญ่เหรอ"</p> <p>แต่สิ่งที่น่าเจ็บใจแทนลูกเรือนักบินในไฟล์ทก็คือ มีคนไปcommentว่า #แอร์ทำเกินไป #สงสารน้องหนุ่มรถไฟ หรือแม้กระทั่งใช้คำหยาบคายต่อว่า</p> <p>Crewabsได้แต่ให้กำลังใจน้องว่า น้องทำถูกแล้วค่ะ เพราะถ้ามันเป็นระเบิดจริง บินขึ้นไป ระเบิดตายกันยกลำ ก็จะมีคนมาด่าหนูอยู่ดีว่า "ทำไมแอร์หละหลวมไม่เคร่งเรื่องความปลอดภัย การที่น้องทำแบบนี้ไม่เพียงเพื่อความปลอดภัย มันยังรักษาชื่อเสียงของสายการบินน้องด้วย"</p> <p>Crewabsเองก็กำลังจะบินกับสายการบินสิงโตแดงเร็วๆนี้ค่ะ ซื้อตั๋วแล้ว ยิ่งเจอข่าวแบบนี้ ยิ่งมั่นใจในพนักงานต้อนรับของสายนี้ แต่สิ่งที่เราควบคุมไม่ได้ คือ ผู้โดยสารมากกว่าค่ะ ใครที่ต่อว่าน้องแอร์และทีม ขอให้ลองคิดใหม่ เห็นต่างได้ แต่อย่าถึงขั้นด่าว่ากันว่าพวกเราเป็นควายเลยนะคะ</p> <p>#ถึงเป็นควาย #ก็เซฟชีวิตผู้โดยสารทุกคนจากความชิบหายมานักต่อนักแล้วนะคะ"</p> <p><em>ขอขอบคุณข้อมูลจาก <a href="https://www.facebook.com/CrewabsCabincrew/photos/a.163266007065328.35057.162290157162913/981295968595657/?type=3">เฟซบุ๊ก Crewabs Cabincrew</a></em></p> <script type="text/javascript">// <![CDATA[ (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/th_TH/sdk.js#xfbml=1&version=v2.3"; fjs.parentNode.insertBefore(js, fjs);}(document, 'script', 'facebook-jssdk')); // ]]></script> <div class="fb-post" data-href="https://www.facebook.com/CrewabsCabincrew/photos/a.163266007065328.35057.162290157162913/981295968595657/?type=3" data-width="500"> <div class="fb-xfbml-parse-ignore"> <blockquote cite="https://www.facebook.com/CrewabsCabincrew/photos/a.163266007065328.35057.162290157162913/981295968595657/?type=3"> <p>จากใจแอร์สาวบนไฟล์ทที่โดนหนุ่มรถไฟจีบด้วยมุก"ระเบิด"กรณีหนุ่มรถไฟ แซวแอร์ไทยไลอ้อน อยากขอพื้นที่ชี้แจงให้ลูกเรือสาวในไ...</p> Posted by <a href="https://www.facebook.com/CrewabsCabincrew/">Crewabs Cabincrew</a> on&nbsp;<a href="https://www.facebook.com/CrewabsCabincrew/photos/a.163266007065328.35057.162290157162913/981295968595657/?type=3">3 พฤศจิกายน 2015</a></blockquote> </div> </div>
test
2015-11-06T08:54:50.000Z
^.*?[=]([a-zA-Z0-9]*)
Route Regex
2014-12-25T19:37:56.000Z
Original credit for this expression goes to: https://emailregex.com/
^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$
Javascript Email Verification RFC5322
2023-09-14T21:34:53.000Z
Used in Powershell to validate that: -Only the desired characters will be used regardless of Case. -Accept between 1 and 64 Characters -Ending should be one of the 4 values separated by "|" [ValidatePattern('(?i)^[-_a-z0-9]{1,64}(_dev|_test|_pre|_prod)$')][string]$pattern = read-host "Write DB Name"
(?i)^[-_a-z0-9]{1,64}(_dev|_test|_pre|_prod)$
min0db_pre
Case Insensitive text between 1 and 64 Characters, ending with one of 4 suffix
2020-06-25T06:50:13.000Z