wipo-gbd-transformation 1.1.81__py3-none-any.whl → 1.1.84__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of wipo-gbd-transformation might be problematic. Click here for more details.
- gbdtransformation/brands/catm/filters.py +12 -3
- gbdtransformation/brands/catm/template.yml +7 -0
- gbdtransformation/brands/detm/filters.py +22 -5
- gbdtransformation/brands/jotm/tests/test.xml +84 -0
- gbdtransformation/brands/kwtm/tests/test.xml +84 -0
- gbdtransformation/brands/latm/tests/test.xml +112 -0
- gbdtransformation/brands/mgtm/tests/test.xml +107 -0
- gbdtransformation/brands/omtm/tests/test.xml +84 -0
- gbdtransformation/brands/sdtm/tests/test.xml +84 -0
- gbdtransformation/brands/smtm/tests/test.xml +133 -0
- gbdtransformation/brands/thtm/tests/test.xml +84 -0
- gbdtransformation/brands/totm/tests/test.xml +84 -0
- gbdtransformation/brands/ustm/__init__.py +29 -19
- gbdtransformation/brands/ustm/filters.py +22 -14
- gbdtransformation/brands/ustm/template.yml +8 -0
- gbdtransformation/brands/wstm/tests/test.xml +132 -0
- gbdtransformation/brands/xxxx/template.yml +1 -1
- {wipo_gbd_transformation-1.1.81.dist-info → wipo_gbd_transformation-1.1.84.dist-info}/METADATA +1 -1
- {wipo_gbd_transformation-1.1.81.dist-info → wipo_gbd_transformation-1.1.84.dist-info}/RECORD +23 -23
- gbdtransformation/brands/jotm/tests/test.xml.gz +0 -0
- gbdtransformation/brands/kwtm/tests/test.xml.gz +0 -0
- gbdtransformation/brands/latm/tests/test.xml.gz +0 -0
- gbdtransformation/brands/mgtm/tests/test.xml.gz +0 -0
- gbdtransformation/brands/omtm/tests/test.xml.gz +0 -0
- gbdtransformation/brands/sdtm/tests/test.xml.gz +0 -0
- gbdtransformation/brands/smtm/tests/test.xml.gz +0 -0
- gbdtransformation/brands/thtm/tests/test.xml.gz +0 -0
- gbdtransformation/brands/totm/tests/test.xml.gz +0 -0
- gbdtransformation/brands/wstm/tests/test.xml.gz +0 -0
- {wipo_gbd_transformation-1.1.81.dist-info → wipo_gbd_transformation-1.1.84.dist-info}/LICENSE.md +0 -0
- {wipo_gbd_transformation-1.1.81.dist-info → wipo_gbd_transformation-1.1.84.dist-info}/WHEEL +0 -0
- {wipo_gbd_transformation-1.1.81.dist-info → wipo_gbd_transformation-1.1.84.dist-info}/entry_points.txt +0 -0
- {wipo_gbd_transformation-1.1.81.dist-info → wipo_gbd_transformation-1.1.84.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# standard gbd definitions
|
|
2
2
|
from gbdtransformation.brands import features as std_features
|
|
3
3
|
from gbdtransformation.brands.filters import st13 as std_st13
|
|
4
|
-
|
|
4
|
+
import re
|
|
5
5
|
from datetime import datetime
|
|
6
6
|
# namespaces defined in XML and to be ignored in procecssing
|
|
7
7
|
ignore_namespace = ['http://www.cipo.ic.gc.ca/standards/XMLSchema/ST96/Trademark',
|
|
@@ -13,7 +13,6 @@ ignore_namespace = ['http://www.cipo.ic.gc.ca/standards/XMLSchema/ST96/Trademark
|
|
|
13
13
|
'http://www.w3.org/1998/Math/MathML',
|
|
14
14
|
'http://www.w3.org/2001/XMLSchema-instance']
|
|
15
15
|
|
|
16
|
-
|
|
17
16
|
# -------------------------------------------------------------
|
|
18
17
|
# data translation helpers:
|
|
19
18
|
# translate values from office interpretation to gbd equivalent
|
|
@@ -34,7 +33,17 @@ def to_appnum(appnum):
|
|
|
34
33
|
def neutralize_version(appnum):
|
|
35
34
|
if appnum.endswith('-00'):
|
|
36
35
|
return appnum.replace('-00', '')
|
|
37
|
-
else:
|
|
36
|
+
else:
|
|
37
|
+
return appnum
|
|
38
|
+
|
|
39
|
+
def has_extension_version(name):
|
|
40
|
+
if name is None:
|
|
41
|
+
return False
|
|
42
|
+
name = name.replace(".png", "")
|
|
43
|
+
if re.search(r'\-\d\d$', name):
|
|
44
|
+
return True
|
|
45
|
+
else:
|
|
46
|
+
return False
|
|
38
47
|
|
|
39
48
|
def get_type_kind(type_raw):
|
|
40
49
|
|
|
@@ -65,8 +65,14 @@ wordMarkSpecification:
|
|
|
65
65
|
{% endcall %}
|
|
66
66
|
markTransliteration: {{ wspec.MarkTransliteration }}
|
|
67
67
|
|
|
68
|
+
# We might have several images, but only one is the protected logo. It can be identified as the only MarkImage entry
|
|
69
|
+
# with MarkImageClassification and MarkImageColourClaimedText, or based on the file name pattern, e.g.:
|
|
70
|
+
# 2382009.png versus 2382009-01.png, 2382009-02.png, etc. for the additional images.
|
|
71
|
+
# Additional images seem always examples of usage of the main logo on actual products.
|
|
68
72
|
markImageDetails:
|
|
69
73
|
{% call(img) match('MarkRepresentation.MarkReproduction.MarkImageBag.MarkImage', trademark) %}
|
|
74
|
+
{% set has_extension = img.FileName | has_extension_version %}
|
|
75
|
+
{% if not has_extension %}
|
|
70
76
|
- name: {{ img.FileName }}
|
|
71
77
|
colourIndicator: {{ img.MarkImageColourClaimedText.__value | get_true_or_false }}
|
|
72
78
|
colourClaimed:
|
|
@@ -82,6 +88,7 @@ markImageDetails:
|
|
|
82
88
|
- {{ class | parse_viena }}
|
|
83
89
|
{% endcall %}
|
|
84
90
|
{% endcall %}
|
|
91
|
+
{% endif %}
|
|
85
92
|
{% endcall %}
|
|
86
93
|
|
|
87
94
|
markSoundDetails:
|
|
@@ -14,7 +14,8 @@ def translate_status(trademark):
|
|
|
14
14
|
|
|
15
15
|
if trademark.STATUSAPPLICATION == 'true': return ('Pending', 'Application filed')
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
return 'Unknown'
|
|
18
|
+
#raise Exception('Could not deduce status')
|
|
18
19
|
|
|
19
20
|
def translate_kind(kind):
|
|
20
21
|
if not kind: return ['Individual']
|
|
@@ -23,7 +24,8 @@ def translate_kind(kind):
|
|
|
23
24
|
if kind == 'kollektiv': return ['Collective']
|
|
24
25
|
if kind == 'gewaehrleistung': return ['Certificate']
|
|
25
26
|
|
|
26
|
-
|
|
27
|
+
return 'Other'
|
|
28
|
+
#raise Exception('kind "%s" is not mapped' % kind)
|
|
27
29
|
|
|
28
30
|
def translate_feature(feature):
|
|
29
31
|
if not feature: return 'Undefined'
|
|
@@ -42,15 +44,30 @@ def translate_feature(feature):
|
|
|
42
44
|
if feature.WORD: return 'Word'
|
|
43
45
|
if feature.WORDIMAGE: return 'Figurative'
|
|
44
46
|
|
|
45
|
-
|
|
46
|
-
raise Exception('Feature could not be deduced')
|
|
47
|
-
|
|
47
|
+
return 'Unknown'
|
|
48
|
+
#raise Exception('Feature could not be deduced')
|
|
48
49
|
|
|
49
50
|
# if Registered or Expired =>
|
|
50
51
|
# if RENEWALDATE: 10y after RENEWALDATE and endofmonth of FILDATE
|
|
51
52
|
# else: 10y and endofmonth of FILDATE
|
|
53
|
+
|
|
54
|
+
# PL: Missing cancelation
|
|
55
|
+
|
|
52
56
|
def get_expiry_date(trademark, gbd_status):
|
|
53
57
|
if gbd_status in ['Registered', 'Expired']:
|
|
58
|
+
|
|
59
|
+
if trademark.STATUSCANCELLED == "true":
|
|
60
|
+
# expiry date is cancelation date, which in this case is the same as the PROCDATE
|
|
61
|
+
pdate = trademark.PROCDATE
|
|
62
|
+
if pdate:
|
|
63
|
+
try:
|
|
64
|
+
pdate = datetime.strptime(pdate.strip(), '%Y-%m-%dT%H:%M:%S')
|
|
65
|
+
pdate = pdate.date()
|
|
66
|
+
except:
|
|
67
|
+
pdate = None
|
|
68
|
+
if pdate:
|
|
69
|
+
return pdate
|
|
70
|
+
|
|
54
71
|
rdate = trademark.RENEWALDATE
|
|
55
72
|
fdate = trademark.FILDATE
|
|
56
73
|
edate = datetime.strptime(rdate if rdate else fdate, '%Y-%m-%d')
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
|
|
3
|
+
<Transaction xmlns="http://www.wipo.int/standards/XMLSchema/trademarks" xmlns:wo="http://www.wipo.int/standards/XMLSchema/wo-trademarks">
|
|
4
|
+
<TradeMarkTransactionBody>
|
|
5
|
+
<TransactionContentDetails>
|
|
6
|
+
<TransactionIdentifier>M</TransactionIdentifier>
|
|
7
|
+
<TransactionCode>Trademark</TransactionCode>
|
|
8
|
+
<TransactionSubCode>Mark</TransactionSubCode>
|
|
9
|
+
<TransactionData>
|
|
10
|
+
<TradeMarkApplication>
|
|
11
|
+
<TradeMarkDetails>
|
|
12
|
+
<TradeMark>
|
|
13
|
+
<RegistrationOfficeCode>TO</RegistrationOfficeCode>
|
|
14
|
+
<ApplicationNumber>2017/3420</ApplicationNumber>
|
|
15
|
+
<ApplicationDate>2017-07-26</ApplicationDate>
|
|
16
|
+
<ApplicationLanguageCode>en</ApplicationLanguageCode>
|
|
17
|
+
<MarkCurrentStatusDate>2017-09-04</MarkCurrentStatusDate>
|
|
18
|
+
<KindMark>Individual</KindMark>
|
|
19
|
+
<MarkImageDetails>
|
|
20
|
+
<MarkImage/>
|
|
21
|
+
</MarkImageDetails>
|
|
22
|
+
<GoodsServicesDetails>
|
|
23
|
+
<GoodsServices>
|
|
24
|
+
<ClassDescriptionDetails>
|
|
25
|
+
<ClassDescription>
|
|
26
|
+
<ClassNumber>25</ClassNumber>
|
|
27
|
+
<GoodsServicesDescription languageCode="en">Slippers</GoodsServicesDescription>
|
|
28
|
+
</ClassDescription>
|
|
29
|
+
</ClassDescriptionDetails>
|
|
30
|
+
</GoodsServices>
|
|
31
|
+
</GoodsServicesDetails>
|
|
32
|
+
<PublicationDetails>
|
|
33
|
+
<Publication>
|
|
34
|
+
<PublicationDate>2017-11-30</PublicationDate>
|
|
35
|
+
</Publication>
|
|
36
|
+
</PublicationDetails>
|
|
37
|
+
<ApplicantDetails>
|
|
38
|
+
<Applicant>
|
|
39
|
+
<ApplicantAddressBook>
|
|
40
|
+
<FormattedNameAddress>
|
|
41
|
+
<Name>
|
|
42
|
+
<FreeFormatName>
|
|
43
|
+
<FreeFormatNameDetails>
|
|
44
|
+
<FreeFormatNameLine languageCode="en">Lei Signs</FreeFormatNameLine>
|
|
45
|
+
</FreeFormatNameDetails>
|
|
46
|
+
</FreeFormatName>
|
|
47
|
+
</Name>
|
|
48
|
+
<Address>
|
|
49
|
+
<AddressCountryCode>TO</AddressCountryCode>
|
|
50
|
+
<FreeFormatAddress>
|
|
51
|
+
<FreeFormatAddressLine>Fund Management, Nuku'alofa</FreeFormatAddressLine>
|
|
52
|
+
</FreeFormatAddress>
|
|
53
|
+
</Address>
|
|
54
|
+
</FormattedNameAddress>
|
|
55
|
+
</ApplicantAddressBook>
|
|
56
|
+
</Applicant>
|
|
57
|
+
</ApplicantDetails>
|
|
58
|
+
<wo:WordMarkSpecification>
|
|
59
|
+
<wo:MarkVerbalElementText languageCode="en">TOKO</wo:MarkVerbalElementText>
|
|
60
|
+
</wo:WordMarkSpecification>
|
|
61
|
+
<wo:MarkEventDetails>
|
|
62
|
+
<wo:MarkEvent>
|
|
63
|
+
<wo:MarkEventDate>2017-07-26</wo:MarkEventDate>
|
|
64
|
+
<wo:MarkEventCode>Filed</wo:MarkEventCode>
|
|
65
|
+
</wo:MarkEvent>
|
|
66
|
+
<wo:MarkEvent>
|
|
67
|
+
<wo:MarkEventDate>2017-11-30</wo:MarkEventDate>
|
|
68
|
+
<wo:MarkEventCode>Published</wo:MarkEventCode>
|
|
69
|
+
</wo:MarkEvent>
|
|
70
|
+
<wo:MarkEvent>
|
|
71
|
+
<wo:MarkEventDate>2017-09-04</wo:MarkEventDate>
|
|
72
|
+
<wo:MarkEventCode>Examined</wo:MarkEventCode>
|
|
73
|
+
<wo:OfficeSpecificMarkEventCode>1044</wo:OfficeSpecificMarkEventCode>
|
|
74
|
+
<wo:OfficeSpecificMarkEventDescription languageCode="en">To Issue Publication Notice</wo:OfficeSpecificMarkEventDescription>
|
|
75
|
+
</wo:MarkEvent>
|
|
76
|
+
</wo:MarkEventDetails>
|
|
77
|
+
<wo:MarkCurrentStatusCode>Examined</wo:MarkCurrentStatusCode>
|
|
78
|
+
</TradeMark>
|
|
79
|
+
</TradeMarkDetails>
|
|
80
|
+
</TradeMarkApplication>
|
|
81
|
+
</TransactionData>
|
|
82
|
+
</TransactionContentDetails>
|
|
83
|
+
</TradeMarkTransactionBody>
|
|
84
|
+
</Transaction>
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
|
|
3
|
+
<Transaction xmlns="http://www.wipo.int/standards/XMLSchema/trademarks" xmlns:wo="http://www.wipo.int/standards/XMLSchema/wo-trademarks">
|
|
4
|
+
<TradeMarkTransactionBody>
|
|
5
|
+
<TransactionContentDetails>
|
|
6
|
+
<TransactionIdentifier>M</TransactionIdentifier>
|
|
7
|
+
<TransactionCode>Trademark</TransactionCode>
|
|
8
|
+
<TransactionSubCode>Mark</TransactionSubCode>
|
|
9
|
+
<TransactionData>
|
|
10
|
+
<TradeMarkApplication>
|
|
11
|
+
<TradeMarkDetails>
|
|
12
|
+
<TradeMark>
|
|
13
|
+
<RegistrationOfficeCode>TO</RegistrationOfficeCode>
|
|
14
|
+
<ApplicationNumber>2017/3420</ApplicationNumber>
|
|
15
|
+
<ApplicationDate>2017-07-26</ApplicationDate>
|
|
16
|
+
<ApplicationLanguageCode>en</ApplicationLanguageCode>
|
|
17
|
+
<MarkCurrentStatusDate>2017-09-04</MarkCurrentStatusDate>
|
|
18
|
+
<KindMark>Individual</KindMark>
|
|
19
|
+
<MarkImageDetails>
|
|
20
|
+
<MarkImage/>
|
|
21
|
+
</MarkImageDetails>
|
|
22
|
+
<GoodsServicesDetails>
|
|
23
|
+
<GoodsServices>
|
|
24
|
+
<ClassDescriptionDetails>
|
|
25
|
+
<ClassDescription>
|
|
26
|
+
<ClassNumber>25</ClassNumber>
|
|
27
|
+
<GoodsServicesDescription languageCode="en">Slippers</GoodsServicesDescription>
|
|
28
|
+
</ClassDescription>
|
|
29
|
+
</ClassDescriptionDetails>
|
|
30
|
+
</GoodsServices>
|
|
31
|
+
</GoodsServicesDetails>
|
|
32
|
+
<PublicationDetails>
|
|
33
|
+
<Publication>
|
|
34
|
+
<PublicationDate>2017-11-30</PublicationDate>
|
|
35
|
+
</Publication>
|
|
36
|
+
</PublicationDetails>
|
|
37
|
+
<ApplicantDetails>
|
|
38
|
+
<Applicant>
|
|
39
|
+
<ApplicantAddressBook>
|
|
40
|
+
<FormattedNameAddress>
|
|
41
|
+
<Name>
|
|
42
|
+
<FreeFormatName>
|
|
43
|
+
<FreeFormatNameDetails>
|
|
44
|
+
<FreeFormatNameLine languageCode="en">Lei Signs</FreeFormatNameLine>
|
|
45
|
+
</FreeFormatNameDetails>
|
|
46
|
+
</FreeFormatName>
|
|
47
|
+
</Name>
|
|
48
|
+
<Address>
|
|
49
|
+
<AddressCountryCode>TO</AddressCountryCode>
|
|
50
|
+
<FreeFormatAddress>
|
|
51
|
+
<FreeFormatAddressLine>Fund Management, Nuku'alofa</FreeFormatAddressLine>
|
|
52
|
+
</FreeFormatAddress>
|
|
53
|
+
</Address>
|
|
54
|
+
</FormattedNameAddress>
|
|
55
|
+
</ApplicantAddressBook>
|
|
56
|
+
</Applicant>
|
|
57
|
+
</ApplicantDetails>
|
|
58
|
+
<wo:WordMarkSpecification>
|
|
59
|
+
<wo:MarkVerbalElementText languageCode="en">TOKO</wo:MarkVerbalElementText>
|
|
60
|
+
</wo:WordMarkSpecification>
|
|
61
|
+
<wo:MarkEventDetails>
|
|
62
|
+
<wo:MarkEvent>
|
|
63
|
+
<wo:MarkEventDate>2017-07-26</wo:MarkEventDate>
|
|
64
|
+
<wo:MarkEventCode>Filed</wo:MarkEventCode>
|
|
65
|
+
</wo:MarkEvent>
|
|
66
|
+
<wo:MarkEvent>
|
|
67
|
+
<wo:MarkEventDate>2017-11-30</wo:MarkEventDate>
|
|
68
|
+
<wo:MarkEventCode>Published</wo:MarkEventCode>
|
|
69
|
+
</wo:MarkEvent>
|
|
70
|
+
<wo:MarkEvent>
|
|
71
|
+
<wo:MarkEventDate>2017-09-04</wo:MarkEventDate>
|
|
72
|
+
<wo:MarkEventCode>Examined</wo:MarkEventCode>
|
|
73
|
+
<wo:OfficeSpecificMarkEventCode>1044</wo:OfficeSpecificMarkEventCode>
|
|
74
|
+
<wo:OfficeSpecificMarkEventDescription languageCode="en">To Issue Publication Notice</wo:OfficeSpecificMarkEventDescription>
|
|
75
|
+
</wo:MarkEvent>
|
|
76
|
+
</wo:MarkEventDetails>
|
|
77
|
+
<wo:MarkCurrentStatusCode>Examined</wo:MarkCurrentStatusCode>
|
|
78
|
+
</TradeMark>
|
|
79
|
+
</TradeMarkDetails>
|
|
80
|
+
</TradeMarkApplication>
|
|
81
|
+
</TransactionData>
|
|
82
|
+
</TransactionContentDetails>
|
|
83
|
+
</TradeMarkTransactionBody>
|
|
84
|
+
</Transaction>
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
|
|
3
|
+
<Transaction xmlns="http://www.wipo.int/standards/XMLSchema/trademarks" xmlns:wo="http://www.wipo.int/standards/XMLSchema/wo-trademarks">
|
|
4
|
+
<TradeMarkTransactionBody>
|
|
5
|
+
<TransactionContentDetails>
|
|
6
|
+
<TransactionIdentifier>T</TransactionIdentifier>
|
|
7
|
+
<TransactionCode>Trademark</TransactionCode>
|
|
8
|
+
<TransactionSubCode>Trademark</TransactionSubCode>
|
|
9
|
+
<TransactionData>
|
|
10
|
+
<TradeMarkApplication>
|
|
11
|
+
<TradeMarkDetails>
|
|
12
|
+
<TradeMark>
|
|
13
|
+
<RegistrationOfficeCode>LA</RegistrationOfficeCode>
|
|
14
|
+
<ApplicationNumber>37978</ApplicationNumber>
|
|
15
|
+
<ApplicationDate>2016-08-17</ApplicationDate>
|
|
16
|
+
<RegistrationNumber>38524</RegistrationNumber>
|
|
17
|
+
<RegistrationDate>2017-08-15</RegistrationDate>
|
|
18
|
+
<ApplicationLanguageCode>la</ApplicationLanguageCode>
|
|
19
|
+
<ExpiryDate>2027-08-15</ExpiryDate>
|
|
20
|
+
<MarkCurrentStatusDate>2017-08-15</MarkCurrentStatusDate>
|
|
21
|
+
<MarkFeature>Word</MarkFeature>
|
|
22
|
+
<MarkImageDetails>
|
|
23
|
+
<MarkImage/>
|
|
24
|
+
</MarkImageDetails>
|
|
25
|
+
<GoodsServicesDetails>
|
|
26
|
+
<GoodsServices>
|
|
27
|
+
<ClassDescriptionDetails>
|
|
28
|
+
<ClassDescription>
|
|
29
|
+
<ClassNumber>9</ClassNumber>
|
|
30
|
+
<GoodsServicesDescription languageCode="la">Electric wires; electric cables; telephone wires; fiber cables; cnamclcd wircs.</GoodsServicesDescription>
|
|
31
|
+
</ClassDescription>
|
|
32
|
+
</ClassDescriptionDetails>
|
|
33
|
+
</GoodsServices>
|
|
34
|
+
</GoodsServicesDetails>
|
|
35
|
+
<PublicationDetails>
|
|
36
|
+
<Publication>
|
|
37
|
+
<PublicationIdentifier>37978</PublicationIdentifier>
|
|
38
|
+
<PublicationDate>2017-09-30</PublicationDate>
|
|
39
|
+
</Publication>
|
|
40
|
+
</PublicationDetails>
|
|
41
|
+
<ApplicantDetails>
|
|
42
|
+
<Applicant>
|
|
43
|
+
<ApplicantAddressBook>
|
|
44
|
+
<FormattedNameAddress>
|
|
45
|
+
<Name>
|
|
46
|
+
<FreeFormatName>
|
|
47
|
+
<FreeFormatNameDetails>
|
|
48
|
+
<FreeFormatNameLine languageCode="la">TA YA ELECTRIC WIRE & CABLE CO., LTD.</FreeFormatNameLine>
|
|
49
|
+
</FreeFormatNameDetails>
|
|
50
|
+
</FreeFormatName>
|
|
51
|
+
</Name>
|
|
52
|
+
<Address>
|
|
53
|
+
<AddressCountryCode>TW</AddressCountryCode>
|
|
54
|
+
<FreeFormatAddress>
|
|
55
|
+
<FreeFormatAddressLine>249, Section 2, Chung Shan Road, Guanmiao District, Tainan City, Taiwan, R.O.C.</FreeFormatAddressLine>
|
|
56
|
+
</FreeFormatAddress>
|
|
57
|
+
</Address>
|
|
58
|
+
</FormattedNameAddress>
|
|
59
|
+
</ApplicantAddressBook>
|
|
60
|
+
</Applicant>
|
|
61
|
+
</ApplicantDetails>
|
|
62
|
+
<RepresentativeDetails>
|
|
63
|
+
<Representative>
|
|
64
|
+
<RepresentativeAddressBook>
|
|
65
|
+
<FormattedNameAddress>
|
|
66
|
+
<Name>
|
|
67
|
+
<FreeFormatName>
|
|
68
|
+
<FreeFormatNameDetails>
|
|
69
|
+
<FreeFormatNameLine languageCode="la">LAO TRADEMARK AGENCY (LAO IP AGENCY)</FreeFormatNameLine>
|
|
70
|
+
</FreeFormatNameDetails>
|
|
71
|
+
</FreeFormatName>
|
|
72
|
+
</Name>
|
|
73
|
+
<Address>
|
|
74
|
+
<AddressCountryCode>LA</AddressCountryCode>
|
|
75
|
+
<FreeFormatAddress>
|
|
76
|
+
<FreeFormatAddressLine>LLC Bldg, Nongbone Road, Ban Nongbone, Saysettha District, P.O.BOX 925, Vientiane, LAO P.D.R.</FreeFormatAddressLine>
|
|
77
|
+
</FreeFormatAddress>
|
|
78
|
+
</Address>
|
|
79
|
+
</FormattedNameAddress>
|
|
80
|
+
</RepresentativeAddressBook>
|
|
81
|
+
</Representative>
|
|
82
|
+
</RepresentativeDetails>
|
|
83
|
+
<wo:WordMarkSpecification>
|
|
84
|
+
<wo:MarkVerbalElementText languageCode="la">TA YA</wo:MarkVerbalElementText>
|
|
85
|
+
</wo:WordMarkSpecification>
|
|
86
|
+
<wo:MarkEventDetails>
|
|
87
|
+
<wo:MarkEvent>
|
|
88
|
+
<wo:MarkEventDate>2016-08-17</wo:MarkEventDate>
|
|
89
|
+
<wo:MarkEventCode>Filed</wo:MarkEventCode>
|
|
90
|
+
<wo:OfficeSpecificMarkEventName>Filing</wo:OfficeSpecificMarkEventName>
|
|
91
|
+
</wo:MarkEvent>
|
|
92
|
+
<wo:MarkEvent>
|
|
93
|
+
<wo:MarkEventDate>2017-08-15</wo:MarkEventDate>
|
|
94
|
+
<wo:MarkEventCode>Registered</wo:MarkEventCode>
|
|
95
|
+
<wo:OfficeSpecificMarkEventName>Registration</wo:OfficeSpecificMarkEventName>
|
|
96
|
+
<wo:OfficeSpecificMarkEventCode>016</wo:OfficeSpecificMarkEventCode>
|
|
97
|
+
<wo:OfficeSpecificMarkEventDescription languageCode="la">(TM) Registered</wo:OfficeSpecificMarkEventDescription>
|
|
98
|
+
</wo:MarkEvent>
|
|
99
|
+
<wo:MarkEvent>
|
|
100
|
+
<wo:MarkEventDate>2017-09-30</wo:MarkEventDate>
|
|
101
|
+
<wo:MarkEventCode>Published</wo:MarkEventCode>
|
|
102
|
+
<wo:OfficeSpecificMarkEventName>Publication</wo:OfficeSpecificMarkEventName>
|
|
103
|
+
</wo:MarkEvent>
|
|
104
|
+
</wo:MarkEventDetails>
|
|
105
|
+
<wo:MarkCurrentStatusCode>Registered</wo:MarkCurrentStatusCode>
|
|
106
|
+
</TradeMark>
|
|
107
|
+
</TradeMarkDetails>
|
|
108
|
+
</TradeMarkApplication>
|
|
109
|
+
</TransactionData>
|
|
110
|
+
</TransactionContentDetails>
|
|
111
|
+
</TradeMarkTransactionBody>
|
|
112
|
+
</Transaction>
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
|
|
3
|
+
<Transaction xmlns="http://www.wipo.int/standards/XMLSchema/trademarks" xmlns:wo="http://www.wipo.int/standards/XMLSchema/wo-trademarks">
|
|
4
|
+
<TradeMarkTransactionBody>
|
|
5
|
+
<TransactionContentDetails>
|
|
6
|
+
<TransactionIdentifier>M</TransactionIdentifier>
|
|
7
|
+
<TransactionCode>Marques Nationales</TransactionCode>
|
|
8
|
+
<TransactionSubCode>Marque Nationale Individuelle</TransactionSubCode>
|
|
9
|
+
<TransactionData>
|
|
10
|
+
<TradeMarkApplication>
|
|
11
|
+
<TradeMarkDetails>
|
|
12
|
+
<TradeMark>
|
|
13
|
+
<RegistrationOfficeCode>MG</RegistrationOfficeCode>
|
|
14
|
+
<ApplicationNumber>MG/M/2018/516</ApplicationNumber>
|
|
15
|
+
<ApplicationDate>2018-07-04</ApplicationDate>
|
|
16
|
+
<RegistrationNumber>19695</RegistrationNumber>
|
|
17
|
+
<RegistrationDate>2019-01-17</RegistrationDate>
|
|
18
|
+
<ApplicationLanguageCode>fr</ApplicationLanguageCode>
|
|
19
|
+
<ExpiryDate>2028-07-04</ExpiryDate>
|
|
20
|
+
<MarkCurrentStatusDate>2019-01-17</MarkCurrentStatusDate>
|
|
21
|
+
<MarkImageDetails>
|
|
22
|
+
<MarkImage>
|
|
23
|
+
<MarkImageFilename>ATTACHMENT/logo</MarkImageFilename>
|
|
24
|
+
<MarkImageFileFormat>JPEG</MarkImageFileFormat>
|
|
25
|
+
<MarkImageCategory>
|
|
26
|
+
<CategoryKind>Vienna</CategoryKind>
|
|
27
|
+
<CategoryVersion>7</CategoryVersion>
|
|
28
|
+
<CategoryCodeDetails>
|
|
29
|
+
<CategoryCode>03.11.10</CategoryCode>
|
|
30
|
+
<CategoryCode>27.05.01</CategoryCode>
|
|
31
|
+
<CategoryCode>27.05.08</CategoryCode>
|
|
32
|
+
</CategoryCodeDetails>
|
|
33
|
+
</MarkImageCategory>
|
|
34
|
+
</MarkImage>
|
|
35
|
+
</MarkImageDetails>
|
|
36
|
+
<GoodsServicesDetails>
|
|
37
|
+
<GoodsServices>
|
|
38
|
+
<ClassDescriptionDetails>
|
|
39
|
+
<ClassDescription>
|
|
40
|
+
<ClassNumber>14</ClassNumber>
|
|
41
|
+
<GoodsServicesDescription languageCode="fr">Collier, Bracelets, Breloques pour la bijouteries, boucles d'oreilles, boites à bijoux.</GoodsServicesDescription>
|
|
42
|
+
</ClassDescription>
|
|
43
|
+
<ClassDescription>
|
|
44
|
+
<ClassNumber>18</ClassNumber>
|
|
45
|
+
<GoodsServicesDescription languageCode="fr">sacs à mains, sacs de plages, sacs normales, porte-feuilles, sacs des voyages; valises ;pochettes pour documents, sacs à dos.</GoodsServicesDescription>
|
|
46
|
+
</ClassDescription>
|
|
47
|
+
<ClassDescription>
|
|
48
|
+
<ClassNumber>21</ClassNumber>
|
|
49
|
+
<GoodsServicesDescription languageCode="fr">boites pour la distribution de serviettes en papiers; sous verres en bambou; corbeilles à pain pour usage ménagères;plateaux à usage domestiques;corbeilles à usage ménagères, dessous de plats;ustensiles de cuisines;sets de tables;ni en papier, ni en matières textiles.</GoodsServicesDescription>
|
|
50
|
+
</ClassDescription>
|
|
51
|
+
<ClassDescription>
|
|
52
|
+
<ClassNumber>24</ClassNumber>
|
|
53
|
+
<GoodsServicesDescription languageCode="fr">chemins de tables non en papier, sets de tables en matières textiles ; Housses d'oreiller ; Couverture de lits ; serviettes de tables en matières textiles ; Housses pour coussins ; tapis des tables non en papier.</GoodsServicesDescription>
|
|
54
|
+
</ClassDescription>
|
|
55
|
+
<ClassDescription>
|
|
56
|
+
<ClassNumber>25</ClassNumber>
|
|
57
|
+
<GoodsServicesDescription languageCode="fr">Ponchos;Sarongs;Jupes;paréo;Pantalons, Foulards;Serviettes de plages;cache nez;chapeaux;Ceintures.</GoodsServicesDescription>
|
|
58
|
+
</ClassDescription>
|
|
59
|
+
</ClassDescriptionDetails>
|
|
60
|
+
</GoodsServices>
|
|
61
|
+
</GoodsServicesDetails>
|
|
62
|
+
<ApplicantDetails>
|
|
63
|
+
<Applicant>
|
|
64
|
+
<ApplicantAddressBook>
|
|
65
|
+
<FormattedNameAddress>
|
|
66
|
+
<Name>
|
|
67
|
+
<FreeFormatName>
|
|
68
|
+
<FreeFormatNameDetails>
|
|
69
|
+
<FreeFormatNameLine languageCode="fr">RAMIANDRISOA Hery Gedeon</FreeFormatNameLine>
|
|
70
|
+
</FreeFormatNameDetails>
|
|
71
|
+
</FreeFormatName>
|
|
72
|
+
</Name>
|
|
73
|
+
<Address>
|
|
74
|
+
<AddressCountryCode>MG</AddressCountryCode>
|
|
75
|
+
<FreeFormatAddress>
|
|
76
|
+
<FreeFormatAddressLine>Lot III G124 A Bis Ambatolampy Antehiroka</FreeFormatAddressLine>
|
|
77
|
+
</FreeFormatAddress>
|
|
78
|
+
</Address>
|
|
79
|
+
</FormattedNameAddress>
|
|
80
|
+
</ApplicantAddressBook>
|
|
81
|
+
</Applicant>
|
|
82
|
+
</ApplicantDetails>
|
|
83
|
+
<wo:WordMarkSpecification>
|
|
84
|
+
<wo:MarkVerbalElementText languageCode="fr">chicetnic</wo:MarkVerbalElementText>
|
|
85
|
+
</wo:WordMarkSpecification>
|
|
86
|
+
<wo:MarkEventDetails>
|
|
87
|
+
<wo:MarkEvent>
|
|
88
|
+
<wo:MarkEventDate>2018-07-04</wo:MarkEventDate>
|
|
89
|
+
<wo:MarkEventCode>Filed</wo:MarkEventCode>
|
|
90
|
+
<wo:OfficeSpecificMarkEventName>Filing</wo:OfficeSpecificMarkEventName>
|
|
91
|
+
</wo:MarkEvent>
|
|
92
|
+
<wo:MarkEvent>
|
|
93
|
+
<wo:MarkEventDate>2019-01-17</wo:MarkEventDate>
|
|
94
|
+
<wo:MarkEventCode>Registered</wo:MarkEventCode>
|
|
95
|
+
<wo:OfficeSpecificMarkEventName>-</wo:OfficeSpecificMarkEventName>
|
|
96
|
+
<wo:OfficeSpecificMarkEventCode>079</wo:OfficeSpecificMarkEventCode>
|
|
97
|
+
<wo:OfficeSpecificMarkEventDescription languageCode="fr">TM Enregistree</wo:OfficeSpecificMarkEventDescription>
|
|
98
|
+
</wo:MarkEvent>
|
|
99
|
+
</wo:MarkEventDetails>
|
|
100
|
+
<wo:MarkCurrentStatusCode>Registered</wo:MarkCurrentStatusCode>
|
|
101
|
+
</TradeMark>
|
|
102
|
+
</TradeMarkDetails>
|
|
103
|
+
</TradeMarkApplication>
|
|
104
|
+
</TransactionData>
|
|
105
|
+
</TransactionContentDetails>
|
|
106
|
+
</TradeMarkTransactionBody>
|
|
107
|
+
</Transaction>
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
|
|
3
|
+
<Transaction xmlns="http://www.wipo.int/standards/XMLSchema/trademarks" xmlns:wo="http://www.wipo.int/standards/XMLSchema/wo-trademarks">
|
|
4
|
+
<TradeMarkTransactionBody>
|
|
5
|
+
<TransactionContentDetails>
|
|
6
|
+
<TransactionIdentifier>M</TransactionIdentifier>
|
|
7
|
+
<TransactionCode>Trademark</TransactionCode>
|
|
8
|
+
<TransactionSubCode>Mark</TransactionSubCode>
|
|
9
|
+
<TransactionData>
|
|
10
|
+
<TradeMarkApplication>
|
|
11
|
+
<TradeMarkDetails>
|
|
12
|
+
<TradeMark>
|
|
13
|
+
<RegistrationOfficeCode>TO</RegistrationOfficeCode>
|
|
14
|
+
<ApplicationNumber>2017/3420</ApplicationNumber>
|
|
15
|
+
<ApplicationDate>2017-07-26</ApplicationDate>
|
|
16
|
+
<ApplicationLanguageCode>en</ApplicationLanguageCode>
|
|
17
|
+
<MarkCurrentStatusDate>2017-09-04</MarkCurrentStatusDate>
|
|
18
|
+
<KindMark>Individual</KindMark>
|
|
19
|
+
<MarkImageDetails>
|
|
20
|
+
<MarkImage/>
|
|
21
|
+
</MarkImageDetails>
|
|
22
|
+
<GoodsServicesDetails>
|
|
23
|
+
<GoodsServices>
|
|
24
|
+
<ClassDescriptionDetails>
|
|
25
|
+
<ClassDescription>
|
|
26
|
+
<ClassNumber>25</ClassNumber>
|
|
27
|
+
<GoodsServicesDescription languageCode="en">Slippers</GoodsServicesDescription>
|
|
28
|
+
</ClassDescription>
|
|
29
|
+
</ClassDescriptionDetails>
|
|
30
|
+
</GoodsServices>
|
|
31
|
+
</GoodsServicesDetails>
|
|
32
|
+
<PublicationDetails>
|
|
33
|
+
<Publication>
|
|
34
|
+
<PublicationDate>2017-11-30</PublicationDate>
|
|
35
|
+
</Publication>
|
|
36
|
+
</PublicationDetails>
|
|
37
|
+
<ApplicantDetails>
|
|
38
|
+
<Applicant>
|
|
39
|
+
<ApplicantAddressBook>
|
|
40
|
+
<FormattedNameAddress>
|
|
41
|
+
<Name>
|
|
42
|
+
<FreeFormatName>
|
|
43
|
+
<FreeFormatNameDetails>
|
|
44
|
+
<FreeFormatNameLine languageCode="en">Lei Signs</FreeFormatNameLine>
|
|
45
|
+
</FreeFormatNameDetails>
|
|
46
|
+
</FreeFormatName>
|
|
47
|
+
</Name>
|
|
48
|
+
<Address>
|
|
49
|
+
<AddressCountryCode>TO</AddressCountryCode>
|
|
50
|
+
<FreeFormatAddress>
|
|
51
|
+
<FreeFormatAddressLine>Fund Management, Nuku'alofa</FreeFormatAddressLine>
|
|
52
|
+
</FreeFormatAddress>
|
|
53
|
+
</Address>
|
|
54
|
+
</FormattedNameAddress>
|
|
55
|
+
</ApplicantAddressBook>
|
|
56
|
+
</Applicant>
|
|
57
|
+
</ApplicantDetails>
|
|
58
|
+
<wo:WordMarkSpecification>
|
|
59
|
+
<wo:MarkVerbalElementText languageCode="en">TOKO</wo:MarkVerbalElementText>
|
|
60
|
+
</wo:WordMarkSpecification>
|
|
61
|
+
<wo:MarkEventDetails>
|
|
62
|
+
<wo:MarkEvent>
|
|
63
|
+
<wo:MarkEventDate>2017-07-26</wo:MarkEventDate>
|
|
64
|
+
<wo:MarkEventCode>Filed</wo:MarkEventCode>
|
|
65
|
+
</wo:MarkEvent>
|
|
66
|
+
<wo:MarkEvent>
|
|
67
|
+
<wo:MarkEventDate>2017-11-30</wo:MarkEventDate>
|
|
68
|
+
<wo:MarkEventCode>Published</wo:MarkEventCode>
|
|
69
|
+
</wo:MarkEvent>
|
|
70
|
+
<wo:MarkEvent>
|
|
71
|
+
<wo:MarkEventDate>2017-09-04</wo:MarkEventDate>
|
|
72
|
+
<wo:MarkEventCode>Examined</wo:MarkEventCode>
|
|
73
|
+
<wo:OfficeSpecificMarkEventCode>1044</wo:OfficeSpecificMarkEventCode>
|
|
74
|
+
<wo:OfficeSpecificMarkEventDescription languageCode="en">To Issue Publication Notice</wo:OfficeSpecificMarkEventDescription>
|
|
75
|
+
</wo:MarkEvent>
|
|
76
|
+
</wo:MarkEventDetails>
|
|
77
|
+
<wo:MarkCurrentStatusCode>Examined</wo:MarkCurrentStatusCode>
|
|
78
|
+
</TradeMark>
|
|
79
|
+
</TradeMarkDetails>
|
|
80
|
+
</TradeMarkApplication>
|
|
81
|
+
</TransactionData>
|
|
82
|
+
</TransactionContentDetails>
|
|
83
|
+
</TradeMarkTransactionBody>
|
|
84
|
+
</Transaction>
|