wipo-gbd-transformation 1.1.81__py3-none-any.whl → 1.1.82__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/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/wstm/tests/test.xml +132 -0
- {wipo_gbd_transformation-1.1.81.dist-info → wipo_gbd_transformation-1.1.82.dist-info}/METADATA +1 -1
- {wipo_gbd_transformation-1.1.81.dist-info → wipo_gbd_transformation-1.1.82.dist-info}/RECORD +18 -18
- 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.82.dist-info}/LICENSE.md +0 -0
- {wipo_gbd_transformation-1.1.81.dist-info → wipo_gbd_transformation-1.1.82.dist-info}/WHEEL +0 -0
- {wipo_gbd_transformation-1.1.81.dist-info → wipo_gbd_transformation-1.1.82.dist-info}/entry_points.txt +0 -0
- {wipo_gbd_transformation-1.1.81.dist-info → wipo_gbd_transformation-1.1.82.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:
|
|
@@ -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>
|
|
@@ -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,133 @@
|
|
|
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>Marchi Nazionale (Both Name and Logo)</TransactionCode>
|
|
8
|
+
<TransactionSubCode>Marchi Prodotti e Servizi</TransactionSubCode>
|
|
9
|
+
<TransactionData>
|
|
10
|
+
<TradeMarkApplication>
|
|
11
|
+
<TradeMarkDetails>
|
|
12
|
+
<TradeMark>
|
|
13
|
+
<RegistrationOfficeCode>SM</RegistrationOfficeCode>
|
|
14
|
+
<ApplicationNumber>SM/M/2010/000119</ApplicationNumber>
|
|
15
|
+
<ApplicationDate>2010-12-29</ApplicationDate>
|
|
16
|
+
<RegistrationNumber>2010000119</RegistrationNumber>
|
|
17
|
+
<RegistrationDate>2012-01-23</RegistrationDate>
|
|
18
|
+
<ApplicationLanguageCode>it</ApplicationLanguageCode>
|
|
19
|
+
<ExpiryDate>2020-12-29</ExpiryDate>
|
|
20
|
+
<MarkCurrentStatusDate>2020-12-29</MarkCurrentStatusDate>
|
|
21
|
+
<MarkFeature>Marchi Nazionale (Both Name and Logo)</MarkFeature>
|
|
22
|
+
<MarkImageDetails>
|
|
23
|
+
<MarkImage>
|
|
24
|
+
<MarkImageFilename>ATTACHMENT/logo</MarkImageFilename>
|
|
25
|
+
<MarkImageFileFormat>JPEG</MarkImageFileFormat>
|
|
26
|
+
</MarkImage>
|
|
27
|
+
</MarkImageDetails>
|
|
28
|
+
<GoodsServicesDetails>
|
|
29
|
+
<GoodsServices>
|
|
30
|
+
<ClassDescriptionDetails>
|
|
31
|
+
<ClassDescription>
|
|
32
|
+
<ClassNumber>9</ClassNumber>
|
|
33
|
+
<GoodsServicesDescription languageCode="it"></GoodsServicesDescription>
|
|
34
|
+
</ClassDescription>
|
|
35
|
+
<ClassDescription>
|
|
36
|
+
<ClassNumber>25</ClassNumber>
|
|
37
|
+
<GoodsServicesDescription languageCode="it"></GoodsServicesDescription>
|
|
38
|
+
</ClassDescription>
|
|
39
|
+
<ClassDescription>
|
|
40
|
+
<ClassNumber>35</ClassNumber>
|
|
41
|
+
<GoodsServicesDescription languageCode="it"></GoodsServicesDescription>
|
|
42
|
+
</ClassDescription>
|
|
43
|
+
<ClassDescription>
|
|
44
|
+
<ClassNumber>38</ClassNumber>
|
|
45
|
+
<GoodsServicesDescription languageCode="it"></GoodsServicesDescription>
|
|
46
|
+
</ClassDescription>
|
|
47
|
+
<ClassDescription>
|
|
48
|
+
<ClassNumber>41</ClassNumber>
|
|
49
|
+
<GoodsServicesDescription languageCode="it"></GoodsServicesDescription>
|
|
50
|
+
</ClassDescription>
|
|
51
|
+
</ClassDescriptionDetails>
|
|
52
|
+
</GoodsServices>
|
|
53
|
+
</GoodsServicesDetails>
|
|
54
|
+
<PublicationDetails>
|
|
55
|
+
<Publication>
|
|
56
|
+
<PublicationIdentifier>SM/M/2010/000119</PublicationIdentifier>
|
|
57
|
+
<PublicationDate>2012-03-05</PublicationDate>
|
|
58
|
+
</Publication>
|
|
59
|
+
<Publication>
|
|
60
|
+
<PublicationIdentifier>SM/M/2010/000119</PublicationIdentifier>
|
|
61
|
+
<PublicationDate>2011-03-07</PublicationDate>
|
|
62
|
+
</Publication>
|
|
63
|
+
</PublicationDetails>
|
|
64
|
+
<ApplicantDetails>
|
|
65
|
+
<Applicant>
|
|
66
|
+
<ApplicantAddressBook>
|
|
67
|
+
<FormattedNameAddress>
|
|
68
|
+
<Name>
|
|
69
|
+
<FreeFormatName>
|
|
70
|
+
<FreeFormatNameDetails>
|
|
71
|
+
<FreeFormatNameLine languageCode="it">SAN MARINO RTV SPA</FreeFormatNameLine>
|
|
72
|
+
</FreeFormatNameDetails>
|
|
73
|
+
</FreeFormatName>
|
|
74
|
+
</Name>
|
|
75
|
+
<Address>
|
|
76
|
+
<AddressCountryCode>SM</AddressCountryCode>
|
|
77
|
+
<FreeFormatAddress>
|
|
78
|
+
<FreeFormatAddressLine>Viale Kennedy, 13 47890 San Marino, , SM</FreeFormatAddressLine>
|
|
79
|
+
</FreeFormatAddress>
|
|
80
|
+
</Address>
|
|
81
|
+
</FormattedNameAddress>
|
|
82
|
+
</ApplicantAddressBook>
|
|
83
|
+
</Applicant>
|
|
84
|
+
</ApplicantDetails>
|
|
85
|
+
<RepresentativeDetails>
|
|
86
|
+
<Representative>
|
|
87
|
+
<RepresentativeAddressBook>
|
|
88
|
+
<FormattedNameAddress>
|
|
89
|
+
<Name>
|
|
90
|
+
<FreeFormatName>
|
|
91
|
+
<FreeFormatNameDetails>
|
|
92
|
+
<FreeFormatNameLine languageCode="it">GEONI LUCA MASSIMO</FreeFormatNameLine>
|
|
93
|
+
</FreeFormatNameDetails>
|
|
94
|
+
</FreeFormatName>
|
|
95
|
+
</Name>
|
|
96
|
+
<Address>
|
|
97
|
+
<AddressCountryCode>IT</AddressCountryCode>
|
|
98
|
+
<FreeFormatAddress>
|
|
99
|
+
<FreeFormatAddressLine>Via 28 Luglio, 218 47893 Borgo Maggiore, , SM</FreeFormatAddressLine>
|
|
100
|
+
</FreeFormatAddress>
|
|
101
|
+
</Address>
|
|
102
|
+
</FormattedNameAddress>
|
|
103
|
+
</RepresentativeAddressBook>
|
|
104
|
+
</Representative>
|
|
105
|
+
</RepresentativeDetails>
|
|
106
|
+
<wo:WordMarkSpecification>
|
|
107
|
+
<wo:MarkVerbalElementText languageCode="it">SAN MARINO CHANNEL ONE</wo:MarkVerbalElementText>
|
|
108
|
+
</wo:WordMarkSpecification>
|
|
109
|
+
<wo:MarkEventDetails>
|
|
110
|
+
<wo:MarkEvent>
|
|
111
|
+
<wo:MarkEventDate>2010-12-29</wo:MarkEventDate>
|
|
112
|
+
<wo:MarkEventCode>Filed</wo:MarkEventCode>
|
|
113
|
+
<wo:OfficeSpecificMarkEventName>Application Filing</wo:OfficeSpecificMarkEventName>
|
|
114
|
+
</wo:MarkEvent>
|
|
115
|
+
<wo:MarkEvent>
|
|
116
|
+
<wo:MarkEventDate>2011-01-25</wo:MarkEventDate>
|
|
117
|
+
<wo:MarkEventCode>Published</wo:MarkEventCode>
|
|
118
|
+
<wo:OfficeSpecificMarkEventName>Marchio Pubblicato</wo:OfficeSpecificMarkEventName>
|
|
119
|
+
</wo:MarkEvent>
|
|
120
|
+
<wo:MarkEvent>
|
|
121
|
+
<wo:MarkEventDate>2012-01-23</wo:MarkEventDate>
|
|
122
|
+
<wo:MarkEventCode>Published</wo:MarkEventCode>
|
|
123
|
+
<wo:OfficeSpecificMarkEventName>Marchio registrazione</wo:OfficeSpecificMarkEventName>
|
|
124
|
+
</wo:MarkEvent>
|
|
125
|
+
</wo:MarkEventDetails>
|
|
126
|
+
<wo:MarkCurrentStatusCode>Registered</wo:MarkCurrentStatusCode>
|
|
127
|
+
</TradeMark>
|
|
128
|
+
</TradeMarkDetails>
|
|
129
|
+
</TradeMarkApplication>
|
|
130
|
+
</TransactionData>
|
|
131
|
+
</TransactionContentDetails>
|
|
132
|
+
</TradeMarkTransactionBody>
|
|
133
|
+
</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,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,132 @@
|
|
|
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></TransactionIdentifier>
|
|
7
|
+
<TransactionCode>Trademark</TransactionCode>
|
|
8
|
+
<TransactionSubCode>Mark-Overseas</TransactionSubCode>
|
|
9
|
+
<TransactionData>
|
|
10
|
+
<TradeMarkApplication>
|
|
11
|
+
<TradeMarkDetails>
|
|
12
|
+
<TradeMark>
|
|
13
|
+
<RegistrationOfficeCode>WS</RegistrationOfficeCode>
|
|
14
|
+
<ApplicationNumber>WS/T/620</ApplicationNumber>
|
|
15
|
+
<ApplicationDate>1973-12-11</ApplicationDate>
|
|
16
|
+
<RegistrationNumber>620</RegistrationNumber>
|
|
17
|
+
<RegistrationDate>1976-04-05</RegistrationDate>
|
|
18
|
+
<ApplicationLanguageCode>en</ApplicationLanguageCode>
|
|
19
|
+
<ExpiryDate>2016-05-08</ExpiryDate>
|
|
20
|
+
<MarkCurrentStatusDate>2020-06-11</MarkCurrentStatusDate>
|
|
21
|
+
<KindMark>Individual</KindMark>
|
|
22
|
+
<MarkImageDetails>
|
|
23
|
+
<MarkImage>
|
|
24
|
+
<MarkImageFilename>ATTACHMENT/logo</MarkImageFilename>
|
|
25
|
+
<MarkImageFileFormat>JPEG</MarkImageFileFormat>
|
|
26
|
+
</MarkImage>
|
|
27
|
+
</MarkImageDetails>
|
|
28
|
+
<GoodsServicesDetails>
|
|
29
|
+
<GoodsServices>
|
|
30
|
+
<ClassDescriptionDetails>
|
|
31
|
+
<ClassDescription>
|
|
32
|
+
<ClassNumber>11</ClassNumber>
|
|
33
|
+
<GoodsServicesDescription languageCode="en">Plumbing fixtures including lavatories, water closets, urinals, bidets, and brass and chromium plated ware used therewith in this class; air conditioning apparatus, refrigerating apparatus</GoodsServicesDescription>
|
|
34
|
+
</ClassDescription>
|
|
35
|
+
</ClassDescriptionDetails>
|
|
36
|
+
</GoodsServices>
|
|
37
|
+
</GoodsServicesDetails>
|
|
38
|
+
<PriorityDetails>
|
|
39
|
+
<Priority>
|
|
40
|
+
<PriorityCountryCode>NZ</PriorityCountryCode>
|
|
41
|
+
<PriorityNumber>84035</PriorityNumber>
|
|
42
|
+
<PriorityDate>1967-05-08</PriorityDate>
|
|
43
|
+
</Priority>
|
|
44
|
+
</PriorityDetails>
|
|
45
|
+
<ApplicantDetails>
|
|
46
|
+
<Applicant>
|
|
47
|
+
<ApplicantAddressBook>
|
|
48
|
+
<FormattedNameAddress>
|
|
49
|
+
<Name>
|
|
50
|
+
<FreeFormatName>
|
|
51
|
+
<FreeFormatNameDetails>
|
|
52
|
+
<FreeFormatNameLine languageCode="en">IDEAL STANDARD INTERNATIONAL BVBA</FreeFormatNameLine>
|
|
53
|
+
</FreeFormatNameDetails>
|
|
54
|
+
</FreeFormatName>
|
|
55
|
+
</Name>
|
|
56
|
+
<Address>
|
|
57
|
+
<AddressCountryCode>-</AddressCountryCode>
|
|
58
|
+
<FreeFormatAddress>
|
|
59
|
+
<FreeFormatAddressLine>1160 Chaussee de Wavre, 1789, Box 15 Brussels</FreeFormatAddressLine>
|
|
60
|
+
</FreeFormatAddress>
|
|
61
|
+
</Address>
|
|
62
|
+
</FormattedNameAddress>
|
|
63
|
+
</ApplicantAddressBook>
|
|
64
|
+
</Applicant>
|
|
65
|
+
</ApplicantDetails>
|
|
66
|
+
<RepresentativeDetails>
|
|
67
|
+
<Representative>
|
|
68
|
+
<RepresentativeAddressBook>
|
|
69
|
+
<FormattedNameAddress>
|
|
70
|
+
<Name>
|
|
71
|
+
<FreeFormatName>
|
|
72
|
+
<FreeFormatNameDetails>
|
|
73
|
+
<FreeFormatNameLine languageCode="en">A J PARK</FreeFormatNameLine>
|
|
74
|
+
</FreeFormatNameDetails>
|
|
75
|
+
</FreeFormatName>
|
|
76
|
+
</Name>
|
|
77
|
+
<Address>
|
|
78
|
+
<AddressCountryCode>NZ</AddressCountryCode>
|
|
79
|
+
<FreeFormatAddress>
|
|
80
|
+
<FreeFormatAddressLine>LEVEL 22, STATE INSURANCE TOWER, 1 WILLIS STREET, WELLINGTON 6011, NEW ZEALAND</FreeFormatAddressLine>
|
|
81
|
+
</FreeFormatAddress>
|
|
82
|
+
</Address>
|
|
83
|
+
</FormattedNameAddress>
|
|
84
|
+
</RepresentativeAddressBook>
|
|
85
|
+
</Representative>
|
|
86
|
+
<Representative>
|
|
87
|
+
<RepresentativeAddressBook>
|
|
88
|
+
<FormattedNameAddress>
|
|
89
|
+
<Name>
|
|
90
|
+
<FreeFormatName>
|
|
91
|
+
<FreeFormatNameDetails>
|
|
92
|
+
<FreeFormatNameLine languageCode="en">STEVENSONS LAWYERS</FreeFormatNameLine>
|
|
93
|
+
</FreeFormatNameDetails>
|
|
94
|
+
</FreeFormatName>
|
|
95
|
+
</Name>
|
|
96
|
+
<Address>
|
|
97
|
+
<AddressCountryCode>WS</AddressCountryCode>
|
|
98
|
+
<FreeFormatAddress>
|
|
99
|
+
<FreeFormatAddressLine>PO BOX 210, APIA, SAMOA</FreeFormatAddressLine>
|
|
100
|
+
</FreeFormatAddress>
|
|
101
|
+
</Address>
|
|
102
|
+
</FormattedNameAddress>
|
|
103
|
+
</RepresentativeAddressBook>
|
|
104
|
+
</Representative>
|
|
105
|
+
</RepresentativeDetails>
|
|
106
|
+
<wo:WordMarkSpecification>
|
|
107
|
+
<wo:MarkVerbalElementText languageCode="en">AMERICAN STANDARD (label)</wo:MarkVerbalElementText>
|
|
108
|
+
</wo:WordMarkSpecification>
|
|
109
|
+
<wo:MarkEventDetails>
|
|
110
|
+
<wo:MarkEvent>
|
|
111
|
+
<wo:MarkEventDate>1973-12-11</wo:MarkEventDate>
|
|
112
|
+
<wo:MarkEventCode>Filed</wo:MarkEventCode>
|
|
113
|
+
</wo:MarkEvent>
|
|
114
|
+
<wo:MarkEvent>
|
|
115
|
+
<wo:MarkEventDate>1976-04-05</wo:MarkEventDate>
|
|
116
|
+
<wo:MarkEventCode>Registered</wo:MarkEventCode>
|
|
117
|
+
</wo:MarkEvent>
|
|
118
|
+
<wo:MarkEvent>
|
|
119
|
+
<wo:MarkEventDate>2020-06-11</wo:MarkEventDate>
|
|
120
|
+
<wo:MarkEventCode>Expired</wo:MarkEventCode>
|
|
121
|
+
<wo:OfficeSpecificMarkEventCode>1018</wo:OfficeSpecificMarkEventCode>
|
|
122
|
+
<wo:OfficeSpecificMarkEventDescription languageCode="en">Expired/Removed</wo:OfficeSpecificMarkEventDescription>
|
|
123
|
+
</wo:MarkEvent>
|
|
124
|
+
</wo:MarkEventDetails>
|
|
125
|
+
<wo:MarkCurrentStatusCode>Expired</wo:MarkCurrentStatusCode>
|
|
126
|
+
</TradeMark>
|
|
127
|
+
</TradeMarkDetails>
|
|
128
|
+
</TradeMarkApplication>
|
|
129
|
+
</TransactionData>
|
|
130
|
+
</TransactionContentDetails>
|
|
131
|
+
</TradeMarkTransactionBody>
|
|
132
|
+
</Transaction>
|
{wipo_gbd_transformation-1.1.81.dist-info → wipo_gbd_transformation-1.1.82.dist-info}/RECORD
RENAMED
|
@@ -66,9 +66,9 @@ gbdtransformation/brands/bztm/schema,sha256=AP0MxQyD0hY4APRh8nxitlxMqJYJB4AaaTJ8
|
|
|
66
66
|
gbdtransformation/brands/bztm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
67
67
|
gbdtransformation/brands/bztm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
68
|
gbdtransformation/brands/catm/__init__.py,sha256=pMtR-N5slJD0QHJU36_dbeWyqoqn4Q0eaMOmfO4Ed_o,270
|
|
69
|
-
gbdtransformation/brands/catm/filters.py,sha256=
|
|
69
|
+
gbdtransformation/brands/catm/filters.py,sha256=A4l_q05OpATyMd5SY0kp3pyRlSxdnmzoaJVIrcKZSK8,9006
|
|
70
70
|
gbdtransformation/brands/catm/schema,sha256=Xace88lwiEefhHkk6Zg12dzVF237nMy06HMISEXaTwk,34762
|
|
71
|
-
gbdtransformation/brands/catm/template.yml,sha256=
|
|
71
|
+
gbdtransformation/brands/catm/template.yml,sha256=t0oiMV8GyGlni2ziJ53LE7rEuAOSNieeFoGdEU27vnk,10411
|
|
72
72
|
gbdtransformation/brands/chtm/__init__.py,sha256=HPYmDCQ41vkuoXSA94CRtqN_pEKDaUhbpXLOBqlaumQ,130
|
|
73
73
|
gbdtransformation/brands/chtm/filters.py,sha256=kSMlYumpaLg53MdPAF5L7bM3ZiNsRfd0BgkPLgDDzQQ,5317
|
|
74
74
|
gbdtransformation/brands/chtm/schema,sha256=f3lVto7Y6O9W7dmhR-4lShQMTVL3tl6bGbw1DZLXuxU,2071
|
|
@@ -193,7 +193,7 @@ gbdtransformation/brands/jotm/filters.py,sha256=LeT8912iJMTWfkYX5jGIff5qzqmUaIL1
|
|
|
193
193
|
gbdtransformation/brands/jotm/schema,sha256=TFrF4FR76cytcbtQkDWxtF74I0tCPRDIvWRFeqaJt6Q,3242
|
|
194
194
|
gbdtransformation/brands/jotm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
195
195
|
gbdtransformation/brands/jotm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
196
|
-
gbdtransformation/brands/jotm/tests/test.xml
|
|
196
|
+
gbdtransformation/brands/jotm/tests/test.xml,sha256=H5uPHRXq1IQc8WCKIISaTK8etM65rNcAmqWVl8c2QtM,3912
|
|
197
197
|
gbdtransformation/brands/jptm/__init__.py,sha256=C-UFjC3k0NYFshEOblEcsA0Ow-lt96jStW2BMTrvBUw,191
|
|
198
198
|
gbdtransformation/brands/jptm/filters.py,sha256=9fjRRJjieVuceu_FrtRY5TIfS8BZzCkdt5Mld4xV3c0,2451
|
|
199
199
|
gbdtransformation/brands/jptm/schema,sha256=NE8d-VRYExkd6gARyA0NS66PHAd5TXtxUKTBNg75f4A,668
|
|
@@ -222,7 +222,7 @@ gbdtransformation/brands/kwtm/filters.py,sha256=BvX5gQSdI9y4mxVUe_IUa5y2B5WysiVj
|
|
|
222
222
|
gbdtransformation/brands/kwtm/schema,sha256=TFrF4FR76cytcbtQkDWxtF74I0tCPRDIvWRFeqaJt6Q,3242
|
|
223
223
|
gbdtransformation/brands/kwtm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
224
224
|
gbdtransformation/brands/kwtm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
225
|
-
gbdtransformation/brands/kwtm/tests/test.xml
|
|
225
|
+
gbdtransformation/brands/kwtm/tests/test.xml,sha256=H5uPHRXq1IQc8WCKIISaTK8etM65rNcAmqWVl8c2QtM,3912
|
|
226
226
|
gbdtransformation/brands/kztm/__init__.py,sha256=1e3_l8k3VmaSerErb462ZmJ1juqi7e8xp-CFrhnJ0VE,8220
|
|
227
227
|
gbdtransformation/brands/kztm/filters.py,sha256=lHDYpWEDNOt5G9i73ENf-oZFYawsmc2JlpJuX8af_Lc,4324
|
|
228
228
|
gbdtransformation/brands/kztm/schema,sha256=SxQzrU4TVRULINmocsJbVzHeOhyz-wOKmGJqIQdasEk,563
|
|
@@ -232,7 +232,7 @@ gbdtransformation/brands/latm/filters.py,sha256=8y22UQHWt9ffbylOt6IgY2evgxog1lFL
|
|
|
232
232
|
gbdtransformation/brands/latm/schema,sha256=TFrF4FR76cytcbtQkDWxtF74I0tCPRDIvWRFeqaJt6Q,3242
|
|
233
233
|
gbdtransformation/brands/latm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
234
234
|
gbdtransformation/brands/latm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
235
|
-
gbdtransformation/brands/latm/tests/test.xml
|
|
235
|
+
gbdtransformation/brands/latm/tests/test.xml,sha256=0RdV-g4Hs8ovvBfT8H6UHEacNWhlCaogpJsA0SE04HQ,5664
|
|
236
236
|
gbdtransformation/brands/lktm/__init__.py,sha256=baI_xh_xUTxJ7igEYW1BUqlUw-Mkn4EJaXzCjedbBP0,79
|
|
237
237
|
gbdtransformation/brands/lktm/filters.py,sha256=dWLFZMmiJDfAt29Pbyh7iHjS_LMGmVM-IBEoc6_LkoY,2483
|
|
238
238
|
gbdtransformation/brands/lktm/schema,sha256=AP0MxQyD0hY4APRh8nxitlxMqJYJB4AaaTJ8y20-XBA,3283
|
|
@@ -260,7 +260,7 @@ gbdtransformation/brands/mgtm/filters.py,sha256=gJba5eDBc8ynL-4xQeiRQaa_TJjREjwZ
|
|
|
260
260
|
gbdtransformation/brands/mgtm/schema,sha256=TFrF4FR76cytcbtQkDWxtF74I0tCPRDIvWRFeqaJt6Q,3242
|
|
261
261
|
gbdtransformation/brands/mgtm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
262
262
|
gbdtransformation/brands/mgtm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
263
|
-
gbdtransformation/brands/mgtm/tests/test.xml
|
|
263
|
+
gbdtransformation/brands/mgtm/tests/test.xml,sha256=NhhJFEks8ns_dnoOzhnwyg-Odpch4Oa470HCR71XFlg,6204
|
|
264
264
|
gbdtransformation/brands/mktm/__init__.py,sha256=NrDjzhc5tIVBIPk6hjul6OiZEvHcamw7DhQGe_6eHkk,128
|
|
265
265
|
gbdtransformation/brands/mktm/filters.py,sha256=flc5Q634IirkfUUSbmV-Xc23vbVDK0zQV_7obp34X-4,1940
|
|
266
266
|
gbdtransformation/brands/mktm/schema,sha256=PqTj_QjUmtKbfRa9rzM4_EEhkKBh-tkEM6OeaNMwGWA,2817
|
|
@@ -313,7 +313,7 @@ gbdtransformation/brands/omtm/filters.py,sha256=drnIHzkYZ498DclgFrI5Urq5eyHcRi54
|
|
|
313
313
|
gbdtransformation/brands/omtm/schema,sha256=TFrF4FR76cytcbtQkDWxtF74I0tCPRDIvWRFeqaJt6Q,3242
|
|
314
314
|
gbdtransformation/brands/omtm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
315
315
|
gbdtransformation/brands/omtm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
316
|
-
gbdtransformation/brands/omtm/tests/test.xml
|
|
316
|
+
gbdtransformation/brands/omtm/tests/test.xml,sha256=H5uPHRXq1IQc8WCKIISaTK8etM65rNcAmqWVl8c2QtM,3912
|
|
317
317
|
gbdtransformation/brands/pgtm/__init__.py,sha256=Dl-9OGINzHIufZ6JBIuAzLzNozQdyZttdWwWw7Pl-RI,83
|
|
318
318
|
gbdtransformation/brands/pgtm/filters.py,sha256=_f1jlWyeUyvlwfbqoS5rHroSfD-OJqbEJv5jF5sG_tY,2173
|
|
319
319
|
gbdtransformation/brands/pgtm/schema,sha256=TFrF4FR76cytcbtQkDWxtF74I0tCPRDIvWRFeqaJt6Q,3242
|
|
@@ -349,7 +349,7 @@ gbdtransformation/brands/sdtm/filters.py,sha256=FK8HavnChqVq0Tyyasn42uvdb8vDAq6D
|
|
|
349
349
|
gbdtransformation/brands/sdtm/schema,sha256=TFrF4FR76cytcbtQkDWxtF74I0tCPRDIvWRFeqaJt6Q,3242
|
|
350
350
|
gbdtransformation/brands/sdtm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
351
351
|
gbdtransformation/brands/sdtm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
352
|
-
gbdtransformation/brands/sdtm/tests/test.xml
|
|
352
|
+
gbdtransformation/brands/sdtm/tests/test.xml,sha256=H5uPHRXq1IQc8WCKIISaTK8etM65rNcAmqWVl8c2QtM,3912
|
|
353
353
|
gbdtransformation/brands/sgtm/__init__.py,sha256=WH-be3N3qbu8Qd7bd_Nz12qxU2UzaNGfR8hgu584_XY,377
|
|
354
354
|
gbdtransformation/brands/sgtm/filters.py,sha256=A33B4MgHARwiRZOoAYp5jph9Ou9tbVLZi6LVh40mrJE,6561
|
|
355
355
|
gbdtransformation/brands/sgtm/schema,sha256=ALI9vWmb7uoMBS0JABxaKzoX3xmiXpC_T_abgs5W09k,4140
|
|
@@ -362,7 +362,7 @@ gbdtransformation/brands/smtm/filters.py,sha256=9JkafJ4XuA9SdQ6OqidukGKf7xK1QtPi
|
|
|
362
362
|
gbdtransformation/brands/smtm/schema,sha256=TFrF4FR76cytcbtQkDWxtF74I0tCPRDIvWRFeqaJt6Q,3242
|
|
363
363
|
gbdtransformation/brands/smtm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
364
364
|
gbdtransformation/brands/smtm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
365
|
-
gbdtransformation/brands/smtm/tests/test.xml
|
|
365
|
+
gbdtransformation/brands/smtm/tests/test.xml,sha256=sfmWtn4GdGNAqGn2li854Y4zoCWooVlF4AMpCa0TRho,6661
|
|
366
366
|
gbdtransformation/brands/solrjtm/__init__.py,sha256=LPq1qlU4nPGFyKPsgKWZG9K2mV4vWR1OAZ1OGWH-NjU,16
|
|
367
367
|
gbdtransformation/brands/solrjtm/filters.py,sha256=QguJiezjPY7qPgC6F_YS0Yvr-ZT_d6FjYFrMrB_COOM,2499
|
|
368
368
|
gbdtransformation/brands/solrjtm/template.yml,sha256=BsQ6kF6zL75-jiQf_oyd9-tK_nIFjALRvNBZjZQqYxg,5659
|
|
@@ -384,7 +384,7 @@ gbdtransformation/brands/thtm/filters.py,sha256=ekp-htfHKNRN-POeiv7pk5JmTRceOUk0
|
|
|
384
384
|
gbdtransformation/brands/thtm/schema,sha256=TFrF4FR76cytcbtQkDWxtF74I0tCPRDIvWRFeqaJt6Q,3242
|
|
385
385
|
gbdtransformation/brands/thtm/template.yml,sha256=a2bXIxDSllmhIBEibMw6aLjKhOX2-HRRVeqw669r-6c,7269
|
|
386
386
|
gbdtransformation/brands/thtm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
387
|
-
gbdtransformation/brands/thtm/tests/test.xml
|
|
387
|
+
gbdtransformation/brands/thtm/tests/test.xml,sha256=H5uPHRXq1IQc8WCKIISaTK8etM65rNcAmqWVl8c2QtM,3912
|
|
388
388
|
gbdtransformation/brands/tntm/__init__.py,sha256=Eavq2ionAAwwN-6nOyIebauQeae6eqku0y-RiBQyed4,362
|
|
389
389
|
gbdtransformation/brands/tntm/filters.py,sha256=gA2vLSo3phcMz8OjV1Hw-0uLu7UtHFhS2F6LbnToZ_A,3029
|
|
390
390
|
gbdtransformation/brands/tntm/schema,sha256=AP0MxQyD0hY4APRh8nxitlxMqJYJB4AaaTJ8y20-XBA,3283
|
|
@@ -397,7 +397,7 @@ gbdtransformation/brands/totm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62Y
|
|
|
397
397
|
gbdtransformation/brands/totm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
398
398
|
gbdtransformation/brands/totm/tests/nofeature.xml,sha256=5UEVp1GiR1YaOV2xSBkJoQXEHB6ZgyeixGwOmQ65kRY,5224
|
|
399
399
|
gbdtransformation/brands/totm/tests/syntax.xml,sha256=GdS-t8aRxUAgBARLNyrnKFdCe9SaG-k2H2SiZSn61GU,17369
|
|
400
|
-
gbdtransformation/brands/totm/tests/test.xml
|
|
400
|
+
gbdtransformation/brands/totm/tests/test.xml,sha256=H5uPHRXq1IQc8WCKIISaTK8etM65rNcAmqWVl8c2QtM,3912
|
|
401
401
|
gbdtransformation/brands/tttm/__init__.py,sha256=3-V9gaMDhZfDdvqWDt9vk-40QW11CS_EpkqZoqyDdlQ,371
|
|
402
402
|
gbdtransformation/brands/tttm/filters.py,sha256=EqevyyqzjNkEesSJ-pcE7iMW2vqLzvtv_mZmNtbFIDk,2360
|
|
403
403
|
gbdtransformation/brands/tttm/schema,sha256=AP0MxQyD0hY4APRh8nxitlxMqJYJB4AaaTJ8y20-XBA,3283
|
|
@@ -453,7 +453,7 @@ gbdtransformation/brands/wstm/filters.py,sha256=1mN6xmZylboBUQhVKH5ycMvLtd9gh48f
|
|
|
453
453
|
gbdtransformation/brands/wstm/schema,sha256=TFrF4FR76cytcbtQkDWxtF74I0tCPRDIvWRFeqaJt6Q,3242
|
|
454
454
|
gbdtransformation/brands/wstm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
455
455
|
gbdtransformation/brands/wstm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
456
|
-
gbdtransformation/brands/wstm/tests/test.xml
|
|
456
|
+
gbdtransformation/brands/wstm/tests/test.xml,sha256=YH6ym16Jot43w37Q4zRMktjXhrpd32PKEJujs3ulK4U,6541
|
|
457
457
|
gbdtransformation/brands/xxxx/__init__.py,sha256=fricc3VHm4BwGRFKIIqB0t-NtP3tTVRrEYee_gWpiFo,172
|
|
458
458
|
gbdtransformation/brands/xxxx/filters.py,sha256=YCaQ6yH2LINwCQvbPHDhnORQyWglbswLlSOY6ur3KXQ,1874
|
|
459
459
|
gbdtransformation/brands/xxxx/schema,sha256=g_oWkd7k2e5fAQR1BdNkPSsIgP3dkTyc7esWo_UOHQA,163
|
|
@@ -585,9 +585,9 @@ gbdtransformation/utilities/st66.xsd,sha256=co8aFN3a5TpudllRttWmfLeiZu8ulNipfeXm
|
|
|
585
585
|
schemas/ShazamConfig.py,sha256=D67os5B11C41h_WZ7kk54Ss0Kk7tHh8W0d_1c_aX-lY,1191
|
|
586
586
|
schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
587
587
|
schemas/schema_extractor.py,sha256=3-ImtnI777f6b3VA0A_w-NoXdlGz5VZMzK6MnPdQQAY,10294
|
|
588
|
-
wipo_gbd_transformation-1.1.
|
|
589
|
-
wipo_gbd_transformation-1.1.
|
|
590
|
-
wipo_gbd_transformation-1.1.
|
|
591
|
-
wipo_gbd_transformation-1.1.
|
|
592
|
-
wipo_gbd_transformation-1.1.
|
|
593
|
-
wipo_gbd_transformation-1.1.
|
|
588
|
+
wipo_gbd_transformation-1.1.82.dist-info/LICENSE.md,sha256=6r2dL13EwZqSt2ellLbJRFTA-6ECIDOer4YthCfkac0,35654
|
|
589
|
+
wipo_gbd_transformation-1.1.82.dist-info/METADATA,sha256=5G1462Li5V2PhyuAKQfj83fZTzJrHSDvtJgxXOLeIFk,577
|
|
590
|
+
wipo_gbd_transformation-1.1.82.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
591
|
+
wipo_gbd_transformation-1.1.82.dist-info/entry_points.txt,sha256=NFLtlP3mPHUi-hEoUcz4CXa7vcpP8bbwd18HS4arbEk,223
|
|
592
|
+
wipo_gbd_transformation-1.1.82.dist-info/top_level.txt,sha256=oU1j-JNLga18Fd-EV6Xl9wM8zxYoNVEzb7P8MDhTPJg,26
|
|
593
|
+
wipo_gbd_transformation-1.1.82.dist-info/RECORD,,
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
{wipo_gbd_transformation-1.1.81.dist-info → wipo_gbd_transformation-1.1.82.dist-info}/LICENSE.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{wipo_gbd_transformation-1.1.81.dist-info → wipo_gbd_transformation-1.1.82.dist-info}/top_level.txt
RENAMED
|
File without changes
|