description
stringlengths 0
8.24k
| regex
stringlengths 1
26.3k
| text
stringlengths 0
2.47M
⌀ | title
stringlengths 1
150
| created_at
stringlengths 24
24
|
---|---|---|---|---|
Takes a set of property declarations to use for destination and source mapping using substitution.
substition example: dst.$5 = src.$5;
Basic productivity tool ... I used it for creating an automapper type converter | ([a-zA-Z]+[\s]+(?:((static|virtual)[\s]+))?[a-zA-Z<>0-9]+[\s]+)(([a-zA-Z<>0-9]+)[\s]+(.+)) | public virtual Guid Id { get; set; }
public long NumericId { get; set; }
public Guid AccountId { get; set; }
public string AccountCode { get; set; }
public List<GroupDto> Groups { get; private set; }
public Direction Direction { get; set; } | C# replace property declaration with source to destination mapping | 2016-10-02T17:27:39.000Z |
^\+?(0032|32)?0?(4[0-9]{2}|10)\/?[0-9 .]{6,8}$ | <header class="noSelect">
<div id="HIAccueil" class="I-B">
<img class="pointer" src="IMG/BACKGROUND/HEADER/logoban.png" alt="Accueil" onclick="clickMenu(tousLesMenus, 2, tousLesMenus[0].nom, 1, 0, 0, 0, tousLesMenus[1].url);">
</div>
<div id="HIPC">
<div id="HIProfile" class="I-B">
<!-- vide pour img via js -->
</div>
<div id="HIConnect" class="I-B">
<img class="pointer" src="IMG/BACKGROUND/HEADER/connect_hover.gif" alt="Connect" onclick="clickMenu(tousLesMenus, 5, tousLesMenus[0].nom, 4, 1, 1, 0, tousLesMenus[4].url);">
</div>
</div>
</header>
[email protected]
TrallocNivek02.bazaRd421gmail45.c
010/226679
010226679
010/22.66.79
010/22 66 79
0470040747
0470/040747
0470/040.747
0470/04.07.47
0470/04 07 47
0470/040 747
+0032470040747
0032470/040 747
+00320470040747 | num tel | 2018-10-03T22:26:43.000Z |
|
Example:
1234-BBB | ^[0-9]{4}-([B-D]|[F-H]|[J-N]|[P-T]|[V-Z]){3}$ | 1234-BHB | Spanish number plate with hyphens (EU format) | 2019-10-04T10:20:29.000Z |
(?<=<p>)(.*) (?=</p>)
Выделение текста в определенном теге без учета переноса строки | (?<=<p>)(.*) (?=</p>) |
<p> Праздничную иллюминацию в Липецке прежде традиционно отключали 15 января. Однако в этом году она будет работать до конца месяца, соответственно дольше обычного жители областного центра смогут любоваться световыми арт-объектами и нарядными новогодними елками. Такое решение принял глава города Сергей Иванов.Как сообщил председатель департамента дорожного хозяйства и благоустройства Алексей Бахтин, идея навеяна самой нынешней зимой. Яркие краски светового оформления города подчеркнут красоту заснеженных улиц и продлят праздничное настроение липчанам. </p>
<t> В администрации Липецка - незаурядная отставка: уходит управделами Виктор Ивлев, житель Тербунов, которого в мэрию привел его земляк Сергей Иванов, ставший главой города волей Липецкого горсовета в декабре 2015 года. Последним местом работы Виктора Ивлева в Тербунах была должность председателя районной территориальной избирательной комиссии.
- 14 января станет последним днем работы Виктора Денисовича. Он принял такое решение по состоянию здоровья. Недавно он перенес тяжелую операцию на сердце и решил уйти с должности на пенсию, - прокомментировал GOROD48 циркулирующие слухи об отставке управделами мэрии глава Липецка Сергей Иванов. </t>(?<=<title>)(.*)(?=</title>) | Выделение текста в определенном теге без учета переноса строки | 2019-01-14T11:57:34.000Z |
match int or float number, and following word (unit for example) | ([ 0-9]*[0-9]+(?:\.|,)?[0-9]*)[ ]*(.*) | 1200personne,de si | get number and unit in string | 2015-07-21T09:35:55.000Z |
Given a string that represents a location in the USA, find any version of the USA country name as one would expect at the end of that string. Does not match on if it finds it elsewhere such as a freeway name or the "us" in the city of "Russellville". | (\b[u](nited)?( )?[s](tates)?(a|( of america))?\b)|(u\.s\.(a\.)?)$ | Find any version of US country name in address string | 2015-02-11T00:09:54.000Z |
|
Parses date in (Month Day Year) format with delimiting chars being -\/ or whitespace | (?P<Month>(?:01|02|03|04|05|06|07|08|09|10|11|1|2|1|2|3|4|5|6|7|8|9|Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec|January|February|March|April|May|June|July|August|September|October|November|December))[\-/\\\s]+(?P<Day>[0-3]?\d)[\-/\\\s]+(?P<Year>\d+) | 1-2-1995 | Date Parser | 2015-11-20T20:40:13.000Z |
test | \w* | test | 2015-03-26T14:48:06.000Z |
|
Convert camelCase to snake_case
```py
def camelCase2snake_case(txt):
"""
Convert camelCase to snake_case
https://regex101.com/library/wUcSv4
"""
txt = re.sub(r'([A-Z]+)', '_\\1', txt.strip())
txt = txt.lower()
return txt
```
In Python 🐍 the `\L` case modifier in the substitution pattern to lower case is not supported.
By [JV-conseil](https://github.com/JV-conseil) | ([A-Z]+) | 'coordinatorCountry': 'coordinator_country',
'ecContribution': 'ec_contribution',
'ecMaxContribution': 'ec_max_contribution',
'endDate': 'end_date',
'frameworkProgramme': 'framework_programme',
'fundingScheme': 'funding_scheme',
'participantCountries': 'participant_countries',
'projectUrl': 'project_url',
'startDate': 'start_date',
'totalCost': 'total_cost',
'activityType': 'activity_type',
'ecCContribution': 'ec_contribution',
'endOfParticipation': 'end_of_participation',
'organizationUrl': 'organization_url',
'postCode': 'post_code',
'shortName': 'short_name',
'vatNumber': 'vat_number',
'projectID': 'project_id', | camelCase2snake_case | 2023-03-23T19:10:02.000Z |
Pars such a log:
{"log":"I1219 13:32:01.389913 1 server.go:114] Version: v1.8.0\n","stream":"stderr","time":"2017-12-19T13:32:01.390360472Z"} | ^\D{8}(?<severity>\w)(?<time>\d{4}\s[^\s]*)\s+(?<pid>\d+)\s+(?<source>[^ \]]+)\] (?<message>.*)$ | {"log":"I1219 13:32:01.389913 1 server.go:114] Version: v1.8.0\n","stream":"stderr","time":"2017-12-19T13:32:01.390360472Z"}
{"log":"I1219 13:32:01.390379 1 plugins.go:101] No cloud provider specified.\n","stream":"stderr","time":"2017-12-19T13:32:01.390969576Z"}
{"log":"I1219 13:32:01.634232 1 feature_gate.go:156] feature gates: map[Initializers:true]\n","stream":"stderr","time":"2017-12-19T13:32:01.635347611Z"}
{"log":"I1219 13:32:01.635456 1 initialization.go:84] enabled Initializers feature as part of admission plugin setup\n","stream":"stderr","time":"2017-12-19T13:32:01.635590586Z"}
{"log":"W1219 13:32:01.636255 1 admission.go:66] PersistentVolumeLabel admission controller is deprecated. Please remove this controller from your configuration files and scripts.\n","stream":"stderr","time":"2017-12-19T13:32:01.636854971Z"}
{"log":"W1219 13:32:01.713333 1 genericapiserver.go:317] Skipping API batch/v2alpha1 because it has no resources.\n","stream":"stderr","time":"2017-12-19T13:32:01.713583761Z"}
{"log":"W1219 13:32:01.731298 1 genericapiserver.go:317] Skipping API rbac.authorization.k8s.io/v1alpha1 because it has no resources.\n","stream":"stderr","time":"2017-12-19T13:32:01.732776091Z"}
{"log":"[restful] 2017/12/19 13:32:01 log.go:33: [restful/swagger] listing is available at https://185.150.9.204:6443/swaggerapi\n","stream":"stderr","time":"2017-12-19T13:32:01.799479979Z"}
{"log":"[restful] 2017/12/19 13:32:01 log.go:33: [restful/swagger] https://185.150.9.204:6443/swaggerui/ is mapped to folder /swagger-ui/\n","stream":"stderr","time":"2017-12-19T13:32:01.799497746Z"}
{"log":"[restful] 2017/12/19 13:32:02 log.go:33: [restful/swagger] listing is available at https://185.150.9.204:6443/swaggerapi\n","stream":"stderr","time":"2017-12-19T13:32:02.471721558Z"}
{"log":"[restful] 2017/12/19 13:32:02 log.go:33: [restful/swagger] https://185.150.9.204:6443/swaggerui/ is mapped to folder /swagger-ui/\n","stream":"stderr","time":"2017-12-19T13:32:02.47174796Z"}
{"log":"I1219 13:32:04.992367 1 serve.go:85] Serving securely on 0.0.0.0:6443\n","stream":"stderr","time":"2017-12-19T13:32:04.993893788Z"}
{"log":"I1219 13:32:04.992843 1 apiservice_controller.go:112] Starting APIServiceRegistrationController\n","stream":"stderr","time":"2017-12-19T13:32:04.993922573Z"}
{"log":"I1219 13:32:04.992865 1 cache.go:32] Waiting for caches to sync for APIServiceRegistrationController controller\n","stream":"stderr","time":"2017-12-19T13:32:04.993925574Z"}
{"log":"I1219 13:32:04.992909 1 available_controller.go:192] Starting AvailableConditionController\n","stream":"stderr","time":"2017-12-19T13:32:04.993927705Z"}
{"log":"I1219 13:32:04.992925 1 cache.go:32] Waiting for caches to sync for AvailableConditionController controller\n","stream":"stderr","time":"2017-12-19T13:32:04.993929704Z"}
{"log":"I1219 13:32:04.992944 1 crd_finalizer.go:242] Starting CRDFinalizer\n","stream":"stderr","time":"2017-12-19T13:32:04.993931736Z"}
{"log":"I1219 13:32:04.992949 1 customresource_discovery_controller.go:152] Starting DiscoveryController\n","stream":"stderr","time":"2017-12-19T13:32:04.993933463Z"}
{"log":"I1219 13:32:04.992953 1 naming_controller.go:277] Starting NamingConditionController\n","stream":"stderr","time":"2017-12-19T13:32:04.993935376Z"}
{"log":"I1219 13:32:04.992975 1 crdregistration_controller.go:112] Starting crd-autoregister controller\n","stream":"stderr","time":"2017-12-19T13:32:04.993937164Z"}
{"log":"I1219 13:32:04.992979 1 controller_utils.go:1041] Waiting for caches to sync for crd-autoregister controller\n","stream":"stderr","time":"2017-12-19T13:32:04.993939029Z"}
{"log":"I1219 13:32:04.994147 1 controller.go:84] Starting OpenAPI AggregationController\n","stream":"stderr","time":"2017-12-19T13:32:04.994289148Z"}
{"log":"I1219 13:32:05.092979 1 cache.go:39] Caches are synced for APIServiceRegistrationController controller\n","stream":"stderr","time":"2017-12-19T13:32:05.093392359Z"}
{"log":"I1219 13:32:05.092978 1 cache.go:39] Caches are synced for AvailableConditionController controller\n","stream":"stderr","time":"2017-12-19T13:32:05.093418406Z"}
{"log":"I1219 13:32:05.093102 1 controller_utils.go:1048] Caches are synced for crd-autoregister controller\n","stream":"stderr","time":"2017-12-19T13:32:05.093430972Z"}
{"log":"I1219 13:32:05.093142 1 autoregister_controller.go:136] Starting autoregister controller\n","stream":"stderr","time":"2017-12-19T13:32:05.093433199Z"}
{"log":"I1219 13:32:05.093146 1 cache.go:32] Waiting for caches to sync for autoregister controller\n","stream":"stderr","time":"2017-12-19T13:32:05.093435176Z"}
{"log":"I1219 13:32:05.193207 1 cache.go:39] Caches are synced for autoregister controller\n","stream":"stderr","time":"2017-12-19T13:32:05.193541587Z"}
{"log":"I1219 13:32:09.998168 1 trace.go:76] Trace[1836345649]: \"Create /api/v1/namespaces\" (started: 2017-12-19 13:32:05.995599565 +0000 UTC) (total time: 4.002539088s):\n","stream":"stderr","time":"2017-12-19T13:32:10.008954395Z"}
{"log":"Trace[1836345649]: [4.000446951s] [4.000418303s] About to store object in database\n","stream":"stderr","time":"2017-12-19T13:32:10.008974063Z"}
{"log":"I1219 13:32:10.629009 1 trace.go:76] Trace[1988456937]: \"Create /api/v1/namespaces/kube-system/events\" (started: 2017-12-19 13:32:06.625541932 +0000 UTC) (total time: 4.003444046s):\n","stream":"stderr","time":"2017-12-19T13:32:10.63530296Z"}
{"log":"Trace[1988456937]: [4.001682236s] [4.001642828s] About to store object in database\n","stream":"stderr","time":"2017-12-19T13:32:10.635326659Z"}
{"log":"I1219 13:32:11.593994 1 trace.go:76] Trace[1945366238]: \"Create /api/v1/nodes\" (started: 2017-12-19 13:32:07.591993863 +0000 UTC) (total time: 4.00197912s):\n","stream":"stderr","time":"2017-12-19T13:32:11.59759386Z"}
{"log":"Trace[1945366238]: [4.000615689s] [4.000505107s] About to store object in database\n","stream":"stderr","time":"2017-12-19T13:32:11.597618565Z"}
{"log":"I1219 13:32:12.651139 1 trace.go:76] Trace[648564056]: \"Create /api/v1/namespaces/kube-system/events\" (started: 2017-12-19 13:32:08.641834265 +0000 UTC) (total time: 4.009285942s):\n","stream":"stderr","time":"2017-12-19T13:32:12.65281182Z"}
{"log":"Trace[648564056]: [4.001050787s] [4.001021095s] About to store object in database\n","stream":"stderr","time":"2017-12-19T13:32:12.652826332Z"}
{"log":"I1219 13:32:14.684575 1 trace.go:76] Trace[1339119512]: \"Create /apis/authentication.k8s.io/v1/tokenreviews\" (started: 2017-12-19 13:32:10.677360533 +0000 UTC) (total time: 4.007189394s):\n","stream":"stderr","time":"2017-12-19T13:32:14.689524885Z"}
{"log":"Trace[1339119512]: [4.004918437s] [4.004846143s] About to store object in database\n","stream":"stderr","time":"2017-12-19T13:32:14.689537857Z"}
| kube_log_regx2 | 2017-12-19T14:45:42.000Z |
Trova la stringa corrispondente ad un codice fiscale italiano | [A-Z]{6}\d{2}[A-Z]{1}\d{2}[A-Z]{1}\d{3}[A-Z]{1} | SLMSVR03P18E625R | Codice fiscale | 2023-10-04T10:49:31.000Z |
(^|\+|(?<=\s))(100|\d\d?)(?=(\s|$)) | 0 Sam has 200 apples. He gives Todd 20 and Mary 125. and The weather is -5 C today, but will be +5 C tomorrow. 0 101 100 | positive numbers up to 100 | 2020-06-02T15:33:02.000Z |
|
\[([^,\]]+),([^,\]]+)\] | this is the range of values [a1,b1] and [b1,a1]
this is the range of values (a1,b1) and [b2,a2] | Matching values between square brackets | 2014-06-02T10:35:38.000Z |
|
accept number , space, . and - | (\d{1,4}?[-.\s]?)* | 01.01 0-205060604-505202
| phone number | 2015-06-09T11:32:50.000Z |
Mach standard statistical geography identifiers for UK. | S\d{8} | [2] http://statistics.gov.scot/id/statistical-geography/S02000002
[3] http://statistics.gov.scot/id/statistical-geography/S02000003
[4] http://statistics.gov.scot/id/statistical-geography/S02000004
[5] http://statistics.gov.scot/id/statistical-geography/S02000005
[6] http://statistics.gov.scot/id/statistical-geography/S02000006
[7] http://statistics.gov.scot/id/statistical-geography/S02000007
[8] http://statistics.gov.scot/id/statistical-geography/S02000008
[9] http://statistics.gov.scot/id/statistical-geography/S02000009
[10] http://statistics.gov.scot/id/statistical-geography/S02000010
[11] http://statistics.gov.scot/id/statistical-geography/S02000011
[12] http://statistics.gov.scot/id/statistical-geography/S02000012 | Match statistical geographies (UK) | 2015-11-27T15:24:56.000Z |
([A-Z][a-züÜöÖäÄßé]+((\-|\ )[A-Z][a-züÜöÖäÄßé]+)+) | Name | 2015-02-13T16:13:51.000Z |
||
trimming unwanted timestamps | ( \(\d{4}_\d{2}_\d{2} \d{2}_\d{2}_\d{2} \w{3}\))+|\1.\w{3}\n |
Acacia tree 2 (2014_10_06 13_06_05 UTC) (2015_12_03 14_18_17 UTC).jpg
Acacia tree 2 (2015_12_03 14_18_17 UTC).jpg
JOURNEY TO ARABIA (2014_10_06 13_06_05 UTC) (2015_12_03 14_18_17 UTC).png
Acacia Tree 4 (2014_10_15 02_10_34 UTC) (2015_12_03 14_18_17 UTC).jpg
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\AFRICA THE MOTHER OF US ALL 3 (2015_12_03 14_18_17 UTC).png
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\AFRICAN MAN + CROCODILE (2014_10_06 13_06_05 UTC) (2015_12_03 14_18_17 UTC).png
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\AFRICAN MAN + CROCODILE (2014_10_15 02_10_34 UTC) (2015_12_03 14_18_17 UTC).png
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\AFRICAN MAN + CROCODILE (2015_12_03 14_18_17 UTC).png
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\African muslim with favorite slave (2014_10_06 13_06_05 UTC) (2015_12_03 14_18_17 UTC).png
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\African muslim with favorite slave (2014_10_15 02_10_34 UTC) (2015_12_03 14_18_17 UTC).png
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\African muslim with favorite slave (2015_12_03 14_18_17 UTC).png
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\amagufwa ya bene Rwanda (2014_10_06 13_06_05 UTC) (2015_12_03 14_18_17 UTC).jpg
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\amagufwa ya bene Rwanda (2014_10_15 02_10_34 UTC) (2015_12_03 14_18_17 UTC).jpg
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\amagufwa ya bene Rwanda (2015_12_03 14_18_17 UTC).jpg
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\ama-Rank y' inyenzi (2014_10_06 13_06_05 UTC) (2015_12_03 14_18_17 UTC).png
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\ama-Rank y' inyenzi (2014_10_15 02_10_34 UTC) (2015_12_03 14_18_17 UTC).png
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\ama-Rank y' inyenzi (2015_12_03 14_18_17 UTC).png
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\Amenhotep_III (1) (2014_10_06 13_06_05 UTC) (2015_12_03 14_18_17 UTC).jpg
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\Amenhotep_III (1) (2014_10_15 02_10_34 UTC) (2015_12_03 14_18_17 UTC).jpg
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\Amenhotep_III (1) (2015_12_03 14_18_17 UTC).jpg
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\Amenhotep_III (2014_10_06 13_06_05 UTC) (2015_12_03 14_18_17 UTC).jpg
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\Amenhotep_III (2014_10_15 02_10_34 UTC) (2015_12_03 14_18_17 UTC).jpg
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\Amenhotep_III (2015_12_03 14_18_17 UTC).jpg
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\amenhotep3_head_03 (2014_10_06 13_06_05 UTC) (2015_12_03 14_18_17 UTC).jpg
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\amenhotep3_head_03 (2014_10_15 02_10_34 UTC) (2015_12_03 14_18_17 UTC).jpg
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\amenhotep3_head_03 (2015_12_03 14_18_17 UTC).jpg
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\an Egyptian [Sudanese woman] (2014_10_06 13_06_05 UTC) (2015_12_03 14_18_17 UTC).jpg
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\an Egyptian [Sudanese woman] (2014_10_15 02_10_34 UTC) (2015_12_03 14_18_17 UTC).jpg
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\an Egyptian [Sudanese woman] (2015_12_03 14_18_17 UTC).jpg
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\an Egyptian [Sudanese woman]2 (2014_10_06 13_06_05 UTC) (2015_12_03 14_18_17 UTC).jpg
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\an Egyptian [Sudanese woman]2 (2014_10_15 02_10_34 UTC) (2015_12_03 14_18_17 UTC).jpg
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\an Egyptian [Sudanese woman]2 (2015_12_03 14_18_17 UTC).jpg
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\Ancient Africa How Europeans have it wrong - Kevin MacDonald (2014_10_06 13_06_05 UTC) (2015_12_03 14_18_17 UTC).png
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\Ancient Africa How Europeans have it wrong - Kevin MacDonald (2014_10_15 02_10_34 UTC) (2015_12_03 14_18_17 UTC).png
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\Ancient Africa How Europeans have it wrong - Kevin MacDonald (2015_12_03 14_18_17 UTC).png
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\ancient African script (2014_10_06 13_06_05 UTC) (2015_12_03 14_18_17 UTC).png
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\ancient African script (2014_10_15 02_10_34 UTC) (2015_12_03 14_18_17 UTC).png
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\ancient African script (2015_12_03 14_18_17 UTC).png
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\Ancient African Scripts (2014_10_06 13_06_05 UTC) (2015_12_03 14_18_17 UTC).png
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\Ancient African Scripts (2014_10_15 02_10_34 UTC) (2015_12_03 14_18_17 UTC).png
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\Ancient African Scripts (2015_12_03 14_18_17 UTC).png
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\ancient African writings (2014_10_06 13_06_05 UTC) (2015_12_03 14_18_17 UTC).png
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\ancient African writings (2014_10_15 02_10_34 UTC) (2015_12_03 14_18_17 UTC).png
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\ancient African writings (2015_12_03 14_18_17 UTC).png
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\ANCIENT HEBREWS DWELLINGS (2014_10_06 13_06_05 UTC)
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\Bamwe mu basigajwe inyuma n’amateka bo mu Mudugudu wa Bukamba - LEVITES (2015_12_03 14_18_17 UTC).jpg
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\Baobab (Adansonia digitata) and elephant, Tanzania (2014_10_06 13_06_05 UTC) (2015_12_03 14_18_17 UTC).jpg
D:\Kmna\Desktop\FACE-PICTS\RAW MATERIALS\Baobab (Adansonia digitata) and elephant, Tanzania (2014_10_15 02_10_34 UTC) (2015_12_03 14_18_17 UTC).jpg | removing a match (Date timefield) | 2015-12-09T08:56:42.000Z |
(<\sREP\s1\s\S+\s.+\s>) | < REP 1 CHAN_NAME {yyyyyyyy} >
< REP 1 AUDIO_GAIN 042>
< REP 1 GROUP_CHAN gg, cc >
< REP 1 FREQUENCY yyyyyy >
< REP 1 ENCRYPTION yy > | test | 2015-11-29T03:22:22.000Z |
|
(\D+)(\d{4})(\d{2})(\d{2})T(\d{2})(\d{2})(\d{2})(\D+)(\d{4})(\d{2})(\d{2})T(\d{2})(\d{2})(\d{2})(\D+) | BEGIN:VEVENT\r\n
DTSTART;VALUE=DATE-TIME:20160124T160000Z\r\n
DTEND;VALUE=DATE-TIME:20160124T173000Z\r\n
END:VEVENT\r\n | dates | 2016-04-19T12:24:37.000Z |
|
^"(.*)\n([\w ]+)(\d*)\n\(([\d\.]+), ([\d\-\.]+)\)" | Location
"11305 Cezanne St
78726
(30.44945, -97.820962)"
"12904 Schleicher Trl
78732
(30.381982, -97.893992)"
"11511 Catalonia Dr
78759
(30.410825, -97.739233)"
"11511 Catalonia Dr
78759
(30.410825, -97.739233)"
"4809 Clear View Dr
78725
(30.244094, -97.581411)"
"4809 Clear View Dr
78725
(30.244094, -97.581411)"
"4809 Clear View Dr
78725
(30.244094, -97.581411)"
"13101 Winding Creek Rd
78736
(30.240521, -97.992054)"
"705 Texas St
78705
(30.296976, -97.728619)"
"2401 Cecil Dr
78744
(30.165036, -97.773046)"
"2401 Cecil Dr
78744
(30.165036, -97.773046)"
"905 Tudor House Road
78660
(30.421455, -97.640466)"
"2718 Jorwoods Dr
78745
(30.201192, -97.8219)"
"1411 Justin Ln
78757
(30.341012, -97.727488)"
"2520 East 3rd St
78702
(30.255757, -97.714748)"
"4420 Dovemeadow Dr
78744
(30.188978, -97.750916)"
"903 Vincent Place
78660
(30.443792, -97.651432)"
"903 Vincent Place
78660
(30.443792, -97.651432)"
"6501 Corpus Christi Dr
78729
(30.446164, -97.745231)"
"14329 Teacup Ln
78660
(30.418031, -97.636836)"
"14329 Teacup Ln
78660
(30.418031, -97.636836)"
"9211 Lauralan Dr
78736
(30.244022, -97.90871)"
"4812 Candletree Ln
78744
(30.188373, -97.746254)"
"15109 Holly Ln
78734
(30.366232, -97.94599)"
"20608 Ed Acklin Rd
78653
(30.27638, -97.491359)"
"7600 Bloomfield Ave
78745
(30.204975, -97.828903)"
"2815 Rockridge Dr
78744
(30.182879, -97.753569)"
"1712 Whitney Way
78741
(30.230474, -97.710957)"
"1709 Shadowview Dr
78758
(30.410606, -97.690225)"
"1302 Lipan Trl
78733
(30.339241, -97.870507)"
"5336 Magdelena Dr
78704
(30.257628, -97.833678)"
"1302 Canyon Edge Dr
78733
(30.336086, -97.864308)"
"2401 Emmett Pkwy
78728
(30.452399, -97.6777)"
"5931 Cape Coral Dr
78746
(30.278948, -97.836075)"
"11929 Rosethorn Dr
78758
(30.400145, -97.700419)"
"11504 Murcia Dr
78759
(30.40992, -97.738795)"
"7002 Montana St
78741
(30.22887, -97.691651)"
"3703 Grayson Ln
78722
(30.288216, -97.708994)"
"1205 Quail Park Dr
78758
(30.36542, -97.706031)"
"11824 Morning View Dr
78617
(30.15393, -97.647847)"
"11824 Morning View Dr
78617
(30.15393, -97.647847)"
"7400 Espina Drive
78739
(30.184836, -97.917651)"
"4707 Carsonhill Dr
78723
(30.288232, -97.676602)"
"14028 Lakeview Dr
78732
(30.414996, -97.893207)"
"18300 Belfry Pass
78653
(30.316997, -97.530072)"
"7916 Adelaide Dr
78739
(30.19158, -97.919402)"
"1512 Miss Allisons Way
78660
(30.447836, -97.65996)"
"911 Peggotty Pl
78753
(30.387673, -97.66531)"
"7005 Bright Star Ln
78736
(30.249735, -97.908418)"
"2815 Oak Ridge Dr
78669
(30.36881, -98.036181)"
"2815 Oak Ridge Dr
78669
(30.36881, -98.036181)"
"4704 Sunridge Ct
78741
(30.219579, -97.727328)"
"7128 Mumruffin Ln
78754
(30.344789, -97.610169)"
"7701 Callbram Ln
78736
(30.233262, -97.89253)"
"6604 Jamaica Ct
78757
(30.347375, -97.748886)"
"3415 Sweetgum
Trc 78713
(30.459228, -97.824468)"
| DD Addresses | 2016-03-08T01:05:33.000Z |
|
IOS3166 Country Code Identification REGEX | (^.+?)\s+(\w{2})\s+(\w{3})\s+(\d{3}) | BOSNIA AND HERZEGOWINA BA BIH 070
BOTSWANA BW BWA 072
BOUVET ISLAND BV BVT 074
BRAZIL BR BRA 076
BRITISH INDIAN OCEAN TERRITORY IO IOT 086
BRUNEI DARUSSALAM BN BRN 096
BULGARIA BG BGR 100
BURKINA FASO BF BFA 854
BURUNDI BI BDI 108
CAMBODIA KH KHM 116
CAMEROON CM CMR 120
CANADA CA CAN 124
CAPE VERDE CV CPV 132
CAYMAN ISLANDS KY CYM 136
CENTRAL AFRICAN REPUBLIC CF CAF 140
CHAD TD TCD 148
CHILE CL CHL 152
CHINA CN CHN 156
CHRISTMAS ISLAND CX CXR 162
COCOS (KEELING) ISLANDS CC CCK 166
COLOMBIA CO COL 170
COMOROS KM COM 174
CONGO, Democratic Republic of (was Zaire) CD COD 180
CONGO, Republic of CG COG 178
COOK ISLANDS CK COK 184
COSTA RICA CR CRI 188
COTE D'IVOIRE CI CIV 384
CROATIA (local name: Hrvatska) HR HRV 191
CUBA CU CUB 192
CYPRUS CY CYP 196
CZECH REPUBLIC CZ CZE 203
DENMARK DK DNK 208
DJIBOUTI DJ DJI 262
DOMINICA DM DMA 212
DOMINICAN REPUBLIC DO DOM 214
ECUADOR EC ECU 218
EGYPT EG EGY 818
EL SALVADOR SV SLV 222
EQUATORIAL GUINEA GQ GNQ 226
ERITREA ER ERI 232
ESTONIA EE EST 233
ETHIOPIA ET ETH 231
FALKLAND ISLANDS (MALVINAS) FK FLK 238
FAROE ISLANDS FO FRO 234
FIJI FJ FJI 242
FINLAND FI FIN 246
FRANCE FR FRA 250
FRENCH GUIANA GF GUF 254
FRENCH POLYNESIA PF PYF 258
FRENCH SOUTHERN TERRITORIES TF ATF 260
GABON GA GAB 266
GAMBIA GM GMB 270
GEORGIA GE GEO 268
GERMANY DE DEU 276
GHANA GH GHA 288
GIBRALTAR GI GIB 292
GREECE GR GRC 300
GREENLAND GL GRL 304
GRENADA GD GRD 308
GUADELOUPE GP GLP 312
GUAM GU GUM 316
GUATEMALA GT GTM 320
GUINEA GN GIN 324
GUINEA-BISSAU GW GNB 624
GUYANA GY GUY 328
HAITI HT HTI 332
HEARD AND MC DONALD ISLANDS HM HMD 334
HONDURAS HN HND 340
HONG KONG HK HKG 344
HUNGARY HU HUN 348
ICELAND IS ISL 352
INDIA IN IND 356
INDONESIA ID IDN 360
IRAN (ISLAMIC REPUBLIC OF) IR IRN 364
IRAQ IQ IRQ 368
IRELAND IE IRL 372
ISRAEL IL ISR 376
ITALY IT ITA 380
JAMAICA JM JAM 388
JAPAN JP JPN 392
JORDAN JO JOR 400
KAZAKHSTAN KZ KAZ 398
KENYA KE KEN 404
KIRIBATI KI KIR 296
KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF KP PRK 408
KOREA, REPUBLIC OF KR KOR 410
KUWAIT KW KWT 414
KYRGYZSTAN KG KGZ 417
LAO PEOPLE'S DEMOCRATIC REPUBLIC LA LAO 418
LATVIA LV LVA 428
LEBANON LB LBN 422
LESOTHO LS LSO 426
LIBERIA LR LBR 430
LIBYAN ARAB JAMAHIRIYA LY LBY 434
LIECHTENSTEIN LI LIE 438
LITHUANIA LT LTU 440
LUXEMBOURG LU LUX 442
MACAU MO MAC 446
MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF MK MKD 807
MADAGASCAR MG MDG 450
MALAWI MW MWI 454
MALAYSIA MY MYS 458
MALDIVES MV MDV 462
MALI ML MLI 466
MALTA MT MLT 470
MARSHALL ISLANDS MH MHL 584
MARTINIQUE MQ MTQ 474
MAURITANIA MR MRT 478
MAURITIUS MU MUS 480
MAYOTTE YT MYT 175
MEXICO MX MEX 484
MICRONESIA, FEDERATED STATES OF FM FSM 583
MOLDOVA, REPUBLIC OF MD MDA 498
MONACO MC MCO 492
MONGOLIA MN MNG 496
MONTSERRAT MS MSR 500
MOROCCO MA MAR 504
MOZAMBIQUE MZ MOZ 508
MYANMAR MM MMR 104
NAMIBIA NA NAM 516
NAURU NR NRU 520
NEPAL NP NPL 524
NETHERLANDS NL NLD 528
NETHERLANDS ANTILLES AN ANT 530
NEW CALEDONIA NC NCL 540
NEW ZEALAND NZ NZL 554
NICARAGUA NI NIC 558
NIGER NE NER 562
NIGERIA NG NGA 566
NIUE NU NIU 570
NORFOLK ISLAND NF NFK 574
NORTHERN MARIANA ISLANDS MP MNP 580
NORWAY NO NOR 578
OMAN OM OMN 512
PAKISTAN PK PAK 586
PALAU PW PLW 585
PALESTINIAN TERRITORY, Occupied PS PSE 275
PANAMA PA PAN 591
PAPUA NEW GUINEA PG PNG 598
PARAGUAY PY PRY 600
PERU PE PER 604
PHILIPPINES PH PHL 608
PITCAIRN PN PCN 612
POLAND PL POL 616
PORTUGAL PT PRT 620
PUERTO RICO PR PRI 630
QATAR QA QAT 634
REUNION RE REU 638
ROMANIA RO ROU 642
RUSSIAN FEDERATION RU RUS 643
RWANDA RW RWA 646
SAINT HELENA SH SHN 654
SAINT KITTS AND NEVIS KN KNA 659
SAINT LUCIA LC LCA 662
SAINT PIERRE AND MIQUELON PM SPM 666
SAINT VINCENT AND THE GRENADINES VC VCT 670
SAMOA WS WSM 882
SAN MARINO SM SMR 674
SAO TOME AND PRINCIPE ST STP 678
SAUDI ARABIA SA SAU 682
SENEGAL SN SEN 686
SERBIA AND MONTENEGRO CS SCG 891
SEYCHELLES SC SYC 690
SIERRA LEONE SL SLE 694
SINGAPORE SG SGP 702
SLOVAKIA SK SVK 703
SLOVENIA SI SVN 705
SOLOMON ISLANDS SB SLB 090
SOMALIA SO SOM 706
SOUTH AFRICA ZA ZAF 710
SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS GS SGS 239
SPAIN ES ESP 724
SRI LANKA LK LKA 144
SUDAN SD SDN 736
SURINAME SR SUR 740
SVALBARD AND JAN MAYEN ISLANDS SJ SJM 744
SWAZILAND SZ SWZ 748
SWEDEN SE SWE 752
SWITZERLAND CH CHE 756
SYRIAN ARAB REPUBLIC SY SYR 760
TAIWAN TW TWN 158
TAJIKISTAN TJ TJK 762
TANZANIA, UNITED REPUBLIC OF TZ TZA 834
THAILAND TH THA 764
TIMOR-LESTE TL TLS 626
TOGO TG TGO 768
TOKELAU TK TKL 772
TONGA TO TON 776
TRINIDAD AND TOBAGO TT TTO 780
TUNISIA TN TUN 788
TURKEY TR TUR 792
TURKMENISTAN TM TKM 795
TURKS AND CAICOS ISLANDS TC TCA 796
TUVALU TV TUV 798
UGANDA UG UGA 800
UKRAINE UA UKR 804
UNITED ARAB EMIRATES AE ARE 784
UNITED KINGDOM GB GBR 826
UNITED STATES US USA 840
UNITED STATES MINOR OUTLYING ISLANDS UM UMI 581
URUGUAY UY URY 858
UZBEKISTAN UZ UZB 860
VANUATU VU VUT 548
VATICAN CITY STATE (HOLY SEE) VA VAT 336
VENEZUELA VE VEN 862
VIET NAM VN VNM 704
VIRGIN ISLANDS (BRITISH) VG VGB 092
VIRGIN ISLANDS (U.S.) VI VIR 850
WALLIS AND FUTUNA ISLANDS WF WLF 876
WESTERN SAHARA EH ESH 732
YEMEN YE YEM 887
ZAMBIA ZM ZMB 894
ZIMBABWE ZW ZWE 716 | IOS3166 Country Code Identification REGEX | 2015-06-07T04:48:58.000Z |
supports all major protocols | ((?:http|https|ftp|ftps)(?:\:\/\/)+)?(?:([A-z0-9\-]+)\:([A-z0-9\-]+))?\@?([A-z0-9\-]+)(\.[a-z\.]+) | url matching | 2015-01-16T07:06:22.000Z |
|
\$([a-zA-Z0-9\ \_]+[$]*$) | $ajsn dkjns dkjansd$ $asjhdb hajsbdjhbvsaj | regex last variable | 2020-05-20T15:59:47.000Z |
|
Match (incl. old) ESET Data Framework domains for exclusion from DNS logs | ^ecp\.eset\.systems|(?:edf|h(?:[1,3,5]\-arse0[1,2]|5\-arse0[3,4]|1\-edfspy02)\-v)\.eset\.com$ | edf.eset.com
h1-arse01-v.eset.com
h1-arse02-v.eset.com
h3-arse01-v.eset.com
h3-arse02-v.eset.com
h5-arse01-v.eset.com
h5-arse02-v.eset.com
h5-arse03-v.eset.com
h5-arse04-v.eset.com
h1-edfspy02-v.eset.com
h1-edfspy02-v.eset.com
ecp.eset.systems
| ESET Data Framework domains OLD (DNS) | 2023-06-13T15:09:10.000Z |
[[:punct:]] | 123412412! | 特殊字元(包含中文字) | 2020-06-08T10:03:18.000Z |
|
^(([^<>()\[\]\\.,;:\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,}))$ | Email validation | 2018-02-27T11:23:23.000Z |
||
(fprintf(\s*)\((\s*\S+\s*)[,])([^\"]) | fprintf ( out , os.str().c_str()); | t3 | 2020-09-09T04:41:59.000Z |
|
<a.*?>(.*?(<img.*?>).*?)<.*a> | <p>We <a href="http://hello.com" rel="nofollow">experienced</a> a lengthy approach <a href="http://site.com/">Awesome case <img class="pull-right px-1" src="https://picsum.photos/200/300" alt="">Hello my friend</a> to be the most appropriate essay writing company within <a href="https://academic-writing.org/">types of academic paper</a> the Web. Therefore, we've got the really best essay writing site that could handle with all client's wants and wants. This is really essential since it affects whether readers may read the job. Supplying the pleasant information, documents also need to call for specific formatting with appropriate fashion as well as structure as every sort of essays have it's own abilities.</p>
<!--more-->
Should you be looking for an <a href="http://google.com/page-custom/">@professional <img class="pull-left px-1" src="https://picsum.photos/200/300" alt=""> article</a> writer, you're in the proper spot! Above all when it has to do with essays, term documents, research documents or another sort of authorship. Similarly, additionally, it entails formatting the article furthermore. Move erroneous, and the complete essay is simply a mess. So buy documents online here with no doubt your author knows the method to nail the papers! So, for obtaining a higher tag, all clients need to meticulously decide article composing support that'll supply them an extraordinary document with the correct format and structuring.
<h2>Remember that you <a href="site.com"><img src="image.jpg"></a>, or @develop, a recipe that gives your pet sensible nutrition.</h2>
<p>With no question, our business <a href="https://academic-writing.org/essay-writer/">professional essay writers online</a> is among the necessary businesses which exist in the Net. With all above, we're glad to say our business has the most effective essay writing website that's popular between customers. You'll discover this is quite a gratifying area and that one could benefit an organization or you may work yourself. Als harte erziehung <a href="https://site.com/"> galten bei der analyse anschreien</a>, schlagen und die androhung von verbalen oder körperlichen strafen.</p>
| Find links with images inside | 2018-08-15T11:40:59.000Z |
|
^[0-9]+([.]([0-9]){1,2})*$ | 3
44
55.5
66.66
777
3,3
.4
.55
-7
89.80
9.234 | Unsigned Integer or Maximal Two-Digits Floating Point Input | 2018-03-28T08:55:20.000Z |
|
^(?!9999)([1-9]\d{3}|[1-5]\d{4}|6[0-5]{2}[0-3][0-5])$ | 65535 | 匹配1000-65535之间的数字 | 2017-05-03T00:56:42.000Z |
|
Password require: lowercase, uppercase, symbol, not consecutive same letter/number, and not some specific words | ^(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[#$%/()=¿?*+-])(?=(?:([\w\d])\1?(?!\1\1)))(?!(?=.*(palabra1|palabra2|palabraN))).{8,20}$ | mmholAhsbC123* | Strong password | 2016-01-20T22:20:25.000Z |
(!(?!~))|((?<!!)~) | !Tim !~ Dan~ | demo | 2016-07-28T22:26:12.000Z |
|
^https?:\/\/(?:www\.|m\.)?youtube\.com\/watch.*?[?&]v=([\w\-]+) | https://www.youtube.com/watch?v=lugnetyBAhc | gets youtube link in plaintext | 2016-02-11T05:47:49.000Z |
|
^http(?:s?):\/\/regex101\.com\/r\/([a-zA-Z0-9]{1,6})?$ | (\s)(\d{9})(\s)</ | 2015-07-03T03:50:33.000Z |
||
(--.*$|\/\*[\s\S]*?\*\/) | -- fdf
fdf
sdfdsf /* fsdf /* */ other /* */ sdfsdf
isdf -- sdf
/* fd */
/*
multiline
*/
more here
/* dangling
-- ${here} more ${another} blah
/* ${you} */ ${yeah}
| SQL Comment | 2015-08-22T08:27:42.000Z |
|
([a-z]+)(\d+) | regex2017 | () = Determina quais grupos serão capturados; | 2017-04-10T23:38:50.000Z |
|
Capture URL without Query Parameters
/^([^?#]+).*/gm | ^([^?#]+).* | https://studio.grabyo.com/home.jsp#stream/fBCyXMbtgHQ/share
https://studio.grabyo.com/studiolibrary.jsp?channelId=hkWw8oRUtPA
https://studio.grabyo.com/trim.jsp?campaignId=AQiJBGfoaJs&streamId=TCiHdVdqoBe
https://studio.grabyo.com/studiolibrary.jsp?streamId=TCiHdVdqoBe&galleryId=AQiJBGfoaJs
https://studio.grabyo.com/studiolibrary.jsp?campaignId=qzNPNPKTmry
https://studio.grabyo.com/trim.jsp?channelId=1dnc0Cjw9Ze
https://studio.grabyo.com/trim.jsp?campaignId=AQiJBGfoaJs
| Capture URL without Query Parameters | 2023-05-12T13:41:29.000Z |
((^|,)(?<column>[^,]*))+
http://smdn.jp/programming/netfx/regex/1_operations/ | ((^|,)(?<column>[^,]*))+ | a,012,,xxxxx
| csvの各項目を抽出(C#で処理する必要あり) | 2018-09-21T05:38:16.000Z |
Parses "Zeitnahme" text files | ^#\s(\d+)\s+-?(\d{2}):(\d{2})\.(\d{3})\s(\d+)\s(\d{2}:\d{2})$ | StNr Laptime Lap Tageszeit
# 665 -02:04.137 6 10:52
# 665 -01:47.625 5 10:50
# 665 -01:49.546 4 10:48
# 665 -01:57.014 3 10:47
# 665 -01:51.407 2 10:45
# 665 -00:00.000 1 10:43
| Zeitnahme | 2021-07-02T00:50:34.000Z |
this reg will extract:
1. "content" of SRC
2. "content" of ALT
3. complete width="???"
4. "content" of style attr.
do we really need anything else to format an image? | (<img[^>]src="([^"]+)"[^>]?(alt="(.*?)")?[^>]?(title="(.*?)")?(style="([^"]*)")?[^>]*>) | <p><img src="images/about_leadership/ProfilePicture-Amir-Peled.JPG" alt="Amir Peled" title="סמנכל חינוך" /></p><img src="images/lecturers/tzachi_schelkowitz.png" alt="tzachi schelkowitz" style="float: left;" />
<p><img src="images/about_leadership/ProfilePicture-davidkorenfeld.jpg" alt="ProfilePicture davidkorenfeld" title="סמנכל חינוך" /></p>
<p><img src="images/about_leadership/ProfilePicture-Assaf-Goren.JPG" alt="ProfilePicture Assaf Goren" title="סמנכל חינוך" /></p>
<p><img src="images/about_leadership/ProfilePicture-Daniel-Belinky.jpg" alt="ProfilePicture Daniel Belinky" title="סמנכל חינוך" /></p>
<p><img src="images/about_leadership/ProfilePicture-davidkorenfeld.jpg" alt="ProfilePicture davidkorenfeld" title="סמנכל חינוך" /></p>
<p><img src="images/about_leadership/ProfilePicture-Tom-Goldman.jpg" alt="ProfilePicture Tom Goldman" title="סמנכל חינוך" /></p>
<p><img src="images/about_leadership/ProfilePicture-Toni-Wortman.jpg" alt="ProfilePicture Toni Wortman" title="סמנכל חינוך" /></p>
<p><img src="images/about_leadership/ProfilePicture-Amir-Peled.JPG" alt="Amir Peled" title="סמנכל חינוך" /></p>
<p><img src="images/about_leadership/ProfilePicture-Amir-Peled.JPG" alt="Amir Peled" title="סמנכל חינוך" /></p>
<p><img src="images/about_leadership/ProfilePicture-Amir-Peled.JPG" alt="Amir Peled" title="סמנכל חינוך" /></p>
<p><img src="images/about_leadership/ProfilePicture-Amir-Peled.JPG" alt="Amir Peled" title="סמנכל חינוך" /></p>
<p><img src="images/about_leadership/ProfilePicture-Amir-Peled.JPG" alt="Amir Peled" title="סמנכל חינוך" /></p>
<p><img src="images/about_leadership/ProfilePicture-Amir-Peled.JPG" alt="Amir Peled" title="סמנכל חינוך" /></p>
<p><img src="images/about_leadership/ProfilePicture-Amir-Peled.JPG" alt="Amir Peled" title="סמנכל חינוך" /></p>
<p><img src="images/about_leadership/ProfilePicture-Amir-Peled.JPG" alt="Amir Peled" title="סמנכל חינוך" /></p>
<p><img src="images/about_leadership/ProfilePicture-Amir-Peled.JPG" alt="Amir Peled" title="סמנכל חינוך" /></p>
<p><img src="images/about_leadership/ProfilePicture-Amir-Peled.JPG" alt="Amir Peled" title="סמנכל חינוך" /></p>
<p><img src="images/about_leadership/ProfilePicture-Amir-Peled.JPG" alt="Amir Peled" title="סמנכל חינוך" /></p>
<p><img src="images/about_leadership/ProfilePicture-Amir-Peled.JPG" alt="Amir Peled" title="סמנכל חינוך" /></p>
<p><img src="images/about_leadership/ProfilePicture-Amir-Peled.JPG" alt="Amir Peled" title="סמנכל חינוך" /></p>
<p><img src="images/about_leadership/ProfilePicture-Amir-Peled.JPG" alt="Amir Peled" title="סמנכל חינוך" /></p>
<p><img src="images/about_leadership/ProfilePicture-Amir-Peled.JPG" alt="Amir Peled" title="סמנכל חינוך" /></p>
<p><img src="images/about_leadership/ProfilePicture-Amir-Peled.JPG" alt="Amir Peled" title="סמנכל חינוך" /></p> | extract most parts of possible <IMG> tag attributes (Oren Wassersprung) | 2018-01-07T19:41:09.000Z |
Other\spayables?_lt | FRONTKEN CORPORATION BERHAD
(Co. No. 651020-T)
(Incorporated in Malaysia)
CONDENSED CONSOLIDATED STATEMENT OF PROFIT OR LOSS AND OTHER
COMPREHENSIVE INCOME FOR THE FOURTH QUARTER ENDED 31 DECEMBER 2019
(The figures have not been audited)
Individual Quarter Cumulative Quarter
Preceding Year Preceding Year
Current Year Corresponding Current Year Corresponding
Quarter Quarter To-date Period
31 Dec 2019 31 Dec 2018 31 Dec 2019 31 Dec 2018
RM '000 RM '000 RM '000 RM '000
Revenue 8 8,888 88,665 339,911 327,218
Operating expenses (61,106) ( 61,255) ( 228,967) ( 239,240)
Profit before depreciation and finance costs 2 7,782 2 7,410 110,944 8 7,978
Depreciation (3,760) (4,268) ( 17,818) (17,301)
Finance costs (140) (92) (756) (568)
Other operating income 608 1 ,375 3 ,891 5,428
Share of results of associated companies - - - 78
Profit before tax 2 4,490 2 4,425 9 6,261 7 5,615
Taxation (4,905) (4,415) ( 22,033) (18,613)
Profit after tax 1 9,585 2 0,010 7 4,228 5 7,002
Profit after tax attributable to :
Owners of the Company 1 8,199 1 8,683 6 9,170 5 2,257
Non-controlling interests 1 ,386 1 ,327 5 ,058 4 ,745
Profit for the period 1 9,585 2 0,010 7 4,228 5 7,002
Profit for the period 1 9,585 2 0,010 7 4,228 5 7,002
Other comprehensive expenses:
Actuarial gains 4 3 98 4 3 98
Foreign currency translation 2 ,253 7 2 2 ,262 ( 1,571)
Total comprehensive income for the period 2 1,842 2 0,480 7 6,494 5 5,829
Total comprehensive income attributable to:
Owners of the Company 2 0,277 1 9,172 7 1,291 5 1,317
Non-controlling interests 1 ,565 1 ,308 5 ,203 4 ,512
Total comprehensive income for the period 2 1,842 2 0,480 7 6,494 5 5,829
Earnings per share attributable to
equity holders of the company :
Basic (sen) 1.74 1.78 6.60 4.99
The condensed consolidated income statement is to be read in conjunction with the accompanying notes to the interim financial report.
The comparative figures are based on audited financial statements of the Company for the financial year ended 31 December 2018. | income_Frontkn | 2020-05-04T12:16:12.000Z |
|
([a-zA-Z]*_{1}[a-zA-Z]*) | bsah_7 | 2014-12-11T10:30:49.000Z |
||
This regex fetch only the data between content in curly braces (first occurrence, use preg_match_all in php, for all occurrences). This is useful for bad JSON files with wrong format or text between. | (?=\{((?:[^{}]++|\{(?1)\})++)\}) | hello hello - helleo
ba blab blab alb
{
"collection1": [
{
"property1": {
"text": "O.P.\nA few forum post ads.\nThanks.",
"href": "bla"
},
"property2": "posted 2010-Jul-26, 1:21 am"
},
]
}
hello2 hello2 - helleo2
ba blab blab alb
{
"collection2": [
{
"property1": {
"text": "O.P.\nA few forum post ads2.\nThanks.",
"href": "bla"
},
"property2": "posted 2010-Jul-26, 1:22 am"
},
]
}
| Fetch data between curly braces with plain text | 2014-10-10T13:35:18.000Z |
Breaks a Perforce Helix Path into depot, folder, filename. | ^\/\/([^\/]+)((?:\/[^\/]+)*)\/([^\/]+)$ | //AppManagement/Feature-PublishContent-XA-1526/Infrastructure/AppLibraryService/Scripts/AppLibrary.psm1
| Perforce Helix Path | 2016-07-04T14:04:33.000Z |
Useful for pulling user mentions out of markdown. | (^|\s)@([A-z]+)\b | @whatever
whatever
| Find @mentions | 2016-02-19T23:02:55.000Z |
^(?:[0187]?|\+[87]?)[- .]?(?:(\([2-9]\d{2}\)|[2-9]\d{2})[- .]?[- .]?(\d)[- .]?[- .]?(\d)[- .]?[- .]?(\d)[- .]?[- .]?(\d)[- .]?[- .]?(\d)[- .]?[- .]?(\d)[- .]?[- .]?(\d)[- .]?)$ | +89031231232
92912312-32
+7929 123 12 32
+8 929 12-312-32
+8 929 123-12-32 | Russian mobile number normilizer (dumb) | 2014-01-04T16:01:10.000Z |
|
This is a Regex to the Whatsapp chat data. This parses the
G1 - Date, G2 - Time, G3 - User, G4 - Qualifier & G5 - Actual chat data.
The Qualifier (G4) identifies the group Creation information, : that separates the User and Ping chat data and New user added chats. | (^[0-9]{1,2}/[0-9]{1,2}/[0-9]{1,2}), ([0-9]{1,2}:[0-9]{1,2} [a-zA-Z]{2}) - ([a-z0-9 \S]+?)(:| added|created group) ([a-z0-9 \S\n]+)? | 3/22/16, 12:35 PM - Narayanaswamy Meetup Hsp: Guys Ranjit is proposing to have a Holi walk (not Holy walk) on Thursday 24-3-16. He will put up the proposal and if anyone wishes to join pl co-ordinate with Ranjit | Whatsapp Chat Regex | 2016-08-08T07:12:08.000Z |
https://telegram.me/Amirhamini
https://t.me/Amirhamini | (https?:\/\/)?(www[.])?(telegram|t)\.me\/([a-zA-Z0-9_-]*)\/?$ | https://telegram.me/Amirhamini
https://t.me/Amirhamini | Telegram regex validation | 2017-05-31T07:03:04.000Z |
^((([13578]|0[13578]|1[02])\/([1-9]|0[1-9]|[12][0-9]|3[01]))|(([469]|0[469]|11)\/([1-9]|0[1-9]|[12][0-9]|30))|((2|02)\/([1-9]|0[1-9]|1[0-9]|2[0-9])))$ | 02/02
02/12
02/29
02/29
06/31
01/31
02/02
02/02
02/02
02/02
02/02
02/02
01/01 | Validate format data (mm/dd) | 2018-05-18T09:09:19.000Z |
|
Extracts attribute names from an XML file and presents them as a simple list. Affects only the attributes that have values. Ignores the "parent" attributes (that have no values but have nested attributes). | <(\w*?)>.*<.*> | <soapenv:Envelope...>
<soapenv:Header/>
<soapenv:Body>
<urn:ClosedRequest>
<ExternalApplicationNumber>4816</ExternalApplicationNumber>
<PersonDataList>
<!--1 or more repetitions:-->
<PersonData>
<PersonExternalIdentifier>sa1</PersonExternalIdentifier>
<EligibilityEndDate>2017-12-31</EligibilityEndDate>
<!--Optional:-->
<ReasonCode>60</ReasonCode>
<PersonDeathDate>2015-09-02</PersonDeathDate>
</PersonData>
</PersonDataList>
</urn:ClosedRequest>
</soapenv:Body>
</soapenv:Envelope> | Extract names of XML attributes that have values | 2015-09-08T09:27:41.000Z |
(([^,"]*[,|$])|("([^",]|([,]))*"[,|$]))* | kol1,kol2,"kol3,kol3a",hhhh,"bb,bbb",kkff,ddd,lll$
| comma's tussen quotes | 2015-10-01T06:53:39.000Z |
|
(\([0-9]{2}\)\s?[0-9]{4,5}-?[0-9]{3,4})|([0-9]{10,11})|([0-9]{2}\s?[0-9]{8,9}) | (\([0-9]{2}\)\s?[0-9]{4,5}-?[0-9]{3,4})|([0-9]{10,11})|([0-9]{2}\s?[0-9]{8,9}) | (99) 99999-9999
(99)99999-9999
(99)9999-9999
(99)99999-999
99 999999999
99 99999999
99999999999
9999999999
| Brazil Phone Validator | 2019-11-08T18:01:33.000Z |
find retwitt hashtag on Twitters and add a label to highlight it. | RT(\A|\s)@(\w)+ | RT @iamkhiofficial2323: #lahore #LahoreBlasts : #punjabgovt 9 #dead. 20 #injured. https://t.co/UU7doEtTmZ #pray #unite #notgivingup RT @iamkhiofficial2323
RT @iamkhiofficial2323 | Re Twitts | 2017-10-04T10:48:16.000Z |
grabs the ID for the regex101.com permalink to code | ^http(?:s?):\/{2}regex101\.com\/r\/([a-zA-Z0-9]{1,6})?$ | http://regex101.com/r/mH1fN5
https://regex101.com/r/fW0vZ2 | regex101.com id grabber | 2013-12-12T13:09:06.000Z |
Here is a pattern for all kind of Moscow and Moscow Region phones with or without additional number. | (?:8|\+7|7)?[-\s\(]*(?<kod>\d{3,4})?[-\s\)]*(?<phone>[\d-]{7,10})(?:[\D]+(?<dob>\d+))?\D*$ | +7(985)392-75-73(1152)
+7(985)392-75-73 доб.1152
+7(985)392-75-73 доб. 78135
+7(985)392-75-73 11522
+7(985)392-75-73
+7(985)392-75-73 | Moscow Phones Pattern | 2016-08-17T10:26:46.000Z |
(?!^[~!@#$%^&*().]+$)^([\u4e00-\u9fa5]*|[\da-zA-Z~!@#$%^&*.·\s]*){0,30}$ | ~!@#$%^&**hJ电费Dfd s是 的发送 到 · 水电费水 | 中英文 特殊字符 30位 | 2017-05-08T06:02:44.000Z |
|
Country code 1 | \+?(1?)[\(\s]*([2-9]\d{2})[\s\)]*(\d{3})[\s-]*(\d{4}) | 12345678900
514 706 0306
514 706-0306
(514) 706-0306
+1 514 7090306
15147060306 | Phone number matcher | 2016-03-23T18:50:53.000Z |
Here, it matches ft or ft. & foot & feet | (ft\"?)|(foot|feet) | ft ghghgh ft.kkk foot feet ft.
ft Ft. fT.ft" | ? - One or Zero times Quantifier Example | 2016-02-27T18:39:45.000Z |
^(r;)?(e;)?(%|f)[0-9]+(\.[0-9]{1,2})?(;[0-9]+;(%|f)[0-9]+(\.[0-9]{1,2})?)*$ | Commission | 2015-12-11T11:06:26.000Z |
||
parse the log line generated by fortigate 60B | ^(?<time>[^ ]* [^ ]* [^ ]*) (?<host>[^ ]*) date=(?<forti_date>[^ ]*) time=(?<forti_time>[^ ]*) devname=(?<dev_name>[^ ]*) device_id=(?<dev_id>[^ ]*) log_id=(?<log_id>[^ ]*) type=(?<type>[^ ]*) subtype=(?<subtype>[^ ]*) pri=(?<pri>[^ ]*) vd=(?<vd>[^ ]*) src=(?<src>[^ ]*) src_port=(?<src_port>[^ ]*) src_int="(?<src_int>[^ ]*)" dst=(?<dst>[^ ]*) dst_port=(?<dst_port>[^ ]*) dst_int="(?<dst_int>[^ ]*)" SN=(?<SN>[^ ]*) status=(?<status>[^ ]*) policyid=(?<policy_id>[^ ]*) dst_country="(?<dst_country>[^ ]*)" src_country="(?<src_country>[^ ]*)" service=(?<service>[^ ]*) proto=(?<proto>[^ ]*) duration=(?<duration>[^ ]*) sent=(?<sent>[^ ]*) rcvd=(?<rcvd>[^ ]*)$ | Jan 10 06:00:00 172.24.0.14 date=2016-01-10 time=05:59:59 devname=CNTFI1-FG3040B-02-01 device_id=FG3K0D3I11700008 log_id=0038000004 type=traffic subtype=other pri=notice vd=VDOM1 src=10.172.24.133 src_port=24687 src_int="VLAN889" dst=10.172.18.144 dst_port=1433 dst_int="VLAN807" SN=3504861876 status=start policyid=4816 dst_country="Reserved" src_country="Reserved" service=MS-SQL proto=6 duration=0 sent=0 rcvd=0 | fortigate_60B | 2016-01-13T00:20:44.000Z |
\b((\d|[1-9]\d|1\d{2}|2[0-4]\d|25[0-5])\.){3}(\d|[1-9]\d|1\d{2}|2[0-4]\d|25[0-5])\b | 255.0.248.10
10.5.0.256 | IP | 2019-10-28T08:23:32.000Z |
|
([\||\/]{2,}) | levoca
levo|||dss
levoc\\a
password"||""=="
gs5bw"||1==1//
(\|{2,}|\/{2,})
[\|||||||\/]{2,} | password matching | 2015-09-10T07:41:58.000Z |
|
^(\d+\.?\d*)(h|m|s|ms|f|t)$ | 11
11s
11.1222s
33ms
| TTML time expression offset-time | 2016-01-10T16:52:23.000Z |
|
Detects most of the phone numbers all over the world | (?:([+]\d{1,4})[-.\s]?)?(?:[(](\d{1,3})[)][-.\s]?)?(\d{1,4})[-.\s]?(\d{1,4})[-.\s]?(\d{1,9}) | +49 172 7470791
+49 621 60-6641516
+49 621 60-41516
8-1-6641516
61 41516
6641516
41516
+1(1111
+()1111 | Regex for telephone numbers all over the world | 2014-04-08T07:58:37.000Z |
^[\s\S]{0,30} | </head>
<body>
<div id="kJAQ_" class="z-temp"><div id="zk_proc" class="z-loading"><div class="z-loading-indicator"><span class="z-loading-icon"></span>Processing...</div></div></div>
<script class="z-runonce" type="text/javascript">
zkmx(
[0,'kJAQ_',{dt:'z_oec',cu:'/EfectoresWeb',uu:'/EfectoresWeb/zkau',ru:'/login.isp'},[
['zul.utl.Style','zk_comp_1',{visible:false,src:'/EfectoresWeb/css/PamiStyle.css'},[]],
['zul.wgt.Div','zk_comp_2',{id:'div',style:'width:90%;margin:0 auto 0 auto;align:center',prolog:'\n\t'},[
['zul.wgt.Include','zk_comp_3',{prolog:'\n\t\t',_xcnt:'<div id="kJAQ0" class="z-temp"><div id="zk_proc" class="z-loading"><div class="z-loading-indicator"><span class="z-loading-icon"></span>Processing...</div></div></div>',_childjs:function(){zkmx(
[0,'kJAQ0',{ow:'zk_comp_3'},[
['zul.wnd.Window','zk_comp_38',{id:'winHeader',$$onSize:false,$$onMaximize:false,$$onOpen:false,$$onMinimize:false,$$onZIndex:false,$onClose:true,$$onMove:false,prolog:'\n\t'},[
['zul.box.Box','zk_comp_39',{},[
['zul.box.Box','zk_comp_40',{id:'hbox_header',align:'end'},[
['zul.wgt.Image','zk_comp_41',{src:'/EfectoresWeb/img/top.jpg'},[]]],'horizontal']],'vertical']]]]]);
}},[]],
['zul.wnd.Window','zk_comp_4',{id:'winLogin',$onOK:true,$onClose:true,prolog:'\n\t \t'},[
['zul.box.Box','zk_comp_5',{},[
['zul.box.Box','zk_comp_6',{id:'hbox_menu'},[],'horizontal'],
['zul.wgt.Groupbox','zk_comp_7',{$$onOpen:false,width:'890px',closable:false},[
['zul.wgt.Caption','zk_comp_8',{id:'caption_login',sclass:'z-title',label:'Login'},[]],
['zul.grid.Grid','zk_comp_9',{$$onRender:true,$ | Primeros N Caracteres | 2015-10-08T20:27:39.000Z |
|
^(\\\*) | \** | \** | 2016-03-08T15:48:46.000Z |
|
(?=[-_a-zA-Z0-9]*?[A-Z])(?=[-_a-zA-Z0-9]*?[a-z])(?=[-_a-zA-Z0-9]*?[0-9])[-_a-zA-Z0-9]{6,} | sA_7hgevQ | 8 | 2015-10-17T06:10:43.000Z |
|
(-?\d+\.\d+)(.)\s*(-?\d+\.\d+)(.)\s*(-?\d+\.\d+)(.)\s*(-?\d+\.\d+)(.)\s*(-?\d+\.\d+)(.)\s*(-?\d+\.\d+)(.)\s*(-?\d+\.\d+)(.)\s*(-?\d+\.\d+)(.)\s*(-?\d+\.\d+)(.)\s*(-?\d+\.\d+)(.)\s*(-?\d+\.\d+)(.)\s* | subckt x1 x2 x3 x4 x6 x5 x7 xbias.x1 xbias.x2 xbias.x3 xbias.x4
element 1:m0 2:m0 3:m0 4:m0 5:m0 6:m0 7:m0 9:m0 10:m0 11:m0 12:m0
model 1:nmos_int 2:nmos_int 3:pmos_int 4:pmos_int 5:pmos_int 6:nmos_int 7:nmos_int 9:pmos_int 10:pmos_int 11:nmos_int12:nmos_int
region Saturati Saturati Saturati Saturati Saturati Saturati Saturati Saturati Saturati Saturati Saturati
id 90.0227u 90.0227u -90.0227u -90.0227u -510.2422u 180.0454u 510.2422u -112.3968u -114.3957u 112.3968u 114.3957u
ibs -2.8918f -2.8918f 0. 0. 0. 0. 0. 0. 0. 0. 0.
ibd -8.4869f -8.4869f 3.5131f 3.5131f 9.1011f -2.8918f -2.8989f 3.7442f 2.9357f -3.0749f -3.8949f
vgs 410.8244m 410.8244m -351.3062m -351.3062m -351.3062m 389.4857m 389.4857m -374.4228m -375.5614m 389.4857m 389.4857m
vds 559.5182m 559.5182m -351.3062m -351.3062m -910.1094m 289.1756m 289.8906m -374.4228m -293.5674m 307.4917m 389.4857m
vbs -289.1756m -289.1756m 0. 0. 0. 0. 0. 0. 0. 0. 0.
vth 333.6729m 333.6729m -300.0000m -300.0000m -300.0000m 300.0000m 300.0000m -300.0000m -300.0000m 300.0000m 300.0000m
vdsat 69.8809m 69.8809m -45.5351m -45.5351m -45.5351m 79.5370m 79.5370m -66.1109m -67.1252m 79.5370m 79.5370m
vod 77.1515m 77.1515m -51.3062m -51.3062m -51.3062m 89.4857m 89.4857m -74.4228m -75.5614m 89.4857m 89.4857m
beta 33.4147m 33.4147m 77.1195m 77.1195m 437.1076m 50.6513m 143.5439m 45.7328m 45.1526m 31.6200m 32.1824m
gam eff 200.0000m 200.0000m 200.0000m 200.0000m 200.0000m 200.0000m 200.0000m 200.0000m 200.0000m 200.0000m 200.0000m
gm 2.3350m 2.3350m 3.5116m 3.5116m 19.9037m 4.0286m 11.4170m 3.0234m 3.0309m 2.5150m 2.5597m
gds 20.2732u 20.2732u 14.2546u 14.2546u 86.9090u 13.7888u 46.2093u 17.8628u 17.9498u 23.9524u 24.8119u
gmb 242.9461u 242.9461u 445.0614u 445.0614u 2.5226m 503.9159u 1.4281m 380.1264u 380.9134u 314.5792u 320.1737u
cdtot 3.9089f 3.9089f 25.6787f 25.6787f 123.4160f 624.9478f 165.2006f 15.1157f 15.3259f 4.2069f 4.1493f
cgtot 9.8127f 9.8127f 60.3928f 60.3928f 312.0441f 67.3176p 1.8355p 35.6826f 35.6826f 9.8127f 9.8127f
cstot 9.2853f 9.2853f 58.8113f 58.8113f 303.8555f 67.2794p 1.8254p 34.7499f 34.7499f 9.5592f 9.5592f
cbtot 3.3815f 3.3815f 24.0972f 24.0972f 115.2273f 586.7702f 155.1105f 14.1830f 14.3932f 3.9535f 3.8959f
cgs 7.4387f 7.4387f 45.7816f 45.7816f 236.5498f 66.9657p 1.7425p 27.0497f 27.0497f 7.4387f 7.4387f
cgd 2.3740f 2.3740f 14.6111f 14.6111f 75.4944f 351.8322f 93.0147f 8.6329f 8.6329f 2.3740f 2.3740f
| ates | 2015-12-10T00:40:41.000Z |
|
Validate IPv4 addresses using PCRE's recursion patterns. | ^(2[0-4]\d|25[0-5]|1\d\d|\d\d?)\.(?1)\.(?1)\.(?1)$ | 1.2.3.4
91.9.9.111
0.0.0.0
121.211.233.251
255.255.255.255
121.255.255.256
256.255.255.2
999.999.999.999
| IPv4 validation using recursion | 2015-06-09T14:46:57.000Z |
separate nginx log into database table-style fields | ^([^ ]*) - ([^ ]*) \[(.*)\] \"([^ ]*) ([^ ]*) ([^ ]*)\" (-|[0-9]*) (-|[0-9]*) \"(.+?|-)\" ([^ ]*|-) ([^ ]*|-) ([^ ]*|-) \"(.+?|-)\" \"(.+?|-)\" \"(.+?|-)\"$ | 14.23.114.61 - wo.haodou.com [15/Sep/2014:16:34:46 +0800] "GET /717238/ HTTP/1.1" 200 4895 "http://www.haodou.com/recipe/472378" - 0.034 6ibgu5ha3g8ev3s6vsnf672rq1 "-" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36 SE 2.X MetaSr 1.0" "0.034" | nginx log parser | 2014-10-15T09:23:18.000Z |
\"sources\"\:(.*?)\] | win path | 2015-02-09T11:14:13.000Z |
||
(^0[678][012347][0-9]{7}) | RSA Cellphone numbers Supporting 060 and 061 | 2016-07-04T06:26:43.000Z |
||
A stable and simple RegEx, which escapes double-quotes (") in a CSV file. | (\n|;|^)"([^";\n]*?)"([^";\n]+?)"([^";\n]*?)"(\n|;|$) | A stable and simple RegEx, which escapes double-quotes (") in a CSV file.
## Tests ##
"Great thing?!*";"I love RegEx!";"And especially "regex101.com"!";"Just amazing..."
"Something090324*?!*";"Somethi"ng090"324*?!*";"Something090324*?!*";"Something090324*?!*"
Ignore"THIS"ItIsNotARealQuote?!*;"This"is"real!";HereIsNoQuoteSymbolAtAll;This"IsOnlyOneQuoteSymbol
CSV: Escape double-quotes (") in quoted
## Issues ##
- Does not support embedded line breaks, but you can easily modify it to support them. Note that they are currently forbitten to be more stable.
- Does only allow " for quoting. (Replace it in the whole RegEx to change this)
- Only works with ; as a separator. (Replace it in the whole RegEx to change this)
- Does not allow separator character inside of quotes string. Look at the following example:
"Example "string"";"works"
"Example "string";";"fails"
- Get's problems when the issue happens "too often", which means it shows up in cells which are directly side-by-side. You may work around this issue by running it multiple times:
"run 1 time ";"a string with a "small" issue";"and "another" one"
"run 2 times";"a string with a ""small"" issue";"and "another" one"
- It only works with quoted strings (no single " are escaped; only double ones)
## Changelog ##
v1.0 - 2016-01-25
- released
Author: rugk <[email protected]> | CSV: Escape double quotes (") in quoted cells (v1.0) | 2016-01-25T19:15:15.000Z |
"\$name":\s"car.*_LOD_\s*\.*(?s)(.*)normal_map",\n\s*"\$type":\s"::bool",\n\s*"\$value":\s(false) | },
{
"$name": "car_Dodge_Viper_ACR_LOD_red",
"$type": "@tts::editor::MaterialEntity",
"$params": {
"lightmapSpecificParams": {
"shadowColor": {
"$isSet": false,
"$hasValue": false
},
"normalMap": {
"$isSet": false,
"$hasValue": false
},
"transparencyMap": {
"$isSet": false,
"$hasValue": false
},
"diffuseMapOverride": {
"$isSet": false,
"$hasValue": false
},
"diffuseColorOverride": {
"$isSet": false,
"$hasValue": false
},
"normalMapUVChannelIdx": 1,
"diffuseMapUVChannelIdx": 1,
"emissiveMultiplier": 1.0,
"singleSided": false
},
"metashaderRef": {
"is_initialized": true,
"value": "resources/shaders/carpaint.jshader"
},
"features": [
{
"$name": "albedo_map",
"$type": "::bool",
"$value": true
},
{
"$name": "normal_map",
"$type": "::bool",
"$value": false
},
{
"$name": "roughness_map",
"$type": "::bool",
"$value": true
},
{
"$name": "occlusion_map",
"$type": "::bool",
"$value": true
},
{
"$name": "metalness_map",
"$type": "::bool",
"$value": true
},
{
"$name": "tint_map",
"$type": "::bool",
"$value": true
}, | test | 2018-03-10T21:00:18.000Z |
|
((\.) ([A-Z])) | Mój nowy adres e-mail to [email protected]. A mój nowy numer telefonu to 509-055-002! Coś się wydarzyło 1.10.2019 r. Spalił się bukszpan, który rósł na parapecie. Nauczycielka otworzyła dziennik i powiedziała do Antka: „scharakteryzuj mi budowę mitohondrium”. Dostał „jedynkę”. Pani pokazała nam jak postępować, aby rośliny miały piękne, rozłożyste liście. Coś tam... Pytanie jakieś??? Krzyczenie jakieś!!! Zakończenie skrótem r.? Zakończenie skrótem r. coś? Zakończenie skrótem prof. Adam? Zakńczenie inne...? | Sentence ending dot | 2019-10-13T09:18:29.000Z |
|
[^\x00-\x7F]+ | google.com
foobar.com
josé.com | Detect non-ASCII characters | 2017-05-05T18:12:48.000Z |
|
(?:<td>)(EUH\d{3}.*)(?:<\/td>)(?:\n<td>)(.*)(?:\n<\/td>) | <!DOCTYPE html>
<html class="client-nojs" lang="nl" dir="ltr">
<head>
<meta charset="UTF-8"/>
<title>Lijst van H- en P-zinnen - Wikipedia</title>
<script>document.documentElement.className="client-js";RLCONF={"wgBreakFrames":!1,"wgSeparatorTransformTable":[",\t.",".\t,"],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],"wgMonthNamesShort":["","jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],"wgRequestId":"XkKL1wpAIC4AACu-oU0AAACQ","wgCSPNonce":!1,"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":!1,"wgNamespaceNumber":0,"wgPageName":"Lijst_van_H-_en_P-zinnen","wgTitle":"Lijst van H- en P-zinnen","wgCurRevisionId":55584317,"wgRevisionId":55584317,"wgArticleId":1533047,"wgIsArticle":!0,"wgIsRedirect":!1,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["Chemie en veiligheid","Gevaarlijke stoffen"],"wgPageContentLanguage":"nl","wgPageContentModel":"wikitext","wgRelevantPageName":"Lijst_van_H-_en_P-zinnen","wgRelevantArticleId":1533047
,"wgIsProbablyEditable":!0,"wgRelevantPageIsProbablyEditable":!0,"wgRestrictionEdit":[],"wgRestrictionMove":[],"wgMediaViewerOnClick":!0,"wgMediaViewerEnabledByDefault":!0,"wgPopupsReferencePreviews":!1,"wgPopupsConflictsWithNavPopupGadget":!1,"wgVisualEditor":{"pageLanguageCode":"nl","pageLanguageDir":"ltr","pageVariantFallbacks":"nl"},"wgMFDisplayWikibaseDescriptions":{"search":!0,"nearby":!0,"watchlist":!0,"tagline":!0},"wgWMESchemaEditAttemptStepOversample":!1,"wgULSCurrentAutonym":"Nederlands","wgNoticeProject":"wikipedia","wgWikibaseItemId":"Q2380725","wgCentralAuthMobileDomain":!1,"wgEditSubmitButtonLabelPublish":!0,"wgSiteNoticeId":"2.83"};RLSTATE={"ext.globalCssJs.user.styles":"ready","site.styles":"ready","noscript":"ready","user.styles":"ready","ext.globalCssJs.user":"ready","user":"ready","user.options":"loading","user.tokens":"loading","ext.cite.styles":"ready","mediawiki.legacy.shared":"ready","mediawiki.legacy.commonPrint":"ready",
"mediawiki.toc.styles":"ready","mediawiki.skinning.interface":"ready","skins.vector.styles":"ready","wikibase.client.init":"ready","ext.visualEditor.desktopArticleTarget.noscript":"ready","ext.uls.interlanguage":"ready","ext.wikimediaBadges":"ready","ext.dismissableSiteNotice.styles":"ready"};RLPAGEMODULES=["ext.cite.ux-enhancements","site","mediawiki.page.startup","skins.vector.js","mediawiki.page.ready","mediawiki.toc","ext.gadget.Direct-link-to-Commons","ext.gadget.ProtectionTemplates","ext.gadget.InterProjectLinks","ext.gadget.hoofdbetekenis-titelwijziging","ext.gadget.ReferenceTooltips","ext.gadget.OpenStreetMapFrame","ext.centralauth.centralautologin","ext.popups","ext.visualEditor.desktopArticleTarget.init","ext.visualEditor.targetLoader","ext.eventLogging","ext.wikimediaEvents","ext.navigationTiming","ext.uls.compactlinks","ext.uls.interface","ext.cx.eventlogging.campaigns","ext.centralNotice.geoIP","ext.centralNotice.startUp","ext.dismissableSiteNotice"];</script>
<script>(RLQ=window.RLQ||[]).push(function(){mw.loader.implement("user.options@12afy",function($,jQuery,require,module){/*@nomin*/mw.user.options.set({"variant":"nl"});
});mw.loader.implement("user.tokens@tffin",function($,jQuery,require,module){/*@nomin*/mw.user.tokens.set({"patrolToken":"+\\","watchToken":"+\\","csrfToken":"+\\"});
});});</script>
<link rel="stylesheet" href="/w/load.php?lang=nl&modules=ext.cite.styles%7Cext.dismissableSiteNotice.styles%7Cext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediaBadges%7Cmediawiki.legacy.commonPrint%2Cshared%7Cmediawiki.skinning.interface%7Cmediawiki.toc.styles%7Cskins.vector.styles%7Cwikibase.client.init&only=styles&skin=vector"/>
<script async="" src="/w/load.php?lang=nl&modules=startup&only=scripts&raw=1&skin=vector"></script>
<meta name="ResourceLoaderDynamicStyles" content=""/>
<link rel="stylesheet" href="/w/load.php?lang=nl&modules=site.styles&only=styles&skin=vector"/>
<meta name="generator" content="MediaWiki 1.35.0-wmf.16"/>
<meta name="referrer" content="origin"/>
<meta name="referrer" content="origin-when-crossorigin"/>
<meta name="referrer" content="origin-when-cross-origin"/>
<link rel="alternate" href="android-app://org.wikipedia/http/nl.m.wikipedia.org/wiki/Lijst_van_H-_en_P-zinnen"/>
<link rel="alternate" media="only screen and (max-width: 720px)" href="//nl.m.wikipedia.org/wiki/Lijst_van_H-_en_P-zinnen"/>
<link rel="alternate" type="application/x-wiki" title="Bewerken" href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&action=edit"/>
<link rel="edit" title="Bewerken" href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&action=edit"/>
<link rel="apple-touch-icon" href="/static/apple-touch/wikipedia.png"/>
<link rel="shortcut icon" href="/static/favicon/wikipedia.ico"/>
<link rel="search" type="application/opensearchdescription+xml" href="/w/opensearch_desc.php" title="Wikipedia (nl)"/>
<link rel="EditURI" type="application/rsd+xml" href="//nl.wikipedia.org/w/api.php?action=rsd"/>
<link rel="license" href="//creativecommons.org/licenses/by-sa/3.0/"/>
<link rel="canonical" href="https://nl.wikipedia.org/wiki/Lijst_van_H-_en_P-zinnen"/>
<link rel="dns-prefetch" href="//login.wikimedia.org"/>
<link rel="dns-prefetch" href="//meta.wikimedia.org" />
<!--[if lt IE 9]><script src="/w/resources/lib/html5shiv/html5shiv.js"></script><![endif]-->
</head>
<body class="mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject mw-editable page-Lijst_van_H-_en_P-zinnen rootpage-Lijst_van_H-_en_P-zinnen skin-vector action-view">
<div id="mw-page-base" class="noprint"></div>
<div id="mw-head-base" class="noprint"></div>
<div id="content" class="mw-body" role="main">
<a id="top"></a>
<div id="siteNotice" class="mw-body-content"><!-- CentralNotice --><div id="mw-dismissablenotice-anonplace"></div><script>(function(){var node=document.getElementById("mw-dismissablenotice-anonplace");if(node){node.outerHTML="\u003Cdiv class=\"mw-dismissable-notice\"\u003E\u003Cdiv class=\"mw-dismissable-notice-close\"\u003E[\u003Ca tabindex=\"0\" role=\"button\"\u003Esluiten\u003C/a\u003E]\u003C/div\u003E\u003Cdiv class=\"mw-dismissable-notice-body\"\u003E\u003Cdiv id=\"localNotice\" lang=\"nl\" dir=\"ltr\"\u003E\u003Ctable style=\"width:100%; text-align:center; background-color:#E4E6E5\"\u003E\n\u003Ctbody\u003E\u003Ctr\u003E\n\u003Ctd\u003E\u003Ca href=\"/wiki/Bestand:Wikipedia-logo-2-million.png\" class=\"image\"\u003E\u003Cimg alt=\"Wikipedia-logo-2-million.png\" src=\"//upload.wikimedia.org/wikipedia/commons/thumb/6/69/Wikipedia-logo-2-million.png/100px-Wikipedia-logo-2-million.png\" decoding=\"async\" width=\"100\" height=\"70\" srcset=\"//upload.wikimedia.org/wikipedia/commons/thumb/6/69/Wikipedia-logo-2-million.png/150px-Wikipedia-logo-2-million.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/6/69/Wikipedia-logo-2-million.png/200px-Wikipedia-logo-2-million.png 2x\" data-file-width=\"270\" data-file-height=\"188\" /\u003E\u003C/a\u003E\n\u003C/td\u003E\n\u003Ctd\u003E\u003Ch3\u003E\u003Cspan id=\"Bijna_twee_miljoen_artikelen_op_de_Nederlandstalige_Wikipedia.21\"\u003E\u003C/span\u003E\u003Cspan class=\"mw-headline\" id=\"Bijna_twee_miljoen_artikelen_op_de_Nederlandstalige_Wikipedia!\"\u003EBijna twee miljoen artikelen op de Nederlandstalige Wikipedia!\u003C/span\u003E\u003C/h3\u003E\n\u003Cp\u003EDoe tot en met 29 februari mee aan \u003Ca href=\"/wiki/Wikipedia:2Wiljoen\" title=\"Wikipedia:2Wiljoen\"\u003E\u003Cb\u003Ede schrijfwedstrijd\u003C/b\u003E\u003C/a\u003E.\n\u003C/p\u003E\n\u003C/td\u003E\n\u003Ctd\u003E\u003Ca href=\"/wiki/Bestand:Wikipedia-logo-2-million.png\" class=\"image\"\u003E\u003Cimg alt=\"Wikipedia-logo-2-million.png\" src=\"//upload.wikimedia.org/wikipedia/commons/thumb/6/69/Wikipedia-logo-2-million.png/100px-Wikipedia-logo-2-million.png\" decoding=\"async\" width=\"100\" height=\"70\" srcset=\"//upload.wikimedia.org/wikipedia/commons/thumb/6/69/Wikipedia-logo-2-million.png/150px-Wikipedia-logo-2-million.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/6/69/Wikipedia-logo-2-million.png/200px-Wikipedia-logo-2-million.png 2x\" data-file-width=\"270\" data-file-height=\"188\" /\u003E\u003C/a\u003E\n\u003C/td\u003E\u003C/tr\u003E\u003C/tbody\u003E\u003C/table\u003E\u003C/div\u003E\u003C/div\u003E\u003C/div\u003E";}}());</script></div>
<div class="mw-indicators mw-body-content">
</div>
<h1 id="firstHeading" class="firstHeading" lang="nl">Lijst van H- en P-zinnen</h1>
<div id="bodyContent" class="mw-body-content">
<div id="siteSub" class="noprint">Uit Wikipedia, de vrije encyclopedie</div>
<div id="contentSub"></div>
<div id="jump-to-nav"></div>
<a class="mw-jump-link" href="#mw-head">Naar navigatie springen</a>
<a class="mw-jump-link" href="#p-search">Naar zoeken springen</a>
<div id="mw-content-text" lang="nl" dir="ltr" class="mw-content-ltr"><div class="mw-parser-output"><p>Dit is de lijst van <b>gevarenaanduidingen</b> (H-zinnen, met de H van <i>hazard</i>) en <b>voorzorgsmaatregelen</b> (P-zinnen, met de P van <i>precaution</i>) volgens <a href="/wiki/Globally_Harmonised_System_of_Classification_and_Labelling_of_Chemicals" title="Globally Harmonised System of Classification and Labelling of Chemicals">Globally Harmonised System of Classification and Labelling of Chemicals</a> (<a href="/wiki/GHS" class="mw-redirect" title="GHS">GHS</a>) die in de <a href="/wiki/Europese_Unie" title="Europese Unie">Europese Unie</a> gebruikt wordt.
</p>
<div id="toc" class="toc"><input type="checkbox" role="button" id="toctogglecheckbox" class="toctogglecheckbox" style="display:none" /><div class="toctitle" lang="nl" dir="ltr"><h2>Inhoud</h2><span class="toctogglespan"><label class="toctogglelabel" for="toctogglecheckbox"></label></span></div>
<ul>
<li class="toclevel-1 tocsection-1"><a href="#Lijst_van_gevarenaanduidingen_(H-zinnen)"><span class="tocnumber">1</span> <span class="toctext">Lijst van gevarenaanduidingen (H-zinnen)</span></a>
<ul>
<li class="toclevel-2 tocsection-2"><a href="#Gevarenaanduidingen_voor_materiële_gevaren"><span class="tocnumber">1.1</span> <span class="toctext">Gevarenaanduidingen voor materiële gevaren</span></a></li>
<li class="toclevel-2 tocsection-3"><a href="#Gevarenaanduidingen_voor_gezondheidsgevaren"><span class="tocnumber">1.2</span> <span class="toctext">Gevarenaanduidingen voor gezondheidsgevaren</span></a></li>
<li class="toclevel-2 tocsection-4"><a href="#Gevarenaanduidingen_voor_milieugevaren"><span class="tocnumber">1.3</span> <span class="toctext">Gevarenaanduidingen voor milieugevaren</span></a></li>
<li class="toclevel-2 tocsection-5"><a href="#Aanvullende_gevareninformatie_(EUH-zinnen)"><span class="tocnumber">1.4</span> <span class="toctext">Aanvullende gevareninformatie (EUH-zinnen)</span></a>
<ul>
<li class="toclevel-3 tocsection-6"><a href="#Materiële_eigenschappen"><span class="tocnumber">1.4.1</span> <span class="toctext">Materiële eigenschappen</span></a></li>
<li class="toclevel-3 tocsection-7"><a href="#Gezondheidseigenschappen"><span class="tocnumber">1.4.2</span> <span class="toctext">Gezondheidseigenschappen</span></a></li>
<li class="toclevel-3 tocsection-8"><a href="#Milieueigenschappen"><span class="tocnumber">1.4.3</span> <span class="toctext">Milieueigenschappen</span></a></li>
<li class="toclevel-3 tocsection-9"><a href="#Aanvullende_etiketteringselementen/informatie_over_bepaalde_stoffen_of_mengsels"><span class="tocnumber">1.4.4</span> <span class="toctext">Aanvullende etiketteringselementen/informatie over bepaalde stoffen of mengsels</span></a></li>
</ul>
</li>
</ul>
</li>
<li class="toclevel-1 tocsection-10"><a href="#Lijst_van_voorzorgsmaatregelen_(P-zinnen)"><span class="tocnumber">2</span> <span class="toctext">Lijst van voorzorgsmaatregelen (P-zinnen)</span></a>
<ul>
<li class="toclevel-2 tocsection-11"><a href="#Algemeen"><span class="tocnumber">2.1</span> <span class="toctext">Algemeen</span></a></li>
<li class="toclevel-2 tocsection-12"><a href="#Voorzorgsmaatregelen_in_verband_met_preventie"><span class="tocnumber">2.2</span> <span class="toctext">Voorzorgsmaatregelen in verband met preventie</span></a></li>
<li class="toclevel-2 tocsection-13"><a href="#Voorzorgsmaatregelen_in_verband_met_reactie"><span class="tocnumber">2.3</span> <span class="toctext">Voorzorgsmaatregelen in verband met reactie</span></a></li>
<li class="toclevel-2 tocsection-14"><a href="#Voorzorgsmaatregelen_in_verband_met_opslag"><span class="tocnumber">2.4</span> <span class="toctext">Voorzorgsmaatregelen in verband met opslag</span></a></li>
<li class="toclevel-2 tocsection-15"><a href="#Voorzorgsmaatregelen_in_verband_met_verwijdering"><span class="tocnumber">2.5</span> <span class="toctext">Voorzorgsmaatregelen in verband met verwijdering</span></a></li>
</ul>
</li>
<li class="toclevel-1 tocsection-16"><a href="#Zie_ook"><span class="tocnumber">3</span> <span class="toctext">Zie ook</span></a></li>
<li class="toclevel-1 tocsection-17"><a href="#Referentie"><span class="tocnumber">4</span> <span class="toctext">Referentie</span></a></li>
</ul>
</div>
<h2><span id="Lijst_van_gevarenaanduidingen_.28H-zinnen.29"></span><span class="mw-headline" id="Lijst_van_gevarenaanduidingen_(H-zinnen)">Lijst van gevarenaanduidingen (H-zinnen)</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&veaction=edit&section=1" class="mw-editsection-visualeditor" title="Bewerk dit kopje: Lijst van gevarenaanduidingen (H-zinnen)">bewerken</a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&action=edit&section=1" title="Bewerk dit kopje: Lijst van gevarenaanduidingen (H-zinnen)">brontekst bewerken</a><span class="mw-editsection-bracket">]</span></span></h2>
<h3><span id="Gevarenaanduidingen_voor_materi.C3.ABle_gevaren"></span><span class="mw-headline" id="Gevarenaanduidingen_voor_materiële_gevaren">Gevarenaanduidingen voor materiële gevaren</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&veaction=edit&section=2" class="mw-editsection-visualeditor" title="Bewerk dit kopje: Gevarenaanduidingen voor materiële gevaren">bewerken</a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&action=edit&section=2" title="Bewerk dit kopje: Gevarenaanduidingen voor materiële gevaren">brontekst bewerken</a><span class="mw-editsection-bracket">]</span></span></h3>
<table class="wikitable">
<tbody><tr>
<th>Code</th>
<th>Van toepassing op</th>
<th>Begeleidende tekst
</th></tr>
<tr>
<td>H200</td>
<td>Ontplofbare stoffen, instabiel</td>
<td>"Instabiele ontplofbare stof."
</td></tr>
<tr>
<td>H201</td>
<td>Ontplofbare stoffen, subklasse 1.1</td>
<td>"Ontplofbare stof: gevaar voor massa-explosie."
</td></tr>
<tr>
<td>H202</td>
<td>Ontplofbare stoffen, subklasse 1.2</td>
<td>"Ontplofbare stof, ernstig gevaar voor scherfwerking."
</td></tr>
<tr>
<td>H203</td>
<td>Ontplofbare stoffen, subklasse 1.3</td>
<td>"Ontplofbare stof; gevaar voor brand, luchtdrukwerking of scherfwerking."
</td></tr>
<tr>
<td>H204</td>
<td>Ontplofbare stoffen, subklasse 1.4</td>
<td>"Gevaar voor brand of scherfwerking."
</td></tr>
<tr>
<td>H205</td>
<td>Ontplofbare stoffen, subklasse 1.5</td>
<td>"Gevaar voor massa-explosie bij brand."
</td></tr>
<tr>
<td>H207</td>
<td>Ontplofbare stoffen, subklasse 1.7</td>
<td>"Kan brand veroorzaken of brand bevorderen."
</td></tr>
<tr>
<td>H220</td>
<td>Ontvlambare gassen, gevarencategorie 1</td>
<td>"Zeer licht ontvlambaar gas."
</td></tr>
<tr>
<td>H221</td>
<td>Ontvlambare gassen, gevarencategorie 2</td>
<td>"Ontvlambaar gas."
</td></tr>
<tr>
<td>H222</td>
<td><a href="/wiki/Aerosol" title="Aerosol">Aerosolen</a>, gevarencategorie 1</td>
<td>"Zeer licht ontvlambare aerosol."
</td></tr>
<tr>
<td>H223</td>
<td>Aerosolen, gevarencategorie 2</td>
<td>"Ontvlambare aerosol."
</td></tr>
<tr>
<td>H224</td>
<td>Ontvlambare vloeistoffen, gevarencategorie 1</td>
<td>"Zeer licht ontvlambare vloeistof en damp."
</td></tr>
<tr>
<td>H225</td>
<td>Ontvlambare vloeistoffen, gevarencategorie 2</td>
<td>"Licht ontvlambare vloeistof en damp."
</td></tr>
<tr>
<td>H226</td>
<td>Ontvlambare vloeistoffen, gevarencategorie 3</td>
<td>"Ontvlambare vloeistof en damp."
</td></tr>
<tr>
<td>H227</td>
<td>Ontvlambare vloeistoffen, gevarencategorie 4</td>
<td>"Brandbare vloeistof."
</td></tr>
<tr>
<td>H228</td>
<td>Ontvlambare vaste stoffen, gevarencategorie 1 en 2</td>
<td>"Ontvlambare vaste stof."
</td></tr>
<tr>
<td>H229</td>
<td>Aerosolen, gevarencategorieën 1,2,3</td>
<td>"Houder onder druk: kan openbarsten bij verhitting"
</td></tr>
<tr>
<td>H230</td>
<td>Ontvlambare gassen (waaronder chemisch instabiele gassen), gevarencategorie A</td>
<td>"Kan explosief reageren zelfs in afwezigheid van lucht"
</td></tr>
<tr>
<td>H231</td>
<td>Ontvlambare gassen (waaronder chemisch instabiele gassen), gevarencategorie B</td>
<td>"Kan explosief reageren zelfs in afwezigheid van lucht bij verhoogde druk en/of temperatuur"
</td></tr>
<tr>
<td>H240</td>
<td>Zelfontledende stoffen en mengsels, type A<br />Organische peroxiden, type A</td>
<td>"Ontploffingsgevaar bij verwarming."
</td></tr>
<tr>
<td>H241</td>
<td>Zelfontledende stoffen en mengsels, type B<br />Organische peroxiden, type B</td>
<td>"Brand- of ontploffingsgevaar bij verwarming."
</td></tr>
<tr>
<td>H242</td>
<td>Zelfontledende stoffen en mengsels, type C, D, E en F<br />Organische peroxiden, type C, D, E en F</td>
<td>"Brandgevaar bij verwarming."
</td></tr>
<tr>
<td>H250</td>
<td>Pyrofore vloeistoffen, gevarencategorie 1<br />Pyrofore vaste stoffen, gevarencategorie 1</td>
<td>"Vat spontaan vlam bij blootstelling aan lucht."
</td></tr>
<tr>
<td>H251</td>
<td>Voor zelfverhitting vatbare stoffen en mengsels, gevarencategorie 1</td>
<td>"Vatbaar voor zelfverhitting: kan vlam vatten."
</td></tr>
<tr>
<td>H252</td>
<td>Voor zelfverhitting vatbare stoffen en mengsels, gevarencategorie 2</td>
<td>"In grote hoeveelheden vatbaar voor zelfverhitting: kan vlam vatten."
</td></tr>
<tr>
<td>H260</td>
<td>Stoffen en mengsels die in contact met water ontvlambare gassen ontwikkelen, gevarencategorie 1</td>
<td>"In contact met water komen ontvlambare gassen vrij die spontaan kunnen ontbranden."
</td></tr>
<tr>
<td>H261</td>
<td>Stoffen en mengsels die in contact met water ontvlambare gassen ontwikkelen, gevarencategorie 2 en 3</td>
<td>"In contact met water komen ontvlambare gassen vrij."
</td></tr>
<tr>
<td>H270</td>
<td>Oxiderende gassen, gevarencategorie 1</td>
<td>"Kan brand veroorzaken of bevorderen; oxiderend."
</td></tr>
<tr>
<td>H271</td>
<td>Oxiderende vloeistoffen, gevarencategorie 1<br />Oxiderende vaste stoffen, gevarencategorie 1</td>
<td>"Kan brand of ontploffingen veroorzaken; sterk oxiderend."
</td></tr>
<tr>
<td>H272</td>
<td>Oxiderende vloeistoffen, gevarencategorie 2 en 3<br />Oxiderende vaste stoffen, gevarencategorie 2 en 3</td>
<td>"Kan brand bevorderen; oxiderend."
</td></tr>
<tr>
<td>H280</td>
<td>Gassen onder druk: samengeperst gas; vloeibaar gas; opgelost gas</td>
<td>"Bevat gas onder druk; kan ontploffen bij verwarming."
</td></tr>
<tr>
<td>H281</td>
<td>Gassen onder druk: sterk gekoeld vloeibaar gas</td>
<td>"Bevat sterk gekoeld gas; kan cryogene brandwonden of letsel veroorzaken."
</td></tr>
<tr>
<td>H290</td>
<td>Bijtend voor metalen, gevarencategorie 1</td>
<td>"Kan bijtend zijn voor metalen."
</td></tr></tbody></table>
<p>Codes H229, H230 en H231 zijn ingevoegd door Europese Verordening 487/2013 van 8 mei 2013.<sup id="cite_ref-V487_1-0" class="reference"><a href="#cite_note-V487-1">[1]</a></sup>
</p>
<h3><span class="mw-headline" id="Gevarenaanduidingen_voor_gezondheidsgevaren">Gevarenaanduidingen voor gezondheidsgevaren</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&veaction=edit&section=3" class="mw-editsection-visualeditor" title="Bewerk dit kopje: Gevarenaanduidingen voor gezondheidsgevaren">bewerken</a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&action=edit&section=3" title="Bewerk dit kopje: Gevarenaanduidingen voor gezondheidsgevaren">brontekst bewerken</a><span class="mw-editsection-bracket">]</span></span></h3>
<table class="wikitable">
<tbody><tr>
<th>Code</th>
<th>Van toepassing op</th>
<th>Begeleidende tekst
</th></tr>
<tr>
<td>H300</td>
<td>Acute orale toxiciteit, gevarencategorie 1 en 2</td>
<td>"Dodelijk bij inslikken."
</td></tr>
<tr>
<td>H301</td>
<td>Acute orale toxiciteit, gevarencategorie 3</td>
<td>"Giftig bij inslikken."
</td></tr>
<tr>
<td>H302</td>
<td>Acute orale toxiciteit, gevarencategorie 4</td>
<td>"Schadelijk bij inslikken."
</td></tr>
<tr>
<td>H304</td>
<td>Aspiratiegevaar, gevarencategorie 1</td>
<td>"Kan dodelijk zijn als de stof bij inslikken in de luchtwegen terechtkomt."
</td></tr>
<tr>
<td>H310</td>
<td>Acute dermale toxiciteit, gevarencategorie 1 en 2</td>
<td>"Dodelijk bij contact met de huid."
</td></tr>
<tr>
<td>H311</td>
<td>Acute dermale toxiciteit, gevarencategorie 3</td>
<td>"Giftig bij contact met de huid."
</td></tr>
<tr>
<td>H312</td>
<td>Acute dermale toxiciteit, gevarencategorie 4</td>
<td>"Schadelijk bij contact met de huid."
</td></tr>
<tr>
<td>H314</td>
<td>Huidcorrosie/-irritatie, gevarencategorie 1A, 1B en 1C</td>
<td>"Veroorzaakt ernstige brandwonden en oogletsels."
</td></tr>
<tr>
<td>H315</td>
<td>Huidcorrosie/-irritatie, gevarencategorie 2</td>
<td>"Veroorzaakt huidirritatie."
</td></tr>
<tr>
<td>H317</td>
<td>Huidsensibilisatie, gevarencategorie 1</td>
<td>"Kan een allergische huidreactie veroorzaken."
</td></tr>
<tr>
<td>H318</td>
<td>Ernstig oogletsel/oogirritatie, gevarencategorie 1</td>
<td>"Veroorzaakt ernstig oogletsel."
</td></tr>
<tr>
<td>H319</td>
<td>Ernstig oogletsel/oogirritatie, gevarencategorie 2A</td>
<td>"Veroorzaakt ernstige oogirritatie."
</td></tr>
<tr>
<td>H330</td>
<td>Acute toxiciteit bij inademing, gevarencategorie 1 en 2</td>
<td>"Dodelijk bij inademing."
</td></tr>
<tr>
<td>H331</td>
<td>Acute toxiciteit bij inademing, gevarencategorie 3</td>
<td>"Giftig bij inademing."
</td></tr>
<tr>
<td>H332</td>
<td>Acute toxiciteit bij inademing, gevarencategorie 4</td>
<td>"Schadelijk bij inademing."
</td></tr>
<tr>
<td>H334</td>
<td>Sensibilisatie van de luchtwegen, gevarencategorie 1</td>
<td>"Kan bij inademing allergie- of astmasymptomen of ademhalingsmoeilijkheden veroorzaken."
</td></tr>
<tr>
<td>H335</td>
<td>Specifieke doelorgaantoxiciteit bij eenmalige blootstelling, gevarencategorie 3, irritatie van de luchtwegen</td>
<td>"Kan irritatie van de luchtwegen veroorzaken."
</td></tr>
<tr>
<td>H336</td>
<td>Specifieke doelorgaantoxiciteit bij eenmalige blootstelling, gevarencategorie 3, narcotische werking</td>
<td>"Kan slaperigheid of duizeligheid veroorzaken."
</td></tr>
<tr>
<td>H340</td>
<td>Mutageniteit in geslachtscellen, gevarencategorie 1A en 1B</td>
<td>"Kan genetische schade veroorzaken <i><blootstellingsroute vermelden indien afdoende bewezen is dat het gevaar bij andere blootstellingsroutes niet aanwezig is></i>."
</td></tr>
<tr>
<td>H341</td>
<td>Mutageniteit in geslachtscellen, gevarencategorie 2</td>
<td>"Verdacht van het veroorzaken van genetische schade <i><blootstellingsroute vermelden indien afdoende bewezen is dat het gevaar bij andere blootstellingsroutes niet aanwezig is></i>."
</td></tr>
<tr>
<td>H350</td>
<td>Kankerverwekkendheid, gevarencategorie 1A en 1B</td>
<td>"Kan kanker veroorzaken <i><blootstellingsroute vermelden indien afdoende bewezen is dat het gevaar bij andere blootstellingsroutes niet aanwezig is></i>."
</td></tr>
<tr>
<td>H351</td>
<td>Kankerverwekkendheid, gevarencategorie 2</td>
<td>"Verdacht van het veroorzaken van kanker <i><blootstellingsroute vermelden indien afdoende bewezen is dat het gevaar bij andere blootstellingsroutes niet aanwezig is></i>."
</td></tr>
<tr>
<td>H360</td>
<td>Voortplantingstoxiciteit, gevarencategorie 1A en 1B</td>
<td>"Kan de vruchtbaarheid of het ongeboren kind schaden <i><specifiek effect vermelden indien bekend></i> <i><blootstellingsroute vermelden indien afdoende bewezen is dat het gevaar bij andere blootstellingsroutes niet aanwezig is></i>."
</td></tr>
<tr>
<td>H361</td>
<td>Voortplantingstoxiciteit, gevarencategorie 2</td>
<td>"Kan mogelijk de vruchtbaarheid of het ongeboren kind schaden <i><specifiek effect vermelden indien bekend></i> <i><blootstellingsroute vermelden indien afdoende bewezen is dat het gevaar bij andere blootstellingsroutes niet aanwezig is></i>."
</td></tr>
<tr>
<td>H362</td>
<td>Voortplantingstoxiciteit, aanvullende categorie, effecten op en via lactatie</td>
<td>"Kan schadelijk zijn via de borstvoeding."
</td></tr>
<tr>
<td>H370</td>
<td>Specifieke doelorgaantoxiciteit bij eenmalige blootstelling, gevarencategorie 1</td>
<td>"Veroorzaakt schade aan organen <i><of alle betrokken organen vermelden indien bekend></i> <i><blootstellingsroute vermelden indien afdoende bewezen is dat het gevaar bij andere blootstellingsroutes niet aanwezig is</i>>."
</td></tr>
<tr>
<td>H371</td>
<td>Specifieke doelorgaantoxiciteit bij eenmalige blootstelling, gevarencategorie 2</td>
<td>"Kan schade aan organen <i><of alle betrokken organen vermelden indien bekend></i> veroorzaken <i><blootstellingsroute vermelden indien afdoende bewezen is dat het gevaar bij andere blootstellingsroutes niet aanwezig is></i>."
</td></tr>
<tr>
<td>H372</td>
<td>Specifieke doelorgaantoxiciteit bij herhaalde blootstelling, gevarencategorie 1</td>
<td>"Veroorzaakt schade aan organen <i><of alle betrokken organen vermelden indien bekend></i> bij langdurige of herhaalde blootstelling <i><blootstellingsroute vermelden indien afdoende bewezen is dat het gevaar bij andere blootstellingsroutes niet aanwezig is></i>."
</td></tr>
<tr>
<td>H373</td>
<td>Specifieke doelorgaantoxiciteit bij herhaalde blootstelling, gevarencategorie 2</td>
<td>"Kan schade aan organen <i><of alle betrokken organen vermelden indien bekend></i> veroorzaken bij langdurige of herhaalde blootstelling <i><blootstellingsroute vermelden indien afdoende bewezen is dat het gevaar bij andere blootstellingsroutes niet aanwezig is></i>."
</td></tr>
<tr>
<td>H300+H310</td>
<td>Acute orale toxiciteit en acute dermale toxiciteit, gevarencategorie 1 en 2</td>
<td>"Dodelijk bij inslikken en bij contact met de huid"
</td></tr>
<tr>
<td>H300+H330</td>
<td>Acute orale toxiciteit en acute toxiciteit bij inademing, gevarencategorie 1 en 2</td>
<td>"Dodelijk bij inslikken en bij inademing"
</td></tr>
<tr>
<td>H310+H330</td>
<td>Acute dermale toxiciteit en acute toxiciteit bij inademing, gevarencategorie 1 en 2</td>
<td>"Dodelijk bij contact met de huid en bij inademing"
</td></tr>
<tr>
<td>H300+H310+H330</td>
<td>Acute orale toxiciteit, acute dermale toxiciteit en acute toxiciteit bij inademing,gevarencategorie 1 en 2</td>
<td>"Dodelijk bij inslikken, bij contact met de huid en bij inademing"
</td></tr>
<tr>
<td>H301+H311</td>
<td>Acute orale toxiciteit en acute dermale toxiciteit, gevarencategorie 3</td>
<td>"Giftig bij inslikken en bij contact met de huid"
</td></tr>
<tr>
<td>H301+H331</td>
<td>Acute orale toxiciteit en acute toxiciteit bij inademing, gevarencategorie 3</td>
<td>"Giftig bij inslikken en bij inademing"
</td></tr>
<tr>
<td>H311+H331</td>
<td>Acute dermale toxiciteit en acute toxiciteit bij inademing, gevarencategorie 3</td>
<td>"Giftig bij contact met de huid en bij inademing"
</td></tr>
<tr>
<td>H301+H311+H331</td>
<td>Acute orale toxiciteit, acute dermale toxiciteit en acute toxiciteit bij inademing,gevarencategorie 3</td>
<td>"Giftig bij inslikken, bij contact met de huid en bij inademing"
</td></tr>
<tr>
<td>H302+H312</td>
<td>Acute orale toxiciteit en acute dermale toxiciteit, gevarencategorie 4</td>
<td>"Schadelijk bij inslikken en bij contact met de huid"
</td></tr>
<tr>
<td>H302+H332</td>
<td>Acute orale toxiciteit en acute toxiciteit bij inademing, gevarencategorie 4</td>
<td>"Schadelijk bij inslikken en bij inademing"
</td></tr>
<tr>
<td>H312+H332</td>
<td>Acute dermale toxiciteit en acute toxiciteit bij inademing, gevarencategorie 4</td>
<td>"Schadelijk bij contact met de huid en bij inademing"
</td></tr>
<tr>
<td>H302+H312+H332</td>
<td>Acute orale toxiciteit, acute dermale toxiciteit en acute toxiciteit bij inademing,gevarencategorie 4</td>
<td>"Schadelijk bij inslikken, bij contact met de huid en bij inademing"
</td></tr></tbody></table>
<h3><span class="mw-headline" id="Gevarenaanduidingen_voor_milieugevaren">Gevarenaanduidingen voor milieugevaren</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&veaction=edit&section=4" class="mw-editsection-visualeditor" title="Bewerk dit kopje: Gevarenaanduidingen voor milieugevaren">bewerken</a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&action=edit&section=4" title="Bewerk dit kopje: Gevarenaanduidingen voor milieugevaren">brontekst bewerken</a><span class="mw-editsection-bracket">]</span></span></h3>
<table class="wikitable">
<tbody><tr>
<th>Code</th>
<th>Van toepassing op</th>
<th>Begeleidende tekst
</th></tr>
<tr>
<td>H400</td>
<td>Acuut gevaar voor het aquatisch milieu, gevarencategorie 1</td>
<td>"Zeer giftig voor in het water levende organismen."
</td></tr>
<tr>
<td>H410</td>
<td>Chronisch gevaar voor het aquatisch milieu, gevarencategorie 1</td>
<td>"Zeer giftig voor in het water levende organismen, met langdurige gevolgen."
</td></tr>
<tr>
<td>H411</td>
<td>Chronisch gevaar voor het aquatisch milieu, gevarencategorie 2</td>
<td>"Giftig voor in het water levende organismen, met langdurige gevolgen."
</td></tr>
<tr>
<td>H412</td>
<td>Chronisch gevaar voor het aquatisch milieu, gevarencategorie 3</td>
<td>"Schadelijk voor in het water levende organismen, met langdurige gevolgen."
</td></tr>
<tr>
<td>H413</td>
<td>Chronisch gevaar voor het aquatisch milieu, gevarencategorie 4</td>
<td>"Kan langdurige schadelijk gevolgen voor in het water levende organismen hebben."
</td></tr>
<tr>
<td>H420</td>
<td>Gevaarlijk voor de ozonlaag, gevarencategorie 1</td>
<td>"Schadelijk voor de volksgezondheid en het milieu door afbraak van ozon in de bovenste lagen van de atmosfeer"
</td></tr></tbody></table>
<h3><span id="Aanvullende_gevareninformatie_.28EUH-zinnen.29"></span><span class="mw-headline" id="Aanvullende_gevareninformatie_(EUH-zinnen)">Aanvullende gevareninformatie (EUH-zinnen)</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&veaction=edit&section=5" class="mw-editsection-visualeditor" title="Bewerk dit kopje: Aanvullende gevareninformatie (EUH-zinnen)">bewerken</a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&action=edit&section=5" title="Bewerk dit kopje: Aanvullende gevareninformatie (EUH-zinnen)">brontekst bewerken</a><span class="mw-editsection-bracket">]</span></span></h3>
<h4><span id="Materi.C3.ABle_eigenschappen"></span><span class="mw-headline" id="Materiële_eigenschappen">Materiële eigenschappen</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&veaction=edit&section=6" class="mw-editsection-visualeditor" title="Bewerk dit kopje: Materiële eigenschappen">bewerken</a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&action=edit&section=6" title="Bewerk dit kopje: Materiële eigenschappen">brontekst bewerken</a><span class="mw-editsection-bracket">]</span></span></h4>
<table class="wikitable">
<tbody><tr>
<th>Code</th>
<th>Begeleidende tekst
</th></tr>
<tr>
<td>EUH001</td>
<td>"In droge toestand ontplofbaar."
</td></tr>
<tr>
<td>EUH014</td>
<td>"Reageert heftig met water."
</td></tr>
<tr>
<td>EUH018</td>
<td>"Kan bij gebruik een ontvlambaar/ontplofbaar damp-luchtmengsel vormen."
</td></tr>
<tr>
<td>EUH019</td>
<td>"Kan ontplofbare peroxiden vormen."
</td></tr>
<tr>
<td>EUH044</td>
<td>"Ontploffingsgevaar bij verwarming in afgesloten toestand."
</td></tr></tbody></table>
<p>De aanduiding EUH006, "Ontplofbaar met en zonder lucht.", is geschrapt door de Europese Verordening (EU) nr. 487/2013 van 8 mei 2013.<sup id="cite_ref-V487_1-1" class="reference"><a href="#cite_note-V487-1">[1]</a></sup>
</p>
<h4><span class="mw-headline" id="Gezondheidseigenschappen">Gezondheidseigenschappen</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&veaction=edit&section=7" class="mw-editsection-visualeditor" title="Bewerk dit kopje: Gezondheidseigenschappen">bewerken</a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&action=edit&section=7" title="Bewerk dit kopje: Gezondheidseigenschappen">brontekst bewerken</a><span class="mw-editsection-bracket">]</span></span></h4>
<table class="wikitable">
<tbody><tr>
<th>Code</th>
<th>Begeleidende tekst
</th></tr>
<tr>
<td>EUH029</td>
<td>"Vormt giftig gas in contact met water."
</td></tr>
<tr>
<td>EUH031</td>
<td>"Vormt giftig gas in contact met zuren."
</td></tr>
<tr>
<td>EUH032</td>
<td>"Vormt zeer giftig gas in contact met zuren."
</td></tr>
<tr>
<td>EUH066</td>
<td>"Herhaalde blootstelling kan een droge of een gebarsten huid veroorzaken."
</td></tr>
<tr>
<td>EUH070</td>
<td>"Giftig bij oogcontact."
</td></tr>
<tr>
<td>EUH071</td>
<td>"Bijtend voor de luchtwegen."
</td></tr></tbody></table>
<h4><span class="mw-headline" id="Milieueigenschappen">Milieueigenschappen</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&veaction=edit&section=8" class="mw-editsection-visualeditor" title="Bewerk dit kopje: Milieueigenschappen">bewerken</a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&action=edit&section=8" title="Bewerk dit kopje: Milieueigenschappen">brontekst bewerken</a><span class="mw-editsection-bracket">]</span></span></h4>
<table class="wikitable">
<tbody><tr>
<th>Code</th>
<th>Begeleidende tekst
</th></tr>
<tr>
<td>EUH059</td>
<td>"Gevaarlijk voor de ozonlaag." <small>(vervangen door H-zin H420)</small>
</td></tr></tbody></table>
<h4><span id="Aanvullende_etiketteringselementen.2Finformatie_over_bepaalde_stoffen_of_mengsels"></span><span class="mw-headline" id="Aanvullende_etiketteringselementen/informatie_over_bepaalde_stoffen_of_mengsels">Aanvullende etiketteringselementen/informatie over bepaalde stoffen of mengsels</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&veaction=edit&section=9" class="mw-editsection-visualeditor" title="Bewerk dit kopje: Aanvullende etiketteringselementen/informatie over bepaalde stoffen of mengsels">bewerken</a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&action=edit&section=9" title="Bewerk dit kopje: Aanvullende etiketteringselementen/informatie over bepaalde stoffen of mengsels">brontekst bewerken</a><span class="mw-editsection-bracket">]</span></span></h4>
<table class="wikitable">
<tbody><tr>
<th>Code</th>
<th>Begeleidende tekst
</th></tr>
<tr>
<td>EUH201</td>
<td>"Bevat lood. Mag niet worden gebruikt voor voorwerpen waarin kinderen kunnen bijten of waaraan kinderen kunnen zuigen.
</td></tr>
<tr>
<td>EUH201A(*)</td>
<td>"Let op! Bevat lood."
</td></tr>
<tr>
<td>EUH202</td>
<td>"Cyanoacrylaat. Gevaarlijk. Kleeft binnen enkele seconden aan huid en oogleden. Buiten het bereik van kinderen houden."
</td></tr>
<tr>
<td>EUH203</td>
<td>"Bevat zeswaardig chroom. Kan een allergische reactie veroorzaken."
</td></tr>
<tr>
<td>EUH204</td>
<td>"Bevat isocyanaten. Kan een allergische reactie veroorzaken."
</td></tr>
<tr>
<td>EUH205</td>
<td>"Bevat epoxyverbindingen. Kan een allergische reactie veroorzaken."
</td></tr>
<tr>
<td>EUH206</td>
<td>"Let op! Niet in combinatie met andere producten gebruiken. Er kunnen gevaarlijke gassen (chloor) vrijkomen."
</td></tr>
<tr>
<td>EUH207</td>
<td>"Let op! Bevat cadmium. Bij het gebruik ontwikkelen zich gevaarlijke dampen. Zie de aanwijzigen van de fabrikant. Neem de veiligheidsvoorschriften in acht."
</td></tr>
<tr>
<td>EUH208</td>
<td>"Bevat <i><naam van de sensibiliserende stof></i>. Kan een allergische reactie veroorzaken."
</td></tr>
<tr>
<td>EUH209</td>
<td>"Kan bij gebruik licht ontvlambaar worden."
</td></tr>
<tr>
<td>EUH209A</td>
<td>"Kan bij gebruik ontvlambaar worden."
</td></tr>
<tr>
<td>EUH210</td>
<td>"Veiligheidsinformatieblad op verzoek verkrijgbaar."
</td></tr>
<tr>
<td>EUH401</td>
<td>"Volg de gebruiksaanwijzing om gevaar voor de menselijke gezondheid en het milieu te voorkomen."
</td></tr></tbody></table>
<p>(*) alternatief voor EUH201 in bepaalde omstandigheden
</p>
<h2><span id="Lijst_van_voorzorgsmaatregelen_.28P-zinnen.29"></span><span class="mw-headline" id="Lijst_van_voorzorgsmaatregelen_(P-zinnen)">Lijst van voorzorgsmaatregelen (P-zinnen)</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&veaction=edit&section=10" class="mw-editsection-visualeditor" title="Bewerk dit kopje: Lijst van voorzorgsmaatregelen (P-zinnen)">bewerken</a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&action=edit&section=10" title="Bewerk dit kopje: Lijst van voorzorgsmaatregelen (P-zinnen)">brontekst bewerken</a><span class="mw-editsection-bracket">]</span></span></h2>
<h3><span class="mw-headline" id="Algemeen">Algemeen</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&veaction=edit&section=11" class="mw-editsection-visualeditor" title="Bewerk dit kopje: Algemeen">bewerken</a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&action=edit&section=11" title="Bewerk dit kopje: Algemeen">brontekst bewerken</a><span class="mw-editsection-bracket">]</span></span></h3>
<table class="wikitable">
<tbody><tr>
<th>Nummer</th>
<th>Begeleidende tekst
</th></tr>
<tr>
<td>P101</td>
<td>"Bij het inwinnen van medisch advies, de verpakking of het etiket ter beschikking houden."
</td></tr>
<tr>
<td>P102</td>
<td>"Buiten het bereik van kinderen houden."
</td></tr>
<tr>
<td>P103</td>
<td>"Alvorens te gebruiken, het etiket lezen."
</td></tr></tbody></table>
<h3><span class="mw-headline" id="Voorzorgsmaatregelen_in_verband_met_preventie">Voorzorgsmaatregelen in verband met preventie</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&veaction=edit&section=12" class="mw-editsection-visualeditor" title="Bewerk dit kopje: Voorzorgsmaatregelen in verband met preventie">bewerken</a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&action=edit&section=12" title="Bewerk dit kopje: Voorzorgsmaatregelen in verband met preventie">brontekst bewerken</a><span class="mw-editsection-bracket">]</span></span></h3>
<table class="wikitable">
<tbody><tr>
<th>Code</th>
<th>Begeleidende tekst
</th></tr>
<tr>
<td>P201</td>
<td>"Alvorens te gebruiken, de speciale aanwijzingen raadplegen."
</td></tr>
<tr>
<td>P202</td>
<td>"Pas gebruiken nadat u alle veiligheidsvoorschriften gelezen en begrepen heeft."
</td></tr>
<tr>
<td>P210</td>
<td>"Verwijderd houden van warmte/vonken/open vuur/hete oppervlakken en andere ontstekingsbronnen. - Niet roken."
</td></tr>
<tr>
<td>P211</td>
<td>"Niet in een open vuur of op andere ontstekingsbronnen spuiten."
</td></tr>
<tr>
<td>P220</td>
<td>"Van kleding/.../brandbare stoffen verwijderd houden/bewaren."
</td></tr>
<tr>
<td>P222
</td>
<td>contact met lucht vermijden
</td></tr>
<tr>
<td>P230</td>
<td>"Vochtig houden met..."
</td></tr>
<tr>
<td>P231</td>
<td>"Onder inert gas werken."
</td></tr>
<tr>
<td>P232</td>
<td>"Tegen vocht beschermen."
</td></tr>
<tr>
<td>P233</td>
<td>"In goed gesloten verpakking bewaren."
</td></tr>
<tr>
<td>P234</td>
<td>"Uitsluitend in de oorspronkelijke verpakking bewaren."
</td></tr>
<tr>
<td>P235</td>
<td>"Koel bewaren."
</td></tr>
<tr>
<td>P240</td>
<td>"Opslag- en opvangreservoir aarden."
</td></tr>
<tr>
<td>P241</td>
<td>"Explosieveilige elektrische/ventilatie-/verlichtings-/...apparatuur gebruiken."
</td></tr>
<tr>
<td>P242</td>
<td>"Uitsluitend vonkvrij gereedschap gebruiken."
</td></tr>
<tr>
<td>P243</td>
<td>"Voorzorgsmaatregelen treffen tegen ontladingen van statische elektriciteit."
</td></tr>
<tr>
<td>P244</td>
<td>"Houd afsluiters en fittingen vrij van olie en vet."
</td></tr>
<tr>
<td>P250</td>
<td>"Malen/schokken/...wrijving vermijden."
</td></tr>
<tr>
<td>P251</td>
<td>"Ook na gebruik niet doorboren of verbranden."
</td></tr>
<tr>
<td>P260</td>
<td>"Stof/rook/gas/nevel/damp/spuitnevel niet inademen."
</td></tr>
<tr>
<td>P261</td>
<td>"Inademing van stof/rook/gas/nevel/damp/spuitnevel vermijden."
</td></tr>
<tr>
<td>P262</td>
<td>"Contact met de ogen, de huid of de kleding vermijden."
</td></tr>
<tr>
<td>P263</td>
<td>"Bij zwangerschap of borstvoeding aanraking vermijden."
</td></tr>
<tr>
<td>P264</td>
<td>"Na het werken met dit product ... grondig wassen."
</td></tr>
<tr>
<td>P270</td>
<td>"Niet eten, drinken of roken tijdens het gebruik van dit product."
</td></tr>
<tr>
<td>P271</td>
<td>"Alleen buiten of in een goed geventileerde ruimte gebruiken."
</td></tr>
<tr>
<td>P272</td>
<td>"Verontreinigde werkkleding mag de werkruimte niet verlaten."
</td></tr>
<tr>
<td>P273</td>
<td>"Voorkom lozing in het milieu."
</td></tr>
<tr>
<td>P280</td>
<td>"Beschermende kledij dragen."
</td></tr>
<tr>
<td>P282</td>
<td>"Koude-isolerende handschoenen/gelaatsbescherming/oogbescherming dragen."
</td></tr>
<tr>
<td>P283</td>
<td>"Vuur/vlambestendige/brandwerende kleding dragen."
</td></tr>
<tr>
<td>P284</td>
<td>"[Bij ontoereikende ventilatie] adembescherming dragen."
</td></tr>
<tr>
<td>P231+P232</td>
<td>"Onder inert gas werken. Tegen vocht beschermen."
</td></tr>
<tr>
<td>P235+P410</td>
<td>"Koel bewaren. Tegen zonlicht beschermen."
</td></tr></tbody></table>
<p>Codes P281 ("De nodige persoonlijke beschermingsuitrusting gebruiken.") en P285 ("Bij ontoereikende ventilatie een geschikte adembescherming dragen.") zijn geschrapt door Europese Verordening 487/2013.<sup id="cite_ref-V487_1-2" class="reference"><a href="#cite_note-V487-1">[1]</a></sup>
</p>
<h3><span class="mw-headline" id="Voorzorgsmaatregelen_in_verband_met_reactie">Voorzorgsmaatregelen in verband met reactie</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&veaction=edit&section=13" class="mw-editsection-visualeditor" title="Bewerk dit kopje: Voorzorgsmaatregelen in verband met reactie">bewerken</a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&action=edit&section=13" title="Bewerk dit kopje: Voorzorgsmaatregelen in verband met reactie">brontekst bewerken</a><span class="mw-editsection-bracket">]</span></span></h3>
<table class="wikitable">
<tbody><tr>
<th>Code</th>
<th>Begeleidende tekst
</th></tr>
<tr>
<td>P301</td>
<td>"NA INSLIKKEN:" → onmiddellijk het antigifcentrum of een arts raadplegen."
</td></tr>
<tr>
<td>P302</td>
<td>"BIJ CONTACT MET DE HUID:"
</td></tr>
<tr>
<td>P303</td>
<td>"BIJ CONTACT MET DE HUID (of het haar):"
</td></tr>
<tr>
<td>P304</td>
<td>"NA INADEMING:"
</td></tr>
<tr>
<td>P305</td>
<td>"BIJ CONTACT MET DE OGEN:" → onmiddellijk zachtjes afspoelen met water.
</td></tr>
<tr>
<td>P306</td>
<td>"NA MORSEN OP KLEDING:" → Zo snel mogelijk de kledij uitdoen.
</td></tr>
<tr>
<td>P308</td>
<td>"NA (mogelijke) blootstelling:"
</td></tr>
<tr>
<td>P310</td>
<td>"Onmiddellijk een ANTIGIFCENTRUM/arts/... raadplegen."
</td></tr>
<tr>
<td>P311</td>
<td>"Een ANTIGIFCENTRUM/arts/... raadplegen."
</td></tr>
<tr>
<td>P312</td>
<td>"Bij onwel voelen een ANTIGIFCENTRUM/arts/... raadplegen."
</td></tr>
<tr>
<td>P313</td>
<td>"Een arts raadplegen."
</td></tr>
<tr>
<td>P314</td>
<td>"Bij onwel voelen een arts raadplegen."
</td></tr>
<tr>
<td>P315</td>
<td>"Onmiddellijk een arts raadplegen."
</td></tr>
<tr>
<td>P320</td>
<td>"Specifieke behandeling dringend vereist (zie ... op dit etiket)."
</td></tr>
<tr>
<td>P321</td>
<td>"Specifieke behandeling vereist (zie ... op dit etiket)."
</td></tr>
<tr>
<td>P330</td>
<td>"De mond spoelen."
</td></tr>
<tr>
<td>P331</td>
<td>"GEEN braken opwekken."
</td></tr>
<tr>
<td>P332</td>
<td>"Bij huidirritatie:"
</td></tr>
<tr>
<td>P333</td>
<td>"Bij huidirritatie of uitslag:"
</td></tr>
<tr>
<td>P334</td>
<td>"In koud water onderdompelen/nat verband aanbrengen."
</td></tr>
<tr>
<td>P335</td>
<td>"Losse deeltjes van de huid afvegen."
</td></tr>
<tr>
<td>P336</td>
<td>"Bevroren lichaamsdelen met lauw water ontdooien. Niet wrijven op de betrokken plaatsen."
</td></tr>
<tr>
<td>P337</td>
<td>"Bij aanhoudende oogirritatie:"
</td></tr>
<tr>
<td>P338</td>
<td>"Contactlenzen verwijderen, indien mogelijk. Blijven spoelen."
</td></tr>
<tr>
<td>P340</td>
<td>"De persoon in de frisse lucht brengen en ervoor zorgen dat deze gemakkelijk kan ademen."
</td></tr>
<tr>
<td>P342</td>
<td>"Bij ademhalingssymptomen:"
</td></tr>
<tr>
<td>P350</td>
<td>"voorzichtig wassen met veel water en zeep."
</td></tr>
<tr>
<td>P351</td>
<td>"Voorzichtig afspoelen met water gedurende een aantal minuten."
</td></tr>
<tr>
<td>P352</td>
<td>"Met veel water en zeep wassen."
</td></tr>
<tr>
<td>P353</td>
<td>"Huid met water afspoelen/afdouchen."
</td></tr>
<tr>
<td>P360</td>
<td>"Verontreinigde kleding en huid onmiddellijk met veel water afspoelen en pas daarna kleding uittrekken."
</td></tr>
<tr>
<td>P361</td>
<td>"Verontreinigde kleding onmiddellijk uittrekken."
</td></tr>
<tr>
<td>P362</td>
<td>"Verontreinigde kleding uittrekken."
</td></tr>
<tr>
<td>P363</td>
<td>"Verontreinigde kleding wassen alvorens deze opnieuw te gebruiken."
</td></tr>
<tr>
<td>P370</td>
<td>"In geval van brand:"
</td></tr>
<tr>
<td>P371</td>
<td>"In geval van grote brand en grote hoeveelheden:"
</td></tr>
<tr>
<td>P372</td>
<td>"Ontploffingsgevaar in geval van brand."
</td></tr>
<tr>
<td>P373</td>
<td>"NIET blussen wanneer het vuur de ontplofbare stoffen bereikt."
</td></tr>
<tr>
<td>P374</td>
<td>"Met normale voorzorgen vanaf een redelijke afstand blussen."
</td></tr>
<tr>
<td>P375</td>
<td>"Op afstand blussen omwille van ontploffingsgevaar."
</td></tr>
<tr>
<td>P376</td>
<td>"Het lek dichten als dat veilig gedaan kan worden."
</td></tr>
<tr>
<td>P377</td>
<td>"Brand door lekkend gas: niet blussen, tenzij het lek veilig gedicht kan worden."
</td></tr>
<tr>
<td>P378</td>
<td>"Blussen met..."
</td></tr>
<tr>
<td>P380</td>
<td>"Evacueren."
</td></tr>
<tr>
<td>P381</td>
<td>"Alle ontstekingsbronnen wegnemen als dat veilig gedaan kan worden."
</td></tr>
<tr>
<td>P390</td>
<td>"Gelekte/gemorste stof opnemen om materiële schade te vermijden."
</td></tr>
<tr>
<td>P391</td>
<td>"Gelekte/gemorste stof opruimen."
</td></tr>
<tr>
<td>P301+P310</td>
<td>"NA INSLIKKEN: onmiddellijk een ANTIGIFCENTRUM/arts/... raadplegen."
</td></tr>
<tr>
<td>P301+P312</td>
<td>"NA INSLIKKEN: bij onwel voelen een ANTIGIFCENTRUM/arts/... raadplegen."
</td></tr>
<tr>
<td>P301+P330+P331</td>
<td>"NA INSLIKKEN: de mond spoelen -- GEEN braken opwekken."
</td></tr>
<tr>
<td>P302+P334</td>
<td>"BIJ CONTACT MET DE HUID: in koud water onderdompelen/nat verband aanbrengen."
</td></tr>
<tr>
<td>P302+P352</td>
<td>"BIJ CONTACT MET DE HUID: met veel water en zeep wassen."
</td></tr>
<tr>
<td>P303+P361+P353</td>
<td>"BIJ CONTACT MET DE HUID (of het haar): verontreinigde kleding onmiddellijk uittrekken. Huid met water afspoelen/afdouchen."
</td></tr>
<tr>
<td>P304+P340</td>
<td>"NA INADEMING: de persoon in de frisse lucht brengen en ervoor zorgen dat deze gemakkelijk kan ademen."
</td></tr>
<tr>
<td>P305+P351+P338</td>
<td>"BIJ CONTACT MET DE OGEN: voorzichtig afspoelen met water gedurende een aantal minuten; contactlenzen verwijderen, indien mogelijk; blijven spoelen."
</td></tr>
<tr>
<td>P306+P360</td>
<td>"NA MORSEN OP KLEDING: verontreinigde kleding en huid onmiddellijk met veel water afspoelen en pas daarna kleding uittrekken."
</td></tr>
<tr>
<td>P309+P311</td>
<td>"NA (mogelijke) blootstelling: een ANTIGIFCENTRUM/arts/... raadplegen."
</td></tr>
<tr>
<td>P308+P313</td>
<td>"NA (mogelijke) blootstelling: een arts raadplegen."
</td></tr>
<tr>
<td>P332+P313</td>
<td>"Bij huidirritatie: een arts raadplegen."
</td></tr>
<tr>
<td>P333+P313</td>
<td>"Bij huidirritatie of uitslag: een arts raadplegen."
</td></tr>
<tr>
<td>P335+P334</td>
<td>"Losse deeltjes van de huid afvegen. In koud water onderdompelen/nat verband aanbrengen."
</td></tr>
<tr>
<td>P337+P313</td>
<td>"Bij aanhoudende oogirritatie: een arts raadplegen."
</td></tr>
<tr>
<td>P342+P311</td>
<td>"Bij ademhalingssymptomen: een ANTIGIFCENTRUM/arts/... raadplegen."
</td></tr>
<tr>
<td>P361+P364</td>
<td>"Verontreinigde kleding onmiddellijk uittrekken en wassen alvorens deze opnieuw te gebruiken."
</td></tr>
<tr>
<td>P362+P364</td>
<td>"Verontreinigde kleding uittrekken en wassen alvorens deze opnieuw te gebruiken."
</td></tr>
<tr>
<td>P370+P376</td>
<td>"In geval van brand: het lek dichten als dat veilig gedaan kan worden."
</td></tr>
<tr>
<td>P370+P378</td>
<td>"In geval van brand: blussen met..."
</td></tr>
<tr>
<td>P370+P380</td>
<td>"In geval van brand: evacueren."
</td></tr>
<tr>
<td>P370+P380+P375</td>
<td>"In geval van brand: evacueren. Op afstand blussen omwille van ontploffingsgevaar."
</td></tr>
<tr>
<td>P371+P380+P375</td>
<td>"In geval van grote brand en grote hoeveelheden: evacueren. Op afstand blussen omwille van ontploffingsgevaar."
</td></tr></tbody></table>
<p>Codes P361+P364 en P362+P364 zijn ingevoegd en codes P307 ("NA blootstelling:"), P307 ("NA blootstelling of bij onwel voelen:"), P322 ("Specifieke maatregelen (zie ... op dit etiket)."), P341 ("Bij ademhalingsmoeilijkheden het slachtoffer in de frisse lucht brengen en laten rusten in een houding die het ademen vergemakkelijkt."), P350 ("Voorzichtig wassen met veel water en zeep."), P302+P350 (|"BIJ CONTACT MET DE HUID: voorzichtig wassen met veel water en zeep."), P304+P341 (""NA INADEMING: bij ademhalingsmoeilijkheden het slachtoffer in de frisse lucht brengen en laten rusten in een houding die het ademen vergemakkelijkt."") en P309+P311("NA blootstelling: een ANTIGIFCENTRUM of een arts raadplegen.") zijn geschrapt door Europese Verordening 487/2013.<sup id="cite_ref-V487_1-3" class="reference"><a href="#cite_note-V487-1">[1]</a></sup>
</p>
<h3><span class="mw-headline" id="Voorzorgsmaatregelen_in_verband_met_opslag">Voorzorgsmaatregelen in verband met opslag</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&veaction=edit&section=14" class="mw-editsection-visualeditor" title="Bewerk dit kopje: Voorzorgsmaatregelen in verband met opslag">bewerken</a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&action=edit&section=14" title="Bewerk dit kopje: Voorzorgsmaatregelen in verband met opslag">brontekst bewerken</a><span class="mw-editsection-bracket">]</span></span></h3>
<table class="wikitable">
<tbody><tr>
<th>Code</th>
<th>Begeleidende tekst
</th></tr>
<tr>
<td>P401</td>
<td>"... bewaren."
</td></tr>
<tr>
<td>P402</td>
<td>"Op een droge plaats bewaren."
</td></tr>
<tr>
<td>P403</td>
<td>"Op een goed geventileerde plaats bewaren."
</td></tr>
<tr>
<td>P404</td>
<td>"In gesloten verpakking bewaren."
</td></tr>
<tr>
<td>P405</td>
<td>"Achter slot bewaren."
</td></tr>
<tr>
<td>P406</td>
<td>"In corrosiebestendige/... houder met corrosiebestendige binnenbekleding bewaren."
</td></tr>
<tr>
<td>P407</td>
<td>"Ruimte laten tussen stapels/pallets."
</td></tr>
<tr>
<td>P410</td>
<td>"Tegen zonlicht beschermen."
</td></tr>
<tr>
<td>P411</td>
<td>"Bij maximaal ... °C/... °F bewaren."
</td></tr>
<tr>
<td>P412</td>
<td>"Niet blootstellen aan temperaturen boven 50 °C/122 °F."
</td></tr>
<tr>
<td>P413</td>
<td>"Bulkmateriaal, indien meer dan ... kg/... lbs, bij temperaturen van maximaal ...°C/... °F bewaren."
</td></tr>
<tr>
<td>P420</td>
<td>"Gescheiden van ander materiaal bewaren."
</td></tr>
<tr>
<td>P422</td>
<td>"Onder ... bewaren."
</td></tr>
<tr>
<td>P402+P404</td>
<td>"Op een droge plaats bewaren. In gesloten verpakking bewaren."
</td></tr>
<tr>
<td>P403+P233</td>
<td>"Op een goed geventileerde plaats bewaren. In goed gesloten verpakking bewaren."
</td></tr>
<tr>
<td>P403+P235</td>
<td>"Op een goed geventileerde plaats bewaren. Koel bewaren."
</td></tr>
<tr>
<td>P410+P403</td>
<td>"Tegen zonlicht beschermen. Op een goed geventileerde plaats bewaren."
</td></tr>
<tr>
<td>P410+P412</td>
<td>"Tegen zonlicht beschermen. Niet blootstellen aan temperaturen boven 50 °C/122 °F."
</td></tr>
<tr>
<td>P411+P235</td>
<td>"Bij maximaal ... °C/... °F bewaren. Koel bewaren."
</td></tr></tbody></table>
<h3><span class="mw-headline" id="Voorzorgsmaatregelen_in_verband_met_verwijdering">Voorzorgsmaatregelen in verband met verwijdering</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&veaction=edit&section=15" class="mw-editsection-visualeditor" title="Bewerk dit kopje: Voorzorgsmaatregelen in verband met verwijdering">bewerken</a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&action=edit&section=15" title="Bewerk dit kopje: Voorzorgsmaatregelen in verband met verwijdering">brontekst bewerken</a><span class="mw-editsection-bracket">]</span></span></h3>
<table class="wikitable">
<tbody><tr>
<th>Code</th>
<th>Begeleidende tekst
</th></tr>
<tr>
<td>P501A</td>
<td>"Inhoud/verpakking afvoeren naar gecertificeerde verwerker van afvalstromen"
</td></tr>
<tr>
<td>P501B</td>
<td>"Inhoud/verpakking afvoeren volgens plaatselijke voorschriften"
</td></tr></tbody></table>
<h2><span class="mw-headline" id="Zie_ook">Zie ook</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&veaction=edit&section=16" class="mw-editsection-visualeditor" title="Bewerk dit kopje: Zie ook">bewerken</a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&action=edit&section=16" title="Bewerk dit kopje: Zie ook">brontekst bewerken</a><span class="mw-editsection-bracket">]</span></span></h2>
<ul><li><a href="/wiki/Lijst_van_gevarenklassen_in_GHS" title="Lijst van gevarenklassen in GHS">Lijst van gevarenklassen in GHS</a></li></ul>
<h2><span class="mw-headline" id="Referentie">Referentie</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&veaction=edit&section=17" class="mw-editsection-visualeditor" title="Bewerk dit kopje: Referentie">bewerken</a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&action=edit&section=17" title="Bewerk dit kopje: Referentie">brontekst bewerken</a><span class="mw-editsection-bracket">]</span></span></h2>
<ul><li><a rel="nofollow" class="external text" href="http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2008:353:0001:1355:NL:PDF">Verordening (EG) Nr. 1272/2008 van 16 december 2008.</a></li></ul>
<table class="toccolours" style="font-size:85%; margin-top:1em; margin-bottom:-0.5em; border: 1px solid #aaa; padding: 5px; clear: both; width:100%;" role="presentation">
<tbody><tr>
<td><span style="font-weight:bold">Bronnen, noten en/of referenties</span>
<div class="reflist" style="list-style-type: decimal;"><ol class="references">
<li id="cite_note-V487-1"><span class="mw-cite-backlink">↑ <a href="#cite_ref-V487_1-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-V487_1-1"><sup><i><b>b</b></i></sup></a> <a href="#cite_ref-V487_1-2"><sup><i><b>c</b></i></sup></a> <a href="#cite_ref-V487_1-3"><sup><i><b>d</b></i></sup></a></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:149:0001:0059:NL:PDF">Verordening (EU) nr. 487/2013 van 8 mei 2013 tot wijziging van Verordening (EG) Nr. 1272/2008. Publicatieblad L149 van 3 juni 2013, blz. 1</a></span>
</li>
</ol></div>
</td></tr></tbody></table>
<!--
NewPP limit report
Parsed by mw1257
Cached time: 20200210153747
Cache expiry: 2592000
Dynamic content: false
Complications: []
CPU time usage: 0.092 seconds
Real time usage: 0.099 seconds
Preprocessor visited node count: 146/1000000
Preprocessor generated node count: 0/1500000
Post‐expand include size: 628/2097152 bytes
Template argument size: 0/2097152 bytes
Highest expansion depth: 5/40
Expensive parser function count: 0/500
Unstrip recursion depth: 0/20
Unstrip post‐expand size: 1034/5000000 bytes
Number of Wikibase entities loaded: 0/400
-->
<!--
Transclusion expansion time report (%,ms,calls,template)
100.00% 10.098 1 -total
100.00% 10.098 1 Sjabloon:Appendix
59.93% 6.052 1 Sjabloon:References
-->
<!-- Saved in parser cache with key nlwiki:pcache:idhash:1533047-0!canonical and timestamp 20200210153747 and revision id 55584317
-->
</div><noscript><img src="//nl.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=1x1" alt="" title="" width="1" height="1" style="border: none; position: absolute;" /></noscript></div>
<div class="printfooter">Overgenomen van "<a dir="ltr" href="https://nl.wikipedia.org/w/index.php?title=Lijst_van_H-_en_P-zinnen&oldid=55584317">https://nl.wikipedia.org/w/index.php?title=Lijst_van_H-_en_P-zinnen&oldid=55584317</a>"</div>
<div id="catlinks" class="catlinks" data-mw="interface"><div id="mw-normal-catlinks" class="mw-normal-catlinks"><a href="/wiki/Categorie:Alles" title="Categorie:Alles">Categorieën</a>: <ul><li><a href="/wiki/Categorie:Chemie_en_veiligheid" title="Categorie:Chemie en veiligheid">Chemie en veiligheid</a></li><li><a href="/wiki/Categorie:Gevaarlijke_stoffen" title="Categorie:Gevaarlijke stoffen">Gevaarlijke stoffen</a></li></ul></div></div>
<div class="visualClear"></div>
</div>
</div>
<div id='mw-data-after-content'>
<div class="read-more-container"></div>
</div>
<div id="mw-navigation">
<h2>Navigatiemenu</h2>
<div id="mw-head">
<div id="p-personal" role="navigation" class="" aria-labelledby="p-personal-label">
<h3 id="p-personal-label">Persoonlijke instellingen</h3>
<ul >
<li id="pt-anonuserpage">Niet aangemeld</li>
<li id="pt-anontalk"><a href="/wiki/Speciaal:MijnOverleg" title="Overlegpagina van de anonieme gebruiker van dit IP-adres [n]" accesskey="n">Overleg</a></li><li id="pt-anoncontribs"><a href="/wiki/Speciaal:MijnBijdragen" title="Bijdragen IP-adres [y]" accesskey="y">Bijdragen</a></li><li id="pt-createaccount"><a href="/w/index.php?title=Speciaal:GebruikerAanmaken&returnto=Lijst+van+H-+en+P-zinnen" title="Registreer u vooral en meld u aan. Dit is echter niet verplicht.">Registreren</a></li><li id="pt-login"><a href="/w/index.php?title=Speciaal:Aanmelden&returnto=Lijst+van+H-+en+P-zinnen" title="U wordt van harte uitgenodigd om aan te melden, maar dit is niet verplicht [o]" accesskey="o">Aanmelden</a></li>
</ul>
</div>
<div id="left-navigation">
<div id="p-namespaces" role="navigation" class="vectorTabs " aria-labelledby="p-namespaces-label">
<h3 id="p-namespaces-label">Naamruimten</h3>
<ul >
<li id="ca-nstab-main" class="selected"><a href="/wiki/Lijst_van_H-_en_P-zinnen" title="Inhoudspagina bekijken [c]" accesskey="c">Artikel</a></li><li id="ca-talk"><a href="/wiki/Overleg:Lijst_van_H-_en_P-zinnen" rel="discussion" title="Overleg over deze pagina [t]" accesskey="t">Overleg</a></li>
</ul>
</div>
<div id="p-variants" role="navigation" class="vectorMenu emptyPortlet" aria-labelledby="p-variants-label">
<input type="checkbox" class="vectorMenuCheckbox" aria-labelledby="p-variants-label" />
<h3 id="p-variants-label">
<span>Varianten</span>
</h3>
<ul class="menu" >
</ul>
</div>
</div>
<div id="right-navigation">
<div id="p-views" role="navigation" class="vectorTabs " aria-labelledby="p-views-label">
<h3 id="p-views-label">Weergaven</h3>
<ul >
<li id="ca-view" class="collapsible selected"><a href="/wiki/Lijst_van_H-_en_P-zinnen">Lezen</a></li><li id="ca-ve-edit" class="collapsible"><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&veaction=edit" title="Deze pagina bewerken [v]" accesskey="v">Bewerken</a></li><li id="ca-edit" class="collapsible"><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&action=edit" title="Deze pagina bewerken [e]" accesskey="e">Brontekst bewerken</a></li><li id="ca-history" class="collapsible"><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&action=history" title="Eerdere versies van deze pagina [h]" accesskey="h">Geschiedenis</a></li>
</ul>
</div>
<div id="p-cactions" role="navigation" class="vectorMenu emptyPortlet" aria-labelledby="p-cactions-label">
<input type="checkbox" class="vectorMenuCheckbox" aria-labelledby="p-cactions-label" />
<h3 id="p-cactions-label">
<span>Meer</span>
</h3>
<ul class="menu" >
</ul>
</div>
<div id="p-search" role="search">
<h3 >
<label for="searchInput">Zoeken</label>
</h3>
<form action="/w/index.php" id="searchform">
<div id="simpleSearch">
<input type="search" name="search" placeholder="Doorzoek Wikipedia" title="Doorzoek Wikipedia [f]" accesskey="f" id="searchInput"/>
<input type="hidden" value="Speciaal:Zoeken" name="title"/>
<input type="submit" name="fulltext" value="Zoeken" title="Doorzoek alle pagina's op deze tekst" id="mw-searchButton" class="searchButton mw-fallbackSearchButton"/>
<input type="submit" name="go" value="Artikel" title="Direct naar een pagina met deze naam" id="searchButton" class="searchButton"/>
</div>
</form>
</div>
</div>
</div>
<div id="mw-panel">
<div id="p-logo" role="banner"><a class="mw-wiki-logo" href="/wiki/Hoofdpagina" title="Naar de hoofdpagina gaan"></a></div>
<div class="portal" role="navigation" id="p-navigation" aria-labelledby="p-navigation-label">
<h3 id="p-navigation-label">
Navigatie
</h3>
<div class="body">
<ul><li id="n-mainpage"><a href="/wiki/Hoofdpagina" title="Naar de hoofdpagina gaan [z]" accesskey="z">Hoofdpagina</a></li><li id="n-zoekartikel"><a href="/wiki/Portaal:Navigatie">Vind een artikel</a></li><li id="n-today"><a href="/wiki/11_februari">Vandaag</a></li><li id="n-Etalage"><a href="/wiki/Wikipedia:Etalage">Etalage</a></li><li id="n-categories"><a href="/wiki/Categorie:Alles">Categorieën</a></li><li id="n-recentchanges"><a href="/wiki/Speciaal:RecenteWijzigingen" title="Een lijst met recente wijzigingen in deze wiki. [r]" accesskey="r">Recente wijzigingen</a></li><li id="n-newpages"><a href="/wiki/Speciaal:NieuwePaginas">Nieuwe artikelen</a></li><li id="n-randompage"><a href="/wiki/Speciaal:Willekeurig" title="Een willekeurige pagina bekijken [x]" accesskey="x">Willekeurige pagina</a></li></ul>
</div>
</div>
<div class="portal" role="navigation" id="p-navigation2" aria-labelledby="p-navigation2-label">
<h3 id="p-navigation2-label">
Informatie
</h3>
<div class="body">
<ul><li id="n-portal"><a href="/wiki/Portaal:Gebruikersportaal" title="Informatie over het project: wat u kunt doen, waar u dingen kunt vinden">Gebruikersportaal</a></li><li id="n-Snelcursus"><a href="/wiki/Wikipedia:Snelcursus">Snelcursus</a></li><li id="n-help"><a href="/wiki/Portaal:Hulp_en_beheer" title="Hulpinformatie over deze wiki">Hulp en contact</a></li><li id="n-sitesupport"><a href="//donate.wikimedia.org/wiki/Special:FundraiserRedirector?utm_source=donate&utm_medium=sidebar&utm_campaign=C13_nl.wikipedia.org&uselang=nl" title="Ondersteun ons financieel">Donaties</a></li></ul>
</div>
</div>
<div class="portal" role="navigation" id="p-tb" aria-labelledby="p-tb-label">
<h3 id="p-tb-label">
Hulpmiddelen
</h3>
<div class="body">
<ul><li id="t-whatlinkshere"><a href="/wiki/Speciaal:VerwijzingenNaarHier/Lijst_van_H-_en_P-zinnen" title="Lijst met alle pagina's die naar deze pagina verwijzen [j]" accesskey="j">Links naar deze pagina</a></li><li id="t-recentchangeslinked"><a href="/wiki/Speciaal:RecenteWijzigingenGelinkt/Lijst_van_H-_en_P-zinnen" rel="nofollow" title="Recente wijzigingen in pagina's waar deze pagina naar verwijst [k]" accesskey="k">Verwante wijzigingen</a></li><li id="t-upload"><a href="//commons.wikimedia.org/wiki/Special:UploadWizard?uselang=nl" title="Bestanden uploaden [u]" accesskey="u">Bestand uploaden</a></li><li id="t-specialpages"><a href="/wiki/Speciaal:SpecialePaginas" title="Lijst met alle speciale pagina's [q]" accesskey="q">Speciale pagina's</a></li><li id="t-permalink"><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&oldid=55584317" title="Permanente koppeling naar deze versie van de pagina">Permanente koppeling</a></li><li id="t-info"><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&action=info" title="Meer informatie over deze pagina">Paginagegevens</a></li><li id="t-wikibase"><a href="https://www.wikidata.org/wiki/Special:EntityPage/Q2380725" title="Koppeling naar item in verbonden gegevensrepository [g]" accesskey="g">Wikidata-item</a></li><li id="t-cite"><a href="/w/index.php?title=Speciaal:Citeren&page=Lijst_van_H-_en_P-zinnen&id=55584317" title="Informatie over hoe u deze pagina kunt citeren">Deze pagina citeren</a></li></ul>
</div>
</div>
<div class="portal" role="navigation" id="p-coll-print_export" aria-labelledby="p-coll-print_export-label">
<h3 id="p-coll-print_export-label">
Afdrukken/exporteren
</h3>
<div class="body">
<ul><li id="coll-create_a_book"><a href="/w/index.php?title=Speciaal:Boek&bookcmd=book_creator&referer=Lijst+van+H-+en+P-zinnen">Boek maken</a></li><li id="coll-download-as-rl"><a href="/w/index.php?title=Speciaal:ElectronPdf&page=Lijst+van+H-+en+P-zinnen&action=show-download-screen">Downloaden als PDF</a></li><li id="t-print"><a href="/w/index.php?title=Lijst_van_H-_en_P-zinnen&printable=yes" title="Printvriendelijke versie van deze pagina [p]" accesskey="p">Printvriendelijke versie</a></li></ul>
</div>
</div>
<div class="portal" role="navigation" id="p-lang" aria-labelledby="p-lang-label">
<h3 id="p-lang-label">
In andere talen
</h3>
<div class="body">
<ul></ul>
<div class="after-portlet after-portlet-lang"><span class="wb-langlinks-add wb-langlinks-link"><a href="https://www.wikidata.org/wiki/Special:EntityPage/Q2380725#sitelinks-wikipedia" title="Intertaalkoppelingen toevoegen" class="wbc-editpage">Koppelingen toevoegen</a></span></div>
</div>
</div>
</div>
</div>
<div id="footer" role="contentinfo">
<ul id="footer-info">
<li id="footer-info-lastmod"> Deze pagina is voor het laatst bewerkt op 2 feb 2020 om 01:52.</li>
<li id="footer-info-copyright">De tekst is beschikbaar onder de licentie <a href="http://creativecommons.org/licenses/by-sa/3.0/deed.nl">Creative Commons Naamsvermelding/Gelijk delen</a>, er kunnen aanvullende voorwaarden van toepassing zijn. Zie de <a href="//foundation.wikimedia.org/wiki/Terms_of_Use/nl">gebruiksvoorwaarden</a> voor meer informatie.<br/> Wikipedia® is een geregistreerd handelsmerk van de <a href="http://www.wikimediafoundation.org">Wikimedia Foundation, Inc.</a>, een organisatie zonder winstoogmerk.</li>
</ul>
<ul id="footer-places">
<li id="footer-places-privacy"><a href="https://meta.wikimedia.org/wiki/Privacy_policy/nl" class="extiw" title="meta:Privacy policy/nl">Privacybeleid</a></li>
<li id="footer-places-about"><a href="/wiki/Wikipedia" title="Wikipedia">Over Wikipedia</a></li>
<li id="footer-places-disclaimer"><a href="/wiki/Wikipedia:Algemeen_voorbehoud" title="Wikipedia:Algemeen voorbehoud">Voorbehoud</a></li>
<li id="footer-places-developers"><a href="https://www.mediawiki.org/wiki/Special:MyLanguage/How_to_contribute">Ontwikkelaars</a></li>
<li id="footer-places-statslink"><a href="https://stats.wikimedia.org/v2/#/nl.wikipedia.org">Statistieken</a></li>
<li id="footer-places-cookiestatement"><a href="https://foundation.wikimedia.org/wiki/Cookie_statement">Cookiesverklaring</a></li>
<li id="footer-places-mobileview"><a href="//nl.m.wikipedia.org/w/index.php?title=Lijst_van_H-_en_P-zinnen&mobileaction=toggle_view_mobile" class="noprint stopMobileRedirectToggle">Mobiele weergave</a></li>
</ul>
<ul id="footer-icons" class="noprint">
<li id="footer-copyrightico">
<a href="https://wikimediafoundation.org/"><img src="/static/images/wikimedia-button.png" srcset="/static/images/wikimedia-button-1.5x.png 1.5x, /static/images/wikimedia-button-2x.png 2x" width="88" height="31" alt="Wikimedia Foundation"/></a> </li>
<li id="footer-poweredbyico">
<a href="https://www.mediawiki.org/"><img src="/static/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" srcset="/static/images/poweredby_mediawiki_132x47.png 1.5x, /static/images/poweredby_mediawiki_176x62.png 2x" width="88" height="31"/></a> </li>
</ul>
<div style="clear: both;"></div>
</div>
<script>(RLQ=window.RLQ||[]).push(function(){mw.config.set({"wgPageParseReport":{"limitreport":{"cputime":"0.092","walltime":"0.099","ppvisitednodes":{"value":146,"limit":1000000},"ppgeneratednodes":{"value":0,"limit":1500000},"postexpandincludesize":{"value":628,"limit":2097152},"templateargumentsize":{"value":0,"limit":2097152},"expansiondepth":{"value":5,"limit":40},"expensivefunctioncount":{"value":0,"limit":500},"unstrip-depth":{"value":0,"limit":20},"unstrip-size":{"value":1034,"limit":5000000},"entityaccesscount":{"value":0,"limit":400},"timingprofile":["100.00% 10.098 1 -total","100.00% 10.098 1 Sjabloon:Appendix"," 59.93% 6.052 1 Sjabloon:References"]},"cachereport":{"origin":"mw1257","timestamp":"20200210153747","ttl":2592000,"transientcontent":false}}});});</script>
<script type="application/ld+json">{"@context":"https:\/\/schema.org","@type":"Article","name":"Lijst van H- en P-zinnen","url":"https:\/\/nl.wikipedia.org\/wiki\/Lijst_van_H-_en_P-zinnen","sameAs":"http:\/\/www.wikidata.org\/entity\/Q2380725","mainEntity":"http:\/\/www.wikidata.org\/entity\/Q2380725","author":{"@type":"Organization","name":"Contributors to Wikimedia projects"},"publisher":{"@type":"Organization","name":"Wikimedia Foundation, Inc.","logo":{"@type":"ImageObject","url":"https:\/\/www.wikimedia.org\/static\/images\/wmf-hor-googpub.png"}},"datePublished":"2009-01-14T11:44:20Z","dateModified":"2020-02-02T00:52:20Z","headline":"Wikimedia-lijst"}</script>
<script>(RLQ=window.RLQ||[]).push(function(){mw.config.set({"wgBackendResponseTime":115,"wgHostname":"mw1325"});});</script></body></html>
| H codes in string PHP | 2020-07-03T15:52:58.000Z |
|
^[a-z0-9-]{3,32}$ | TeamAlert domenenavn | 2018-03-01T08:39:36.000Z |
||
^(.:[^:]+)\([[:digit:], ]*\): error [^:]*: (.*) \[[^\]]*\]$ | Execution results of msbuild.exe with command line: "C:\Users\d.nusman\Documents\Code\main4\UrbanBuilder\source\UrbanBuilder.sln" /p:Configuration="Debug" /p:Platform="x64" /p:RelionCodeAnalysis="false" /maxcpucount:2 /p:PreferredToolArchitecture=x64 /consoleloggerparameters:WarningsOnly;ErrorsOnly;Verbosity=minimal /verbosity:quiet /nologo /t:Build
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V140\Microsoft.CppBuild.targets(392,5): warning MSB8028: The intermediate directory (build\x64_Debug\) contains files shared from another project (mathrlio.vcxproj, math_serialize.vcxproj). This can lead to incorrect clean and rebuild behavior. [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\math\math.vcxproj]
matrix3x3.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\ubmath\ubmath.vcxproj]
proj_i.lib(proj.dll) : warning LNK4006: __NULL_IMPORT_DESCRIPTOR already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
proj_i.lib(proj.dll) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(char const *)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::~_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >(void)" (??1?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::~basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(void)" (??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Alloc_proxy(void)" (?_Alloc_proxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: union std::_String_val<struct std::_Simple_types<char> >::_Bxty & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Bx(void)" (?_Bx@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAT_Bxty@?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Copy(unsigned __int64,unsigned __int64)" (?_Copy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Eos(unsigned __int64)" (?_Eos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Free_proxy(void)" (?_Free_proxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: class std::_String_val<struct std::_Simple_types<char> > & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Get_data(void)" (?_Get_data@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAV?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: class std::_String_val<struct std::_Simple_types<char> > const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Get_data(void)const " (?_Get_data@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEBV?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: struct std::_Wrap_alloc<class std::allocator<char> > & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Getal(void)" (?_Getal@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAU?$_Wrap_alloc@V?$allocator@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: struct std::_Wrap_alloc<class std::allocator<char> > const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Getal(void)const " (?_Getal@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEBU?$_Wrap_alloc@V?$allocator@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: bool __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Grow(unsigned __int64,bool)" (?_Grow@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA_N_K_N@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: bool __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Inside(char const *)" (?_Inside@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA_NPEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: struct std::_Container_proxy * & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myproxy(void)" (?_Myproxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAPEAU_Container_proxy@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: char * __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myptr(void)" (?_Myptr@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAPEADXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: char const * __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myptr(void)const " (?_Myptr@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAPEBDXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: unsigned __int64 & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myres(void)" (?_Myres@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: unsigned __int64 & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Mysize(void)" (?_Mysize@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: unsigned __int64 const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Mysize(void)const " (?_Mysize@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEB_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Orphan_all(void)" (?_Orphan_all@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Tidy(bool,unsigned __int64)" (?_Tidy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_N_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Xlen(void)const " (?_Xlen@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Xran(void)const " (?_Xran@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@AEBV12@_K1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(char const *)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(char const *,unsigned __int64)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: char const * __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::c_str(void)const " (?c_str@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAPEBDXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::erase(unsigned __int64,unsigned __int64)" (?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::erase(unsigned __int64)" (?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
lua_utm_latlong.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::max_size(void)const " (?max_size@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(char const *)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::~_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >(void)" (??1?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::~basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(void)" (??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Alloc_proxy(void)" (?_Alloc_proxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: union std::_String_val<struct std::_Simple_types<char> >::_Bxty & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Bx(void)" (?_Bx@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAT_Bxty@?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Copy(unsigned __int64,unsigned __int64)" (?_Copy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Eos(unsigned __int64)" (?_Eos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Free_proxy(void)" (?_Free_proxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: class std::_String_val<struct std::_Simple_types<char> > & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Get_data(void)" (?_Get_data@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAV?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: class std::_String_val<struct std::_Simple_types<char> > const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Get_data(void)const " (?_Get_data@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEBV?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: struct std::_Wrap_alloc<class std::allocator<char> > & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Getal(void)" (?_Getal@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAU?$_Wrap_alloc@V?$allocator@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: struct std::_Wrap_alloc<class std::allocator<char> > const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Getal(void)const " (?_Getal@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEBU?$_Wrap_alloc@V?$allocator@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: bool __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Grow(unsigned __int64,bool)" (?_Grow@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA_N_K_N@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: bool __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Inside(char const *)" (?_Inside@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA_NPEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: struct std::_Container_proxy * & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myproxy(void)" (?_Myproxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAPEAU_Container_proxy@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: char * __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myptr(void)" (?_Myptr@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAPEADXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: char const * __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myptr(void)const " (?_Myptr@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAPEBDXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: unsigned __int64 & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myres(void)" (?_Myres@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: unsigned __int64 & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Mysize(void)" (?_Mysize@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: unsigned __int64 const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Mysize(void)const " (?_Mysize@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEB_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Orphan_all(void)" (?_Orphan_all@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Tidy(bool,unsigned __int64)" (?_Tidy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_N_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Xlen(void)const " (?_Xlen@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Xran(void)const " (?_Xran@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@AEBV12@_K1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(char const *)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(char const *,unsigned __int64)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::erase(unsigned __int64,unsigned __int64)" (?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::erase(unsigned __int64)" (?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
LatLong-UTMconversion.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::max_size(void)const " (?max_size@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &&)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@$$QEAV01@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64,class std::allocator<char> const &)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@AEBV01@_K1AEBV?$allocator@D@1@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(char const *)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(char const *,unsigned __int64)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@PEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(void)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::~_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >(void)" (??1?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::~basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(void)" (??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: char const & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::operator[](unsigned __int64)const " (??A?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAAEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::operator+=(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??Y?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV01@AEBV01@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::operator+=(char const *)" (??Y?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV01@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Alloc_proxy(void)" (?_Alloc_proxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Assign_rv(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &&)" (?_Assign_rv@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX$$QEAV12@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: union std::_String_val<struct std::_Simple_types<char> >::_Bxty & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Bx(void)" (?_Bx@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAT_Bxty@?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Chassign(unsigned __int64,unsigned __int64,char)" (?_Chassign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K0D@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Copy(unsigned __int64,unsigned __int64)" (?_Copy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Eos(unsigned __int64)" (?_Eos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Free_proxy(void)" (?_Free_proxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: class std::_String_val<struct std::_Simple_types<char> > & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Get_data(void)" (?_Get_data@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAV?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: class std::_String_val<struct std::_Simple_types<char> > const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Get_data(void)const " (?_Get_data@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEBV?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: struct std::_Wrap_alloc<class std::allocator<char> > & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Getal(void)" (?_Getal@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAU?$_Wrap_alloc@V?$allocator@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: struct std::_Wrap_alloc<class std::allocator<char> > const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Getal(void)const " (?_Getal@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEBU?$_Wrap_alloc@V?$allocator@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: bool __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Grow(unsigned __int64,bool)" (?_Grow@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA_N_K_N@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: bool __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Inside(char const *)" (?_Inside@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA_NPEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: struct std::_Container_proxy * & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myproxy(void)" (?_Myproxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAPEAU_Container_proxy@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: char * __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myptr(void)" (?_Myptr@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAPEADXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: char const * __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myptr(void)const " (?_Myptr@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAPEBDXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: unsigned __int64 & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myres(void)" (?_Myres@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: unsigned __int64 const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myres(void)const " (?_Myres@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEB_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: unsigned __int64 & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Mysize(void)" (?_Mysize@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: unsigned __int64 const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Mysize(void)const " (?_Mysize@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEB_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Orphan_all(void)" (?_Orphan_all@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Tidy(bool,unsigned __int64)" (?_Tidy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_N_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Xlen(void)const " (?_Xlen@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Xran(void)const " (?_Xran@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@AEBV12@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@AEBV12@_K1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(char const *)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(char const *,unsigned __int64)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(unsigned __int64,char)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@AEBV12@_K1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(char const *)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(char const *,unsigned __int64)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: char const * __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::c_str(void)const " (?c_str@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAPEBDXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::capacity(void)const " (?capacity@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::erase(unsigned __int64,unsigned __int64)" (?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::erase(unsigned __int64)" (?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: class std::allocator<char> __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::get_allocator(void)const " (?get_allocator@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA?AV?$allocator@D@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::insert(unsigned __int64,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?insert@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KAEBV12@00@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::insert(unsigned __int64,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?insert@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KAEBV12@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::insert(unsigned __int64,char const *,unsigned __int64)" (?insert@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KPEBD0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::insert(unsigned __int64,char const *)" (?insert@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KPEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::max_size(void)const " (?max_size@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::reserve(unsigned __int64)" (?reserve@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::size(void)const " (?size@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
UTMUPS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::substr(unsigned __int64,unsigned __int64)const " (?substr@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA?AV12@_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(char const *)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::~_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >(void)" (??1?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::~basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(void)" (??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Alloc_proxy(void)" (?_Alloc_proxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: union std::_String_val<struct std::_Simple_types<char> >::_Bxty & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Bx(void)" (?_Bx@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAT_Bxty@?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Copy(unsigned __int64,unsigned __int64)" (?_Copy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Eos(unsigned __int64)" (?_Eos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Free_proxy(void)" (?_Free_proxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: class std::_String_val<struct std::_Simple_types<char> > & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Get_data(void)" (?_Get_data@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAV?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: class std::_String_val<struct std::_Simple_types<char> > const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Get_data(void)const " (?_Get_data@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEBV?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: struct std::_Wrap_alloc<class std::allocator<char> > & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Getal(void)" (?_Getal@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAU?$_Wrap_alloc@V?$allocator@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: struct std::_Wrap_alloc<class std::allocator<char> > const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Getal(void)const " (?_Getal@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEBU?$_Wrap_alloc@V?$allocator@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: bool __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Grow(unsigned __int64,bool)" (?_Grow@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA_N_K_N@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: bool __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Inside(char const *)" (?_Inside@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA_NPEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: struct std::_Container_proxy * & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myproxy(void)" (?_Myproxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAPEAU_Container_proxy@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: char * __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myptr(void)" (?_Myptr@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAPEADXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: char const * __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myptr(void)const " (?_Myptr@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAPEBDXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: unsigned __int64 & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myres(void)" (?_Myres@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: unsigned __int64 & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Mysize(void)" (?_Mysize@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: unsigned __int64 const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Mysize(void)const " (?_Mysize@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEB_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Orphan_all(void)" (?_Orphan_all@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Tidy(bool,unsigned __int64)" (?_Tidy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_N_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Xlen(void)const " (?_Xlen@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Xran(void)const " (?_Xran@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@AEBV12@_K1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(char const *)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(char const *,unsigned __int64)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: char const * __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::c_str(void)const " (?c_str@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAPEBDXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::erase(unsigned __int64,unsigned __int64)" (?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::erase(unsigned __int64)" (?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
TransverseMercator.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::max_size(void)const " (?max_size@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(char const *)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::~_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >(void)" (??1?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::~basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(void)" (??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Alloc_proxy(void)" (?_Alloc_proxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: union std::_String_val<struct std::_Simple_types<char> >::_Bxty & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Bx(void)" (?_Bx@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAT_Bxty@?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Copy(unsigned __int64,unsigned __int64)" (?_Copy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Eos(unsigned __int64)" (?_Eos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Free_proxy(void)" (?_Free_proxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: class std::_String_val<struct std::_Simple_types<char> > & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Get_data(void)" (?_Get_data@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAV?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: class std::_String_val<struct std::_Simple_types<char> > const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Get_data(void)const " (?_Get_data@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEBV?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: struct std::_Wrap_alloc<class std::allocator<char> > & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Getal(void)" (?_Getal@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAU?$_Wrap_alloc@V?$allocator@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: struct std::_Wrap_alloc<class std::allocator<char> > const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Getal(void)const " (?_Getal@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEBU?$_Wrap_alloc@V?$allocator@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: bool __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Grow(unsigned __int64,bool)" (?_Grow@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA_N_K_N@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: bool __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Inside(char const *)" (?_Inside@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA_NPEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: struct std::_Container_proxy * & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myproxy(void)" (?_Myproxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAPEAU_Container_proxy@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: char * __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myptr(void)" (?_Myptr@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAPEADXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: char const * __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myptr(void)const " (?_Myptr@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAPEBDXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: unsigned __int64 & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myres(void)" (?_Myres@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: unsigned __int64 & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Mysize(void)" (?_Mysize@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: unsigned __int64 const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Mysize(void)const " (?_Mysize@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEB_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Orphan_all(void)" (?_Orphan_all@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Tidy(bool,unsigned __int64)" (?_Tidy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_N_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Xlen(void)const " (?_Xlen@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Xran(void)const " (?_Xran@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@AEBV12@_K1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(char const *)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(char const *,unsigned __int64)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: char const * __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::c_str(void)const " (?c_str@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAPEBDXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::erase(unsigned __int64,unsigned __int64)" (?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::erase(unsigned __int64)" (?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
PolarStereographic.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::max_size(void)const " (?max_size@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &&)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@$$QEAV01@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64,class std::allocator<char> const &)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@AEBV01@_K1AEBV?$allocator@D@1@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(char const *)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(char const *,unsigned __int64)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@PEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(void)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::~_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >(void)" (??1?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::~basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(void)" (??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::operator=(char const *)" (??4?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV01@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: char const & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::operator[](unsigned __int64)const " (??A?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAAEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::operator+=(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??Y?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV01@AEBV01@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::operator+=(char const *)" (??Y?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV01@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Alloc_proxy(void)" (?_Alloc_proxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Assign_rv(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &&)" (?_Assign_rv@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX$$QEAV12@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: union std::_String_val<struct std::_Simple_types<char> >::_Bxty & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Bx(void)" (?_Bx@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAT_Bxty@?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Chassign(unsigned __int64,unsigned __int64,char)" (?_Chassign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K0D@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Copy(unsigned __int64,unsigned __int64)" (?_Copy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Eos(unsigned __int64)" (?_Eos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Free_proxy(void)" (?_Free_proxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: class std::_String_val<struct std::_Simple_types<char> > & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Get_data(void)" (?_Get_data@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAV?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: class std::_String_val<struct std::_Simple_types<char> > const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Get_data(void)const " (?_Get_data@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEBV?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: struct std::_Wrap_alloc<class std::allocator<char> > & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Getal(void)" (?_Getal@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAU?$_Wrap_alloc@V?$allocator@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: struct std::_Wrap_alloc<class std::allocator<char> > const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Getal(void)const " (?_Getal@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEBU?$_Wrap_alloc@V?$allocator@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: bool __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Grow(unsigned __int64,bool)" (?_Grow@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA_N_K_N@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: bool __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Inside(char const *)" (?_Inside@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA_NPEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: struct std::_Container_proxy * & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myproxy(void)" (?_Myproxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAPEAU_Container_proxy@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: char * __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myptr(void)" (?_Myptr@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAPEADXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: char const * __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myptr(void)const " (?_Myptr@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAPEBDXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: unsigned __int64 & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myres(void)" (?_Myres@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: unsigned __int64 const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myres(void)const " (?_Myres@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEB_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: unsigned __int64 & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Mysize(void)" (?_Mysize@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: unsigned __int64 const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Mysize(void)const " (?_Mysize@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEB_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Orphan_all(void)" (?_Orphan_all@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Tidy(bool,unsigned __int64)" (?_Tidy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_N_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Xlen(void)const " (?_Xlen@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Xran(void)const " (?_Xran@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@AEBV12@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@AEBV12@_K1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(char const *)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(char const *,unsigned __int64)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(unsigned __int64,char)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@AEBV12@_K1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(char const *)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(char const *,unsigned __int64)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: class std::_String_iterator<class std::_String_val<struct std::_Simple_types<char> > > __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::begin(void)" (?begin@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA?AV?$_String_iterator@V?$_String_val@U?$_Simple_types@D@std@@@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: char const * __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::c_str(void)const " (?c_str@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAPEBDXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::capacity(void)const " (?capacity@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::erase(unsigned __int64,unsigned __int64)" (?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::erase(unsigned __int64)" (?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::find(char,unsigned __int64)const " (?find@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::find(char const *,unsigned __int64,unsigned __int64)const " (?find@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KPEBD_K1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: class std::allocator<char> __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::get_allocator(void)const " (?get_allocator@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA?AV?$allocator@D@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::insert(unsigned __int64,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?insert@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KAEBV12@00@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::insert(unsigned __int64,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?insert@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KAEBV12@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::insert(unsigned __int64,char const *,unsigned __int64)" (?insert@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KPEBD0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::insert(unsigned __int64,char const *)" (?insert@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KPEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::max_size(void)const " (?max_size@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::reserve(unsigned __int64)" (?reserve@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::resize(unsigned __int64)" (?resize@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::resize(unsigned __int64,char)" (?resize@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_KD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::size(void)const " (?size@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
MGRS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::substr(unsigned __int64,unsigned __int64)const " (?substr@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA?AV12@_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &&)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@$$QEAV01@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64,class std::allocator<char> const &)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@AEBV01@_K1AEBV?$allocator@D@1@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(char const *)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(char const *,unsigned __int64)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@PEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(void)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::~_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >(void)" (??1?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::~basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(void)" (??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::operator=(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &&)" (??4?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV01@$$QEAV01@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: char & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::operator[](unsigned __int64)" (??A?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: char const & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::operator[](unsigned __int64)const " (??A?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAAEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::operator+=(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??Y?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV01@AEBV01@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::operator+=(char const *)" (??Y?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV01@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Alloc_proxy(void)" (?_Alloc_proxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Assign_rv(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &&)" (?_Assign_rv@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX$$QEAV12@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: union std::_String_val<struct std::_Simple_types<char> >::_Bxty & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Bx(void)" (?_Bx@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAT_Bxty@?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Chassign(unsigned __int64,unsigned __int64,char)" (?_Chassign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K0D@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Copy(unsigned __int64,unsigned __int64)" (?_Copy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Eos(unsigned __int64)" (?_Eos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Free_proxy(void)" (?_Free_proxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::_String_val<struct std::_Simple_types<char> > & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Get_data(void)" (?_Get_data@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAV?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::_String_val<struct std::_Simple_types<char> > const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Get_data(void)const " (?_Get_data@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEBV?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: struct std::_Wrap_alloc<class std::allocator<char> > & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Getal(void)" (?_Getal@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAU?$_Wrap_alloc@V?$allocator@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: struct std::_Wrap_alloc<class std::allocator<char> > const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Getal(void)const " (?_Getal@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEBU?$_Wrap_alloc@V?$allocator@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: bool __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Grow(unsigned __int64,bool)" (?_Grow@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA_N_K_N@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: bool __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Inside(char const *)" (?_Inside@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA_NPEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Move_alloc(struct std::_Wrap_alloc<class std::allocator<char> > &)" (?_Move_alloc@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXAEAU?$_Wrap_alloc@V?$allocator@D@std@@@2@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: struct std::_Container_proxy * & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myproxy(void)" (?_Myproxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAPEAU_Container_proxy@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: char * __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myptr(void)" (?_Myptr@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAPEADXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: char const * __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myptr(void)const " (?_Myptr@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAPEBDXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: unsigned __int64 & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myres(void)" (?_Myres@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: unsigned __int64 const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myres(void)const " (?_Myres@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEB_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: unsigned __int64 & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Mysize(void)" (?_Mysize@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: unsigned __int64 const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Mysize(void)const " (?_Mysize@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEB_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Orphan_all(void)" (?_Orphan_all@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Tidy(bool,unsigned __int64)" (?_Tidy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_N_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Xlen(void)const " (?_Xlen@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Xran(void)const " (?_Xran@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@AEBV12@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@AEBV12@_K1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(char const *)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(char const *,unsigned __int64)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(unsigned __int64,char)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@AEBV12@_K1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(char const *)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(char const *,unsigned __int64)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::_String_iterator<class std::_String_val<struct std::_Simple_types<char> > > __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::begin(void)" (?begin@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA?AV?$_String_iterator@V?$_String_val@U?$_Simple_types@D@std@@@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::_String_const_iterator<class std::_String_val<struct std::_Simple_types<char> > > __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::begin(void)const " (?begin@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA?AV?$_String_const_iterator@V?$_String_val@U?$_Simple_types@D@std@@@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: char const * __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::c_str(void)const " (?c_str@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAPEBDXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::capacity(void)const " (?capacity@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: int __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::compare(char const *)const " (?compare@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAHPEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::_String_iterator<class std::_String_val<struct std::_Simple_types<char> > > __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::end(void)" (?end@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA?AV?$_String_iterator@V?$_String_val@U?$_Simple_types@D@std@@@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::_String_const_iterator<class std::_String_val<struct std::_Simple_types<char> > > __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::end(void)const " (?end@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA?AV?$_String_const_iterator@V?$_String_val@U?$_Simple_types@D@std@@@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::erase(unsigned __int64,unsigned __int64)" (?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::erase(unsigned __int64)" (?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::find_first_not_of(char const *,unsigned __int64,unsigned __int64)const " (?find_first_not_of@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KPEBD_K1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::find_first_not_of(char const *,unsigned __int64)const " (?find_first_not_of@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KPEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::find_first_of(char const *,unsigned __int64,unsigned __int64)const " (?find_first_of@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KPEBD_K1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::find_first_of(char const *,unsigned __int64)const " (?find_first_of@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KPEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::find_last_not_of(char,unsigned __int64)const " (?find_last_not_of@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::find_last_not_of(char const *,unsigned __int64,unsigned __int64)const " (?find_last_not_of@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KPEBD_K1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::allocator<char> __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::get_allocator(void)const " (?get_allocator@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA?AV?$allocator@D@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::insert(unsigned __int64,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?insert@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KAEBV12@00@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::insert(unsigned __int64,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?insert@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KAEBV12@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::insert(unsigned __int64,char const *,unsigned __int64)" (?insert@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KPEBD0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::insert(unsigned __int64,char const *)" (?insert@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KPEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::length(void)const " (?length@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::max_size(void)const " (?max_size@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::replace(class std::_String_const_iterator<class std::_String_val<struct std::_Simple_types<char> > >,class std::_String_const_iterator<class std::_String_val<struct std::_Simple_types<char> > >,class std::_String_iterator<class std::_String_val<struct std::_Simple_types<char> > >,class std::_String_iterator<class std::_String_val<struct std::_Simple_types<char> > >)" (?replace@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@V?$_String_const_iterator@V?$_String_val@U?$_Simple_types@D@std@@@std@@@2@0V?$_String_iterator@V?$_String_val@U?$_Simple_types@D@std@@@std@@@2@1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::replace(unsigned __int64,unsigned __int64,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?replace@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K0AEBV12@00@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::replace(unsigned __int64,unsigned __int64,char const *,unsigned __int64)" (?replace@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K0PEBD0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::reserve(unsigned __int64)" (?reserve@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::resize(unsigned __int64)" (?resize@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::resize(unsigned __int64,char)" (?resize@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_KD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::size(void)const " (?size@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
GeoCoords.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::substr(unsigned __int64,unsigned __int64)const " (?substr@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA?AV12@_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &&)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@$$QEAV01@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@AEBV01@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64,class std::allocator<char> const &)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@AEBV01@_K1AEBV?$allocator@D@1@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(char const *)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(char const *,unsigned __int64)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@PEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(void)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::~_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >(void)" (??1?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::~basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(void)" (??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::operator=(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &&)" (??4?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV01@$$QEAV01@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: char & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::operator[](unsigned __int64)" (??A?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: char const & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::operator[](unsigned __int64)const " (??A?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAAEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::operator+=(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??Y?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV01@AEBV01@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::operator+=(char const *)" (??Y?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV01@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Alloc_proxy(void)" (?_Alloc_proxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Assign_rv(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &&)" (?_Assign_rv@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX$$QEAV12@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: union std::_String_val<struct std::_Simple_types<char> >::_Bxty & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Bx(void)" (?_Bx@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAT_Bxty@?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Chassign(unsigned __int64,unsigned __int64,char)" (?_Chassign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K0D@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Copy(unsigned __int64,unsigned __int64)" (?_Copy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Eos(unsigned __int64)" (?_Eos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Free_proxy(void)" (?_Free_proxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::_String_val<struct std::_Simple_types<char> > & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Get_data(void)" (?_Get_data@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAV?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::_String_val<struct std::_Simple_types<char> > const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Get_data(void)const " (?_Get_data@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEBV?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: struct std::_Wrap_alloc<class std::allocator<char> > & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Getal(void)" (?_Getal@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAU?$_Wrap_alloc@V?$allocator@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: struct std::_Wrap_alloc<class std::allocator<char> > const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Getal(void)const " (?_Getal@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEBU?$_Wrap_alloc@V?$allocator@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: bool __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Grow(unsigned __int64,bool)" (?_Grow@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA_N_K_N@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: bool __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Inside(char const *)" (?_Inside@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA_NPEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Move_alloc(struct std::_Wrap_alloc<class std::allocator<char> > &)" (?_Move_alloc@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXAEAU?$_Wrap_alloc@V?$allocator@D@std@@@2@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: struct std::_Container_proxy * & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myproxy(void)" (?_Myproxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAPEAU_Container_proxy@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: char * __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myptr(void)" (?_Myptr@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAPEADXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: char const * __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myptr(void)const " (?_Myptr@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAPEBDXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: unsigned __int64 & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myres(void)" (?_Myres@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: unsigned __int64 const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myres(void)const " (?_Myres@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEB_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: unsigned __int64 & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Mysize(void)" (?_Mysize@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: unsigned __int64 const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Mysize(void)const " (?_Mysize@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEB_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Orphan_all(void)" (?_Orphan_all@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Tidy(bool,unsigned __int64)" (?_Tidy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_N_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Xlen(void)const " (?_Xlen@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Xran(void)const " (?_Xran@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@AEBV12@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@AEBV12@_K1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(char const *)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(char const *,unsigned __int64)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(unsigned __int64,char)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@AEBV12@_K1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(char const *)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(char const *,unsigned __int64)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::_String_iterator<class std::_String_val<struct std::_Simple_types<char> > > __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::begin(void)" (?begin@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA?AV?$_String_iterator@V?$_String_val@U?$_Simple_types@D@std@@@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::_String_const_iterator<class std::_String_val<struct std::_Simple_types<char> > > __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::begin(void)const " (?begin@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA?AV?$_String_const_iterator@V?$_String_val@U?$_Simple_types@D@std@@@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: char const * __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::c_str(void)const " (?c_str@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAPEBDXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::capacity(void)const " (?capacity@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: int __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::compare(char const *)const " (?compare@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAHPEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: bool __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::empty(void)const " (?empty@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_NXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::_String_iterator<class std::_String_val<struct std::_Simple_types<char> > > __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::end(void)" (?end@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA?AV?$_String_iterator@V?$_String_val@U?$_Simple_types@D@std@@@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::_String_const_iterator<class std::_String_val<struct std::_Simple_types<char> > > __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::end(void)const " (?end@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA?AV?$_String_const_iterator@V?$_String_val@U?$_Simple_types@D@std@@@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::erase(unsigned __int64,unsigned __int64)" (?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::erase(unsigned __int64)" (?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::find(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64)const " (?find@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KAEBV12@_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::find(char,unsigned __int64)const " (?find@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::find(char const *,unsigned __int64,unsigned __int64)const " (?find@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KPEBD_K1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::find_last_not_of(char,unsigned __int64)const " (?find_last_not_of@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::find_last_not_of(char const *,unsigned __int64,unsigned __int64)const " (?find_last_not_of@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KPEBD_K1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::allocator<char> __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::get_allocator(void)const " (?get_allocator@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA?AV?$allocator@D@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::insert(unsigned __int64,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?insert@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KAEBV12@00@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::insert(unsigned __int64,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?insert@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KAEBV12@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::insert(unsigned __int64,char const *,unsigned __int64)" (?insert@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KPEBD0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::insert(unsigned __int64,char const *)" (?insert@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KPEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::length(void)const " (?length@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::max_size(void)const " (?max_size@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::replace(class std::_String_const_iterator<class std::_String_val<struct std::_Simple_types<char> > >,class std::_String_const_iterator<class std::_String_val<struct std::_Simple_types<char> > >,class std::_String_iterator<class std::_String_val<struct std::_Simple_types<char> > >,class std::_String_iterator<class std::_String_val<struct std::_Simple_types<char> > >)" (?replace@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@V?$_String_const_iterator@V?$_String_val@U?$_Simple_types@D@std@@@std@@@2@0V?$_String_iterator@V?$_String_val@U?$_Simple_types@D@std@@@std@@@2@1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::replace(unsigned __int64,unsigned __int64,unsigned __int64,char)" (?replace@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K00D@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::replace(unsigned __int64,unsigned __int64,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?replace@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K0AEBV12@00@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::replace(unsigned __int64,unsigned __int64,char const *,unsigned __int64)" (?replace@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K0PEBD0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::reserve(unsigned __int64)" (?reserve@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::resize(unsigned __int64)" (?resize@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::resize(unsigned __int64,char)" (?resize@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_KD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::size(void)const " (?size@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
DMS.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::substr(unsigned __int64,unsigned __int64)const " (?substr@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA?AV12@_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: __cdecl OGRCoordinateTransformation::OGRCoordinateTransformation(class OGRCoordinateTransformation const &)" (??0OGRCoordinateTransformation@@QEAA@AEBV0@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: __cdecl OGRCoordinateTransformation::OGRCoordinateTransformation(void)" (??0OGRCoordinateTransformation@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: __cdecl OGREnvelope3D::OGREnvelope3D(class OGREnvelope3D const &)" (??0OGREnvelope3D@@QEAA@AEBV0@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: __cdecl OGREnvelope3D::OGREnvelope3D(void)" (??0OGREnvelope3D@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: __cdecl OGREnvelope::OGREnvelope(class OGREnvelope const &)" (??0OGREnvelope@@QEAA@AEBV0@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: __cdecl OGREnvelope::OGREnvelope(void)" (??0OGREnvelope@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: virtual __cdecl OGRCoordinateTransformation::~OGRCoordinateTransformation(void)" (??1OGRCoordinateTransformation@@UEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: class OGRCoordinateTransformation & __cdecl OGRCoordinateTransformation::operator=(class OGRCoordinateTransformation const &)" (??4OGRCoordinateTransformation@@QEAAAEAV0@AEBV0@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: class OGREnvelope3D & __cdecl OGREnvelope3D::operator=(class OGREnvelope3D const &)" (??4OGREnvelope3D@@QEAAAEAV0@AEBV0@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: class OGREnvelope & __cdecl OGREnvelope::operator=(class OGREnvelope const &)" (??4OGREnvelope@@QEAAAEAV0@AEBV0@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: class OGR_SRSNode & __cdecl OGR_SRSNode::operator=(class OGR_SRSNode const &)" (??4OGR_SRSNode@@QEAAAEAV0@AEBV0@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: void __cdecl OGRSpatialReference::`default constructor closure'(void)" (??_FOGRSpatialReference@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: void __cdecl OGR_SRSNode::`default constructor closure'(void)" (??_FOGR_SRSNode@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: int __cdecl OGREnvelope3D::Contains(class OGREnvelope3D const &)const " (?Contains@OGREnvelope3D@@QEBAHAEBV1@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: int __cdecl OGREnvelope::Contains(class OGREnvelope const &)const " (?Contains@OGREnvelope@@QEBAHAEBV1@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: int __cdecl OGR_SRSNode::GetChildCount(void)const " (?GetChildCount@OGR_SRSNode@@QEBAHXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: int __cdecl OGRSpatialReference::GetReferenceCount(void)const " (?GetReferenceCount@OGRSpatialReference@@QEBAHXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: class OGR_SRSNode * __cdecl OGRSpatialReference::GetRoot(void)" (?GetRoot@OGRSpatialReference@@QEAAPEAVOGR_SRSNode@@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: class OGR_SRSNode const * __cdecl OGRSpatialReference::GetRoot(void)const " (?GetRoot@OGRSpatialReference@@QEBAPEBVOGR_SRSNode@@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: char const * __cdecl OGR_SRSNode::GetValue(void)const " (?GetValue@OGR_SRSNode@@QEBAPEBDXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: void __cdecl OGREnvelope3D::Intersect(class OGREnvelope3D const &)" (?Intersect@OGREnvelope3D@@QEAAXAEBV1@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: void __cdecl OGREnvelope::Intersect(class OGREnvelope const &)" (?Intersect@OGREnvelope@@QEAAXAEBV1@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: int __cdecl OGREnvelope3D::Intersects(class OGREnvelope3D const &)const " (?Intersects@OGREnvelope3D@@QEBAHAEBV1@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: int __cdecl OGREnvelope::Intersects(class OGREnvelope const &)const " (?Intersects@OGREnvelope@@QEBAHAEBV1@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: int __cdecl OGREnvelope3D::IsInit(void)const " (?IsInit@OGREnvelope3D@@QEBAHXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: int __cdecl OGREnvelope::IsInit(void)const " (?IsInit@OGREnvelope@@QEBAHXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: int __cdecl OGR_SRSNode::IsLeafNode(void)const " (?IsLeafNode@OGR_SRSNode@@QEBAHXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: void __cdecl OGREnvelope3D::Merge(class OGREnvelope3D const &)" (?Merge@OGREnvelope3D@@QEAAXAEBV1@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: void __cdecl OGREnvelope3D::Merge(double,double,double)" (?Merge@OGREnvelope3D@@QEAAXNNN@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: void __cdecl OGREnvelope::Merge(class OGREnvelope const &)" (?Merge@OGREnvelope@@QEAAXAEBV1@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
stdafx.obj : warning LNK4006: "public: void __cdecl OGREnvelope::Merge(double,double)" (?Merge@OGREnvelope@@QEAAXNN@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@AEBV01@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(char const *)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::~_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >(void)" (??1?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::~basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(void)" (??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Alloc_proxy(void)" (?_Alloc_proxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: union std::_String_val<struct std::_Simple_types<char> >::_Bxty & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Bx(void)" (?_Bx@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAT_Bxty@?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Construct(char *,char *,struct std::random_access_iterator_tag)" (?_Construct@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAXPEAD0Urandom_access_iterator_tag@2@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Copy(unsigned __int64,unsigned __int64)" (?_Copy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Eos(unsigned __int64)" (?_Eos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Free_proxy(void)" (?_Free_proxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: class std::_String_val<struct std::_Simple_types<char> > & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Get_data(void)" (?_Get_data@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAV?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: class std::_String_val<struct std::_Simple_types<char> > const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Get_data(void)const " (?_Get_data@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEBV?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: struct std::_Wrap_alloc<class std::allocator<char> > & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Getal(void)" (?_Getal@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAU?$_Wrap_alloc@V?$allocator@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: struct std::_Wrap_alloc<class std::allocator<char> > const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Getal(void)const " (?_Getal@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEBU?$_Wrap_alloc@V?$allocator@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: bool __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Grow(unsigned __int64,bool)" (?_Grow@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA_N_K_N@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: bool __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Inside(char const *)" (?_Inside@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA_NPEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: struct std::_Container_proxy * & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myproxy(void)" (?_Myproxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAPEAU_Container_proxy@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: char * __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myptr(void)" (?_Myptr@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAPEADXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: char const * __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myptr(void)const " (?_Myptr@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAPEBDXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: unsigned __int64 & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myres(void)" (?_Myres@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: unsigned __int64 & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Mysize(void)" (?_Mysize@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: unsigned __int64 const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Mysize(void)const " (?_Mysize@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEB_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Orphan_all(void)" (?_Orphan_all@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Tidy(bool,unsigned __int64)" (?_Tidy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_N_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Xlen(void)const " (?_Xlen@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Xran(void)const " (?_Xran@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@AEBV12@_K1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(char const *)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(char const *,unsigned __int64)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: char const * __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::c_str(void)const " (?c_str@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAPEBDXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: char const * __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::data(void)const " (?data@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAPEBDXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::erase(unsigned __int64,unsigned __int64)" (?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::erase(unsigned __int64)" (?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversionLuaBinding.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::max_size(void)const " (?max_size@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &&)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@$$QEAV01@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@AEBV01@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(char const *)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(void)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(unsigned __int64,char)" (??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@_KD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::~_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >(void)" (??1?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::~basic_string<char,struct std::char_traits<char>,class std::allocator<char> >(void)" (??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::operator=(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &&)" (??4?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV01@$$QEAV01@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: char & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::operator[](unsigned __int64)" (??A?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Alloc_proxy(void)" (?_Alloc_proxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Assign_rv(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &&)" (?_Assign_rv@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX$$QEAV12@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: union std::_String_val<struct std::_Simple_types<char> >::_Bxty & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Bx(void)" (?_Bx@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAT_Bxty@?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Chassign(unsigned __int64,unsigned __int64,char)" (?_Chassign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K0D@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Construct(char const *,char const *,struct std::random_access_iterator_tag)" (?_Construct@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAXPEBD0Urandom_access_iterator_tag@2@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Copy(unsigned __int64,unsigned __int64)" (?_Copy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Eos(unsigned __int64)" (?_Eos@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Free_proxy(void)" (?_Free_proxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::_String_val<struct std::_Simple_types<char> > & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Get_data(void)" (?_Get_data@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAV?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::_String_val<struct std::_Simple_types<char> > const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Get_data(void)const " (?_Get_data@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEBV?$_String_val@U?$_Simple_types@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: struct std::_Wrap_alloc<class std::allocator<char> > & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Getal(void)" (?_Getal@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAU?$_Wrap_alloc@V?$allocator@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: struct std::_Wrap_alloc<class std::allocator<char> > const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Getal(void)const " (?_Getal@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEBU?$_Wrap_alloc@V?$allocator@D@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: bool __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Grow(unsigned __int64,bool)" (?_Grow@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA_N_K_N@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: bool __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Inside(char const *)" (?_Inside@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA_NPEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Move_alloc(struct std::_Wrap_alloc<class std::allocator<char> > &)" (?_Move_alloc@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXAEAU?$_Wrap_alloc@V?$allocator@D@std@@@2@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: struct std::_Container_proxy * & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myproxy(void)" (?_Myproxy@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEAPEAU_Container_proxy@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: char * __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myptr(void)" (?_Myptr@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAPEADXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: char const * __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myptr(void)const " (?_Myptr@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAPEBDXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: unsigned __int64 & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myres(void)" (?_Myres@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: unsigned __int64 const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Myres(void)const " (?_Myres@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEB_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: unsigned __int64 & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Mysize(void)" (?_Mysize@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAAEA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: unsigned __int64 const & __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Mysize(void)const " (?_Mysize@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEBAAEB_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: void __cdecl std::_String_alloc<struct std::_String_base_types<char,class std::allocator<char> > >::_Orphan_all(void)" (?_Orphan_all@?$_String_alloc@U?$_String_base_types@DV?$allocator@D@std@@@std@@@std@@QEAAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Tidy(bool,unsigned __int64)" (?_Tidy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_N_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Xlen(void)const " (?_Xlen@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::_Xran(void)const " (?_Xran@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAXXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@AEBV12@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@AEBV12@_K1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(char const *)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(char const *,unsigned __int64)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::append(unsigned __int64,char)" (?append@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@AEBV12@_K1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(char const *,char const *)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(char const *)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(char const *,unsigned __int64)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@PEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::assign(unsigned __int64,char)" (?assign@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: char const & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::at(unsigned __int64)const " (?at@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAAEBD_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::_String_iterator<class std::_String_val<struct std::_Simple_types<char> > > __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::begin(void)" (?begin@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA?AV?$_String_iterator@V?$_String_val@U?$_Simple_types@D@std@@@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::_String_const_iterator<class std::_String_val<struct std::_Simple_types<char> > > __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::begin(void)const " (?begin@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA?AV?$_String_const_iterator@V?$_String_val@U?$_Simple_types@D@std@@@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: char const * __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::c_str(void)const " (?c_str@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAPEBDXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::capacity(void)const " (?capacity@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: int __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::compare(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)const " (?compare@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAHAEBV12@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: int __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::compare(char const *)const " (?compare@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBAHPEBD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::_String_iterator<class std::_String_val<struct std::_Simple_types<char> > > __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::end(void)" (?end@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAA?AV?$_String_iterator@V?$_String_val@U?$_Simple_types@D@std@@@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::_String_const_iterator<class std::_String_val<struct std::_Simple_types<char> > > __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::end(void)const " (?end@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA?AV?$_String_const_iterator@V?$_String_val@U?$_Simple_types@D@std@@@std@@@2@XZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::erase(unsigned __int64,unsigned __int64)" (?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::erase(unsigned __int64)" (?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::insert(unsigned __int64,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?insert@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KAEBV12@00@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::insert(unsigned __int64,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?insert@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_KAEBV12@@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::length(void)const " (?length@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::max_size(void)const " (?max_size@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::replace(class std::_String_const_iterator<class std::_String_val<struct std::_Simple_types<char> > >,class std::_String_const_iterator<class std::_String_val<struct std::_Simple_types<char> > >,char const *,char const *)" (?replace@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@V?$_String_const_iterator@V?$_String_val@U?$_Simple_types@D@std@@@std@@@2@0PEBD1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::replace(class std::_String_const_iterator<class std::_String_val<struct std::_Simple_types<char> > >,class std::_String_const_iterator<class std::_String_val<struct std::_Simple_types<char> > >,class std::_String_iterator<class std::_String_val<struct std::_Simple_types<char> > >,class std::_String_iterator<class std::_String_val<struct std::_Simple_types<char> > >)" (?replace@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@V?$_String_const_iterator@V?$_String_val@U?$_Simple_types@D@std@@@std@@@2@0V?$_String_iterator@V?$_String_val@U?$_Simple_types@D@std@@@std@@@2@1@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::replace(unsigned __int64,unsigned __int64,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned __int64,unsigned __int64)" (?replace@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K0AEBV12@00@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > & __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::replace(unsigned __int64,unsigned __int64,char const *,unsigned __int64)" (?replace@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAAEAV12@_K0PEBD0@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::resize(unsigned __int64)" (?resize@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_K@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: void __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::resize(unsigned __int64,char)" (?resize@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEAAX_KD@Z) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
coordinateConversion.obj : warning LNK4006: "public: unsigned __int64 __cdecl std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::size(void)const " (?size@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QEBA_KXZ) already defined in gdal_i.lib(gdal111d.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\coordinateConversion\coordinateConversion.vcxproj]
events.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ingot\ingot.vcxproj]
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V140\Microsoft.CppBuild.targets(392,5): warning MSB8028: The intermediate directory (build\x64_Debug\) contains files shared from another project (math.vcxproj, mathrlio.vcxproj). This can lead to incorrect clean and rebuild behavior. [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\math\math_serialize.vcxproj]
ATI_Compress_1_7_DLL.lib(ATI_Compress_1_7.dll) : warning LNK4006: __NULL_IMPORT_DESCRIPTOR already defined in freeimage.lib(FreeImage.dll); second definition ignored [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\rlbitmap\rlbitmap.vcxproj]
ATI_Compress_1_7_DLL.lib(ATI_Compress_1_7.dll) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\rlbitmap\rlbitmap.vcxproj]
C:\Users\d.nusman\Documents\Code\main4\SharedLibs\pepsirenderer\shaders\distort_vs.hlsl(32,3): warning X4000: use of potentially uninitialized variable (ret) [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\pepsirenderer\pepsirenderer.vcxproj]
active_group.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\ubobjects\ubobjects.vcxproj]
rlchainentry.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\rlmodel\rlmodel.vcxproj]
rlchain.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\rlmodel\rlmodel.vcxproj]
resources.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\rlmodel\rlmodel.vcxproj]
coverage.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\UrbanBuilderLib\UrbanBuilderLib.vcxproj]
selectionHandling.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\UrbanBuilderEditor\UrbanBuilderEditor.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\bsp_perftest\main.cpp(65): error C2660: 'c2l::generateFloorForConversion': function does not take 8 arguments [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\BSP_perftest\BSP_perftest.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\bsp_perftest\main.cpp(66): error C3536: 'models': cannot be used before it is initialized [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\BSP_perftest\BSP_perftest.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\bsp_perftest\main.cpp(66): error C2228: left of '.size' must have class/struct/union [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\BSP_perftest\BSP_perftest.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\bsp_perftest\main.cpp(69): error C3312: no callable 'begin' function found for type 'int' [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\BSP_perftest\BSP_perftest.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\bsp_perftest\main.cpp(69): error C3312: no callable 'end' function found for type 'int' [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\BSP_perftest\BSP_perftest.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\bsp_perftest\main.cpp(72): error C2065: 'model': undeclared identifier [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\BSP_perftest\BSP_perftest.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\bsp_perftest\main.cpp(72): error C2228: left of '.m_Planes' must have class/struct/union [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\BSP_perftest\BSP_perftest.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\bsp_perftest\main.cpp(73): error C2065: 'model': undeclared identifier [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\BSP_perftest\BSP_perftest.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\bsp_perftest\main.cpp(73): error C2228: left of '.m_Legos' must have class/struct/union [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\BSP_perftest\BSP_perftest.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\bsp_perftest\main.cpp(77): error C2660: 'ubcsg::makeBSP': function does not take 6 arguments [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\BSP_perftest\BSP_perftest.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\bsp_perftest\main.cpp(80): error C3536: 'bsp': cannot be used before it is initialized [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\BSP_perftest\BSP_perftest.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\bsp_perftest\main.cpp(80): error C2664: 'void ubcsg::makePortals(ubcsg::BSP &)': cannot convert argument 1 from 'int' to 'ubcsg::BSP &' [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\BSP_perftest\BSP_perftest.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\bsp_perftest\main.cpp(85): error C2664: 'ubvisuals::Mesh ubvisuals::triangulateBSP(ubcsg::BSP &,vector3w_lub)': cannot convert argument 1 from 'int' to 'ubcsg::BSP &' [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\BSP_perftest\BSP_perftest.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\bsp_perftest\main.cpp(86): error C2512: 'ubvisuals::Mesh': no appropriate default constructor available [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\BSP_perftest\BSP_perftest.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\lego2collision_test\lego2collision_test.cpp(92): error C2660: 'c2l::generateFloorForConversion': function does not take 8 arguments [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\lego2collision_test\lego2collision_test.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\lego2collision_test\lego2collision_test.cpp(95): error C3536: 'modelList': cannot be used before it is initialized [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\lego2collision_test\lego2collision_test.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\lego2collision_test\lego2collision_test.cpp(95): error C3312: no callable 'begin' function found for type 'int' [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\lego2collision_test\lego2collision_test.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\lego2collision_test\lego2collision_test.cpp(95): error C3312: no callable 'end' function found for type 'int' [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\lego2collision_test\lego2collision_test.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\lego2collision_test\lego2collision_test.cpp(98): error C2065: 'model': undeclared identifier [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\lego2collision_test\lego2collision_test.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\lego2collision_test\lego2collision_test.cpp(104): error C3536: 'collisionElements': cannot be used before it is initialized [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\lego2collision_test\lego2collision_test.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\lego2collision_test\lego2collision_test.cpp(104): error C3312: no callable 'begin' function found for type 'int' [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\lego2collision_test\lego2collision_test.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\lego2collision_test\lego2collision_test.cpp(104): error C3312: no callable 'end' function found for type 'int' [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\lego2collision_test\lego2collision_test.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\lego2collision_test\lego2collision_test.cpp(106): error C2065: 'elementsPerTag': undeclared identifier [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\lego2collision_test\lego2collision_test.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\lego2collision_test\lego2collision_test.cpp(106): error C2228: left of '.second' must have class/struct/union [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\lego2collision_test\lego2collision_test.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\lego2collision_test\lego2collision_test.cpp(108): error C2065: 'collisionElement': undeclared identifier [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\lego2collision_test\lego2collision_test.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\lego2collision_test\lego2collision_test.cpp(108): error C2228: left of '.dyn_cast' must have class/struct/union [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\lego2collision_test\lego2collision_test.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\lego2collision_test\lego2collision_test.cpp(108): error C2059: syntax error: ')' [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\lego2collision_test\lego2collision_test.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\lego2collision_test\lego2collision_test.cpp(109): error C2143: syntax error: missing ';' before '{' [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\lego2collision_test\lego2collision_test.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\lego2collision_test\lego2collision_test.cpp(110): error C3536: 'collisionMesh': cannot be used before it is initialized [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\lego2collision_test\lego2collision_test.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\lego2collision_test\lego2collision_test.cpp(110): error C2227: left of '->m_Mesh' must point to class/struct/union/generic type [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\lego2collision_test\lego2collision_test.vcxproj]
c:\users\d.nusman\documents\code\main4\sharedlibs\ub\lego2collision_test\lego2collision_test.cpp(111): error C2227: left of '->m_Mesh' must point to class/struct/union/generic type [C:\Users\d.nusman\Documents\Code\main4\SharedLibs\ub\lego2collision_test\lego2collision_test.vcxproj]
| Find best VC error | 2017-08-23T10:16:36.000Z |
|
(i have |we have )(a |[0-9]* )(piece|shipment) | i have 2 pieces at
we have 1 piece at
i have 3 pies
3 pieces at
i have a piece at
we have 12 pieces.
i have 5 shipments at
i have 2 pieces at 40 kg ready to drop now!!
have a shipment from | have X shipmet | 2019-02-05T02:18:55.000Z |
|
^(?:(?:\w|-)+((?:, ?(?=\w))|$))+$ | // match
Comma, Separated, List, Of, Words
List,Without,Spaces
SingleWord
1nclud3s, 07h3r, 4lph4Num
// fail
Missing,,Entry
Wrong.Delimeter
,Starts, With, Delimeter
Ends, With, Delimeter,
has, extra, spaces
| enforce comma-delimited list of words | 2019-06-08T19:19:59.000Z |
|
educacao\/busca-?([\w%-]+)?\/?(?!em-)([\w%-]+)?\/?(em-)?([\w%-]+)?\/? | ###################
# bug cases
https://www.catho.com.br/educacao/busca/em-em-em-em-extrema-mg
https://www.catho.com.br/educacao/busca/em-extrema-mg
https://www.catho.com.br/educacao/busca/em-mextrema-mg
https://www.catho.com.br/educacao/busca-curso-admin/usp/em-mextrema-mg
https://www.catho.com.br/educacao/busca-curso-admin/em-mextrema-mg
https://www.catho.com.br/educacao/busca-admin/em-mextrema-mg
#####################
// without term or filters
https://www.catho.com.br/educacao/busca
https://www.catho.com.br/educacao/busca/
###################
// with term or match but no filters
https://www.catho.com.br/educacao/busca-curso-design-industrial
https://www.catho.com.br/educacao/busca-curso-design-industrial/
https://www.catho.com.br/educacao/busca-de%20csign-industrial
https://www.catho.com.br/educacao/busca-de%20csign-industrial/
https://www.catho.com.br/educacao/busca-design-industrial
https://www.catho.com.br/educacao/busca-design-industrial/
###################
// without term but with provider
https://www.catho.com.br/educacao/busca/centro-universitario-senac
https://www.catho.com.br/educacao/busca/centro-universitario-senac/
// without term but with location
https://www.catho.com.br/educacao/busca/em-sao-paolo
https://www.catho.com.br/educacao/busca/em-sao-paolo/
// without term but with provider & location
https://www.catho.com.br/educacao/busca/centro-universitario-senac/em-sao-paolo
https://www.catho.com.br/educacao/busca/centro-universitario-senac/em-sao-paolo/
###################
// with term & provider
https://www.catho.com.br/educacao/busca-design-industrial/centro-universitario-senac
https://www.catho.com.br/educacao/busca-design-industrial/centro-universitario-senac/
// with term & location
https://www.catho.com.br/educacao/busca-design-industrial/em-sao-paolo
https://www.catho.com.br/educacao/busca-design-industrial/em-sao-paolo/
// with term & provider & location
https://www.catho.com.br/educacao/busca-design-industrial/centro-universitario-senac/em-sao-paolo
https://www.catho.com.br/educacao/busca-design-industrial/centro-universitario-senac/em-sao-paolo/
###################
// with match & provider
https://www.catho.com.br/educacao/busca-curso-design-industrial/centro-universitario-senac
https://www.catho.com.br/educacao/busca-curso-design-industrial/centro-universitario-senac/
// with match & location
https://www.catho.com.br/educacao/busca-curso-design-industrial/em-sao-paolo
https://www.catho.com.br/educacao/busca-curso-design-industrial/em-sao-paolo/
// with match & provider & location
https://www.catho.com.br/educacao/busca-curso-design-industrial/centro-universitario-senac/em-sao-paolo
https://www.catho.com.br/educacao/busca-curso-design-industrial/centro-universitario-senac/em-sao-paolo/ | SRP | 2017-12-28T17:21:02.000Z |
|
\A
(?=.{1,255}$)
[0-9A-Za-z](?:
(?:[0-9A-Za-z]|-)
{0,61}[0-9A-Za-z]
)?(?:
\.[0-9A-Za-z](?:
(?:[0-9A-Za-z]|-)
{0,61}[0-9A-Za-z]
)?
)*\.?\z | App Deployer FQDN | 2020-06-15T09:46:27.000Z |
||
insert\s+into\s+historicopreco|insert'\);\s+(\w+\b\.)+(add\(')?into('\);\s+)?(\w+\b\.)+(add\(')?historicopreco|update\s+h(istorico)?p(reco)?|update'\);\s+(\w+\b\.)+(add\(')?h(istorico)?p(preco)? | insert into historicopreco
update historicopreco
insert into
historicopreco
update
historicopreco
update hp
insert into hisoricopreco
update
hp
sql.add('update');
sql.add('hp
update');
aaaa.sql.add('historicopreco
sql.add('insert');
aaa.sql.add('into');
aaa.sql.add('historicopreco'); | Procura por script insert e update | 2017-07-05T16:22:41.000Z |
|
ASD___asdfffasd
{this}{exam}{problem}{is}{boring} | \{(.*?[a-zA-Z]+.*?)\} | Hello_mister,_Hello
{ Jack }
ASD___asdfffasd
{this}{exam}{problem}{is}{boring}
Whatsup_ddd_sup
{Dude}
HeypalHey______how_ya_how_doin_how
{first}{second} | Regex match placeholder | 2017-11-10T13:15:57.000Z |
\/year=2020\/month=06\/day=(24/\hour=((1[5-9])|(2[0-3]))|25\/hour=((0[0-9])|(1[0-9])|20)) | --surrounding data
silver/power/minute/monitor_id=10817/year=2020/month=06/day=24/hour=08
silver/power/minute/monitor_id=10817/year=2020/month=06/day=24/hour=09
silver/power/minute/monitor_id=10817/year=2020/month=06/day=24/hour=10
silver/power/minute/monitor_id=10817/year=2020/month=06/day=24/hour=11
silver/power/minute/monitor_id=10817/year=2020/month=06/day=24/hour=12
silver/power/minute/monitor_id=10817/year=2020/month=06/day=24/hour=13
silver/power/minute/monitor_id=10817/year=2020/month=06/day=24/hour=14
--start matching
silver/power/minute/monitor_id=10817/year=2020/month=06/day=24/hour=15
silver/power/minute/monitor_id=10817/year=2020/month=06/day=24/hour=16
silver/power/minute/monitor_id=10817/year=2020/month=06/day=24/hour=17
silver/power/minute/monitor_id=10817/year=2020/month=06/day=24/hour=18
silver/power/minute/monitor_id=10817/year=2020/month=06/day=24/hour=19
silver/power/minute/monitor_id=10817/year=2020/month=06/day=24/hour=20
silver/power/minute/monitor_id=10817/year=2020/month=06/day=24/hour=21
silver/power/minute/monitor_id=10817/year=2020/month=06/day=24/hour=22
silver/power/minute/monitor_id=10817/year=2020/month=06/day=24/hour=23
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=00
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=01
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=02
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=03
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=04
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=05
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=06
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=07
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=08
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=09
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=10
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=11
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=12
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=13
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=14
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=15
--stop matching
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=16
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=17
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=18
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=19
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=20
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=21
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=22
silver/power/minute/monitor_id=10817/year=2020/month=06/day=25/hour=23
| s3_date_select | 2020-07-02T13:54:03.000Z |
|
extract csr from response returned by https://csrgenerator.com/ | ([\-]*BEGIN\sCERTIFICATE\sREQUEST[\-]+.+[-]+END\sCERTIFICATE\sREQUEST[-]+) | -----BEGIN CERTIFICATE REQUEST-----
MIIEuDCCAqACAQAwczELMAkGA1UEBhMCVVMxGDAWBgNVBAMMD3BsdWdpYmlsaXR5
LmNvbTEXMBUGA1UEBwwOU2FsdCBMYWtlIENpdHkxFDASBgNVBAoMC1BsdWdpYmls
aXR5MQ0wCwYDVQQIDARVdGFoMQwwCgYDVQQLDANPcmcwggIiMA0GCSqGSIb3DQEB
AQUAA4ICDwAwggIKAoICAQCfQqx8YexJ4HjGqIpywxvTOPDnqIaZicD3IQSUdAb5
5vcfAaD/0KBH/6Oa2NPlq4mYAw2octDiuklvkXIUgnn85vwlj6fLm6iR6i1tjM3g
tusxur3fmMdF9YqDNNM7LVSxXMq/vXuChPj3bVib2EyKJRcBn8EMTnJYdfl3YK4l
j+KW7cnxIy8E3DAy4KIUPbI2LNPix43emW6XuMB3hpvcbs2YpQogagAQwvNYAIcW
Ub3+fSEbXFNVmYFRPbd7T5Arei4Ubl8kKVWfqUnWIOdYQh7o0CbQl+67ivAyRnDU
oItNtPz+seWzL1xerjQqdlHrCQFGNfLdI3Hfl9SZVKOqdsjs2bEiP+C6E/pilvu/
zEtD5VbGd0UBBZtANm6BdBEhhigX8vL/FfiqxlPsEK31L9tQnwa6ETvcVbRQoXBW
idJJKCmiScz17ML8aTxw0zXc16CBHuE4AEV7xaNmdl5NsYCB+q/H3SCVsreMnu7A
cpCgvaCZX1/8zSWrVNMf0i+/gJCoBh1OXNnqtCPycJDPvrVGYF2U7RqzC4c91Kqe
QxEKHApEJAL47nFtM9c3K2fNvLEVOD+k+iDkEuL++VHaXO3VHCiVoJjQCSNTChl3
aSL29LadjcPvf2QdMymEJ4+wKI8u6l1bk51zN0INnVDDkMdtfCu0C8ux8M4roP9Y
kQIDAQABoAAwDQYJKoZIhvcNAQELBQADggIBAJO3HIp2hvkQh6/Bk19RiEdyfJjb
xoPWtfM4lWDyXLxq6HrmKadvOtjTs9fGpoBRJaknIhy8n0/oN8Et+uFgga3ptb/8
AjyDRVqmYK3byAJrUm055v9VseNwFqE/hsZiFtPMVA5I5agtnQm8o6zPgUSMQWso
evA00Fa+Q1X1Hmbthtd2ZH64cxLOqW3vW9LViBp9C52mU1NyZtvPRJAlcOlH1r9A
MFnPrR7T4HJ8gMEvaj0likFr5nQKWH5ScPvHbIKyIoebn9RznbMZBNjUn60+I0Kt
VwN8UrIwZMNF+eL99I6kEr/gjoZ3VegPH7YaVRQ280L4NvZNKMbAr1Z+uyCD587y
Zf+cbzZB30xTfra0/iUQnGEBuScpGQMdXEzmE/lBCnNnqnNohrAwvQNLISbnK7w2
JUrwbIIgRrLmmXGELPQ7vBkKmCtSrmPGLyWctwG005h8hHLtFk8jagSDJ/gTQ3Wv
n7YEy3ROHujz/UVGrGE2P3oKs5prn+N52HIxM9XoaQndrtbyvkaOe+WHGZ0htQkE
H6Rrh0YijAFpZTsKwv1ndMh2HpoaYX3B1s9ky3TWGAdOMCgHgdBFpvk2+PdDN+6a
Js+0VtfRywLxxaEamLciBj6JmjybIEBSANSwf2pdn8OnMq5BLZrLRWhsaMVGlciL
1JPHcsgLz1lD8FYC
-----END CERTIFICATE REQUEST-----
-----BEGIN PRIVATE KEY-----
MIIJQgIBADANBgkqhkiG9w0BAQEFAASCCSwwggkoAgEAAoICAQCfQqx8YexJ4HjG
qIpywxvTOPDnqIaZicD3IQSUdAb55vcfAaD/0KBH/6Oa2NPlq4mYAw2octDiuklv
kXIUgnn85vwlj6fLm6iR6i1tjM3gtusxur3fmMdF9YqDNNM7LVSxXMq/vXuChPj3
bVib2EyKJRcBn8EMTnJYdfl3YK4lj+KW7cnxIy8E3DAy4KIUPbI2LNPix43emW6X
uMB3hpvcbs2YpQogagAQwvNYAIcWUb3+fSEbXFNVmYFRPbd7T5Arei4Ubl8kKVWf
qUnWIOdYQh7o0CbQl+67ivAyRnDUoItNtPz+seWzL1xerjQqdlHrCQFGNfLdI3Hf
l9SZVKOqdsjs2bEiP+C6E/pilvu/zEtD5VbGd0UBBZtANm6BdBEhhigX8vL/Ffiq
xlPsEK31L9tQnwa6ETvcVbRQoXBWidJJKCmiScz17ML8aTxw0zXc16CBHuE4AEV7
xaNmdl5NsYCB+q/H3SCVsreMnu7AcpCgvaCZX1/8zSWrVNMf0i+/gJCoBh1OXNnq
tCPycJDPvrVGYF2U7RqzC4c91KqeQxEKHApEJAL47nFtM9c3K2fNvLEVOD+k+iDk
EuL++VHaXO3VHCiVoJjQCSNTChl3aSL29LadjcPvf2QdMymEJ4+wKI8u6l1bk51z
N0INnVDDkMdtfCu0C8ux8M4roP9YkQIDAQABAoICAGRnX2DnR1Vn/ByaQvaJBPDM
NCyINZt0mj/zA/UnlQJV1zQoDb1ZZMMfaqCD1Es2Mv+v5RtujzxxXzzEQFynyYpk
gVCY2Ztmngan0U4AeAcUqwBmD7B4nCEB5PpFAmqLcJqEupnZNpWZiXBL8pIF8nMh
YPi4I7fDeRlF/ymAvSmXJa4raaXpnYn92zEoJ2aFYuX+qvKNBmbw6iUi58wzA+4b
uOhkHBdFXJc0oL+5TXEHxbU8Y/Pg5/TOWxXBx/wos+aFF6nvz3F30bBfxNoHUnJ0
9RGnsODO+EYqGLZJbHbQZCJwWROlSgAGesCCKQcgIxL/UVtXRa6e2vqwuOqVzrv5
msBFM/HzcUvdtNq4FP2UfcqAi4FZlwHlbTDphE3fZSPbLIoJZLuhKuJPFA/Sc8L/
ABPnmRqb0bZ2RKECBnXrsV0U/KeSxbY4r0Hj+ggBnLNO1VhlYjCQZlCXA4X8LdyV
wBvoNeKjSo3ZD8vr/Jvpdm/9xiWVikbPqYpiEiIn6iN8omYWjxHWgDox9fd+zVQu
c/3giKEVAQYhNYj+YbkZpmnWQNjdL89TatjdBeaWO9Zq4k1VwN5UYB539O61kHfC
bhpYx/ptIgTBdEwp+ohlkAegCyBS+Mo3SiQocATdpeBwAMoMpMOtCiMDyGjydK0Y
2xi5+uOGMDKMbWvRe10FAoIBAQDMnaqknzt8Brc1KHQVv7Ww0VTrCEjItXLaAIOs
AW9PyL6/9lhFYljCnEGcWL3LAZlhldr81aNE40qw5FVVRrTR2Hg3xF/znZwa6Bnc
0t1XXGRj0BZIH5OrZSdf0gXdEwIrIB2LmllxMMpzd0BSgX/+x6k2K6FMAl/048bg
v986GsRwUjrlkt0ihyQNHlWuKKK82W1G6G4iQiC0bD5i/AUBer9o5Yb4X9GrgoIA
nWJIHstfJ80KTOJMQVczj0SKLmTjnIUE91BcXGhqTTdcSKTWbts50HyuwQAYcZco
vW5B5Sbyf57jCvu68Bo3gxngE1xYjtTR6Q13azII4DxyE7MjAoIBAQDHQTMNW8NQ
unvr64yqCwzBmEmpCJ6NEbYub3rqHzQPe5Na5VN1iTujKx5ifhi5uhR5A5Jluy2O
fUWzF/ihEdVOOh0JPj1NiJkY1VkuiY9Y2aHR2+8st06sp92Zj1i7Us/t+CP+WuOv
m7He4xRRrXx9tXcdpAzaTr8NoKXCL1fz4t8HKUZdfvvCtY+Ghd3ct1rEG8Bi9SUF
yBoTE1NwATHLCsYFURhpmWwnQTMpRTjlhogNSywDG59fdcqyEBUacCnPG7ZxZ3c2
N8VWknZsf9hBEyjyGCvTNq1A0KKJ6PIEp2gOoMi4I1nbKB1jSC7Gh61pJ+aV4L6g
M10Jh890RWq7AoIBAQC8vvv4G0Jd6Dv79zMOFOffEVpJ7DxnmKk3W54afsBVUpJS
tUU7y7qg2k7TkDCTIQiBsiBtdgzDsP7nKdllbnHB2PMcTjNMoCit0Uh6ILE4suuP
/xVutmIbipXFmBD8m1o2uctHSbwT47P8yxY0hWyycy8t3xVM7ivh1HNSQuwBx0tJ
aTEXMGB4Rz0ENOVIYAeuOMrKzAE77NAKXoc1+9AKS1Zhxsi4OHtKwHp3YraUXIOx
ZR+Izt85BFUSJKhO5vj91RYHPLOOX1eaJ1xX7lLP0za6oA1Djpkt8ypC1Grushk5
PGwud6U6Dd3BM1gdEP7wWeELOPXJIMLo2SApAu8NAoIBAGjYmPl9gJ/ZEN4KOyE6
4UJ5VME6RNusJzX1+TJ6qtU+zEH3C9x8EsKALOPcwDvye1VWGNGpFYa1ylg709tF
W/1mvOKhOnay2wRjNyMyxRgWpHyeAxN/fUmCpytnb2RaZgktGht8TfSYs5a53HZC
GJC5TO1u5kh1STjtgGtWqCwwA/VrtZf6+pTxHo3FoQHEBWHNzIUFw65wJbBF6hC0
wDO7/ojLrFHcpjldqIMd5pt4F90O4iDchxcfD0J1DfW0cXuGdJDlxafk3tT4CpJ7
Dxrm7xO8vkrMqYvCfNSem8LxJ+MSnauvBlg4moYkdGCJAimkEkRpV0VK4bjjGrlu
0YMCggEAGftF1dJBqkUKc9dsbSQYwwfaU+W/gFWU4otTPd89HIOVkKyz3Hc0FrEH
68Ffrlx1MZU8wbNjjXytujJ7vwn0+n0bXN+5/oqEM+zlVunefCCLWWVLD0Sc/yOx
llgrU9u2z8Zjjl+mbbWNKhjV6oBNw3qi4CNHiBMHQk98xGQaRaTh/t/laXxZgtIo
Y+mZN7OXk3IUv6xlO+OyneG+CU9/VOPszLK9yFf95m9l5R6E6v9r4eE9N5OMOTxT
SBXZ+zNnnF4bIjy747KtCVI7XJQURDBbhhXick/lgX6sNj87vMaDJDnZ9kqqgc3U
1H23mg7nAvcEhsYClM3Z8/bEH6eRBQ==
-----END PRIVATE KEY-----
| Extract CSR from response body containing Certificate Request and Private Key | 2020-07-23T00:23:19.000Z |
^[ -~\n\r\t’“”]*$ | checked
checked
checked
checked
checked
checked
checked
checked
checked
checked
checked
checked
checked
checked
checked
checked
471
819
855
875
947
1079
1263
1634
checked
checked
checked
checked
2585
2615
checked
checked
2710
2740
checked
checked
3078
3207
3297
3327
checked
checked
3357
3462
3492
3552
3642
3885 | Acceptable text input | 2020-06-02T19:02:17.000Z |
|
^(((\+\d{1,3}(-| )?\(?\d\)?(-| )?\d{1,3})|(\(?\d{2,3}\)?))(-| )?(\d{3,4})(-| )?(\d{4}))$ | PLTF-1537 Validating Numbers to regex | 2017-06-13T16:31:08.000Z |
||
^(([0-1][0-9]|2[0-3]):[0-5][0-9](:[0-5][0-9])?)$ | 17:30
24:00
19:11:07
00:00
00:00:00
23:59
5:50
29:01:02
01:02:03
00:00:59
00:00:60
60:60:60 | Allow 24 hour time formats, optionally with seconds | 2018-12-04T13:11:45.000Z |
|
Finds the Patient Safety line of the Hazard Analysis. | \-\s\*patient\ssafety\:\* | - *Financial:* <yes or no. If yes, explain why>
- *Legal/Regulatory:* <yes or no. If yes, explain why>
- *Data Integrity:* <yes or no. If yes, explain why>
- *Patient Safety:* <yes or no. If yes, explain why>
- *CyberSecurity/Information Security:* <yes or no. If yes, explain why>
- *Financial:* <yes/no>
- *Legal/Regulatory:* <yes/no>
- *Data Integrity:* <yes/no>
- *Patient Safety:* <yes/no>
- *CyberSecurity/Information Security:* <yes/no>
- *Financial:* <yes or no. If yes, explain why>No
- *Legal/Regulatory:* <yes or no. If yes, explain why> Yes
- *Data Integrity:* No
- *Patient Safety:* Yes, this was an issue because of XYZ.
- *CyberSecurity/Information Security:* <yes or no. If yes, explain why>
- *Financial:* no
- *Legal/Regulatory:* no
- *Data Integrity:* no
- *Patient Safety:* no
- *CyberSecurity/Information Security:* no
- *Financial:* N
- *Legal/Regulatory:* N
- *Data Integrity:* N
- *Patient Safety:* N
- *CyberSecurity/Information Security:* N
- *Financial:* <yes or no. If yes, explain why>N
- *Legal/Regulatory:* <yes or no. If yes, explain why> N
- *Data Integrity:* <yes or no. If yes, explain why>N
- *Patient Safety:* <yes or no. If yes, explain why>N
- *CyberSecurity/Information Security:* <yes or no. If yes, explain why> N
| Patient Safety for HA | 2019-04-01T20:14:25.000Z |
All float representations that can be consumed by strtod() (string to double function in c)
Compatible with flex/bison | ^(
([+-]?\d+\.?\d*)| # 1{{.}1}
([+-]?\.\d+)| # .1
([+-]?(\d*\.)?\d+[eE][-+]?\d+)| # {1{.}}1e1
([+-]?\d+\.[eE][-+]?\d+) # 1.e1
)$ | Float representation | 2020-03-22T11:50:52.000Z |
|
The regular expression used in the jQuery library to match characters that should be trimmed from selector strings. | ^[\x20\t\r\n\f]+|((?:^|[^\\])(?:\\.)*)[\x20\t\r\n\f]+$ |
\\
\\\
\\\\
dfasdf
.some.thing#hi
#boob\\s
what\8
.blah
| Selector Trim Matcher (jQuery) | 2021-03-20T10:32:02.000Z |
^\s*?((?:virtual\s*|const\s*|friend\s*){0,3})\s*([\w]*?)\s*\w+\s*::\s*([\w]+)\s*(\(.*\))\s*(const)?\s*[{|:] | #include <iostream>
#include <iomanip>
#include "Time.h"
using namespace std;
Time :: Time(const int h, const int m, const int s)
: hour(h), minute (m), second(s)
{}
virtual const void Time :: setTime(const int h, const int m, const int s)
{
hour = h;
minute = m;
second = s;
}
std::string Time :: print() const
{
cout << setw(2) << setfill('0') << hour << ":"
<< setw(2) << setfill('0') << minute << ":"
<< setw(2) << setfill('0') << second << "\n";
}
bool Time :: equals(const Time &otherTime)
{
if(hour == otherTime.hour
&& minute == otherTime.minute
&& second == otherTime.second)
return true;
else
return false;
} | .cpp method matcher | 2017-11-19T04:06:56.000Z |
|
font-family\s*:\s*([^;\n]+)[;\n] | exports = module.exports = require("../../node_modules/css-loader/lib/css-base.js")(undefined);
// imports
// module
exports.push([module.id, "\n.korean {\n font-family: '\\D55C\\AE00 SS \\D55C\\AE00';\n}\n\n.japaness {\n font-family: '\\306F\\3093\\306A\\308A SD \\660E\\671D';\n}\n\n.chiness {\n font-family: \"\\5B59\\65B0\\6052 SD \\4E56\\4E56\\4F53\";\n}\n\n.mixed {\n font-family: '\\D55C\\AE00 SS \\D55C\\AE00', '\\306F\\3093\\306A\\308A SD \\660E\\671D', FONT1, 'FONT2', 'FONT With Space' \"\\5B59\\65B0\\6052\\4E56\\4E56\\4F53\";\n}", ""]);
// exports | font-family matches | 2017-04-01T03:29:25.000Z |
|
Starts with either: +31, +31(0), (+31)(0), 0031, 0 followed by 10 digits, '-' or space
First part:
+311234567890
+31(0)1234567890
(+31)(0)1234567890
00311234567890
01234567890
Second part:
0031123456789-
003112345 789-
0031-23456780-
| (^\+[0-9]{2}|^\+[0-9]{2}\(0\)|^\(\+[0-9]{2}\)\(0\)|^00[0-9]{2}|^0)([0-9]{9}$|[0-9\-\s]{10}$) | Starts with either: +31, +31(0), (+31)(0), 0031, 0 followed by 10 digits, '-' or space
First part:
+311234567890
+31(0)1234567890
(+31)(0)1234567890
00311234567890
01234567890
Second part:
0031123456789-
003112345 789-
0031-23456780-
| Phonenumber | 2018-10-09T09:51:52.000Z |
(?(DEFINE)(?<label>([[:alpha:]]([[:alnum:]-]{0,61}[[:alnum:]])?)|\*))(?=^.{1,255}$)(?:^(?P<name>(?P>label))\.(?P<zone>(?:(?P>label)\.?)*)$) | google.com
mail.google.com
test-.google.com
*.google.com
google.com.
101.com | Split DNS name and DNS zone | 2019-10-08T15:40:24.000Z |
|
Detect US zipcode | (?:^|\b)(\d{5}-\d{4}|\d{5})\b | 12345
43245 90210
sdf 11111 asf
1
12
123
1234
123456
12345-12345 | Zipcodes | 2018-09-19T17:00:58.000Z |
read in gap list file with date day range between 17-21 | ^CDPHP_SPRPT_GapList_[0-9]{4}(1[0-2]|0[1-9])(2[0-1]|1[01][0-1]|1[7-9])_[0-9]{9}.txt | NY_Community_CLM_DIAG_08282019.txt
NY_Community_CLM_DIAG_07152019.txt
CDPHP_SPRPT_GapList_20191028_619675879.txt
CDPHP_SPRPT_GapList_20191021_617641986.txt
CDPHP_SPRPT_GapList_20191017_616743586.txt
CDPHP_SPRPT_GapList_20191040_619675879.txt
CDPHP_SPRPT_GapList_20191018_616743586.txt
CDPHP_SPRPT_GapList_20191019_616743586.txt
CDPHP_SPRPT_GapList_20191020_616743586.txt
CDPHP_SPRPT_GapList_20191016_616743586.txt
CDPHP_SPRPT_GapList_20191015_616743586.txt
CDPHP_SPRPT_GapList_20191009_616743586.txt
CDPHP_SPRPT_GapList_20200121_616743586.txt | GapList | 2019-10-29T15:43:30.000Z |
[x0100:xFFFF] | Fazıl Say - 2008 - 1001 Nights In The Harem\01 01. Allegro [Violin Concerto ('1001' Nights in the Harem) - live.mp3 | Show Unicodes Above 0x0100 | 2020-03-29T08:19:57.000Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.